/* ════════════════════════════════════════
   LIITO MEDIA — HOME PAGE STYLES
   Sections spécifiques à la page d'accueil
   ════════════════════════════════════════ */

/* ═══ HERO ═══ */
.hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at 40% 40%, rgba(47,152,228,0.06) 0%, rgba(47,152,228,0.03) 40%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  from { transform: translate(0,0) rotate(0deg) scale(1); }
  to { transform: translate(-40px, 30px) rotate(10deg) scale(1.08); }
}
.hero .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 7px;
  background: var(--birch-white);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  color: var(--ink-40);
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}
.hero-tag .dot {
  width: 7px; height: 7px;
  background: var(--ember);
  border-radius: 50%;
  position: relative;
}
.hero-tag .dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--ember);
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.4); }
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 .hl {
  color: var(--cedar);
  position: relative;
}
.hero h1 .hl::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: var(--ember);
  opacity: 0.25;
  border-radius: 4px;
  z-index: -1;
}
.hero-desc {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual cards */
.hero-visual { position: relative; height: 480px; }
.hv-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(26,26,24,0.08);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.hv-card-1 { width: 280px; top: 0; right: 0; z-index: 3; }
.hv-card-2 { width: 240px; top: 80px; right: 200px; z-index: 2; transform: rotate(-3deg); }
.hv-card-3 { width: 200px; bottom: 20px; right: 40px; z-index: 1; transform: rotate(2deg); }
.hv-card:hover { transform: translateY(-6px) rotate(0deg) !important; z-index: 10; }
.hv-top { padding: 16px 18px 14px; border-bottom: 1px solid var(--ink-08); }
.hv-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.hv-label.lbl-blue { color: var(--blue); }
.hv-label.lbl-ember { color: var(--ember); }
.hv-label.lbl-cedar { color: var(--cedar); }
.hv-title { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
.hv-body { padding: 14px 18px 18px; }
.hv-bar-row { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-bottom: 10px; }
.hv-bar { flex: 1; border-radius: 4px 4px 0 0; }
.hv-metric { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-40); }
.hv-metric strong { color: var(--ink); font-weight: 700; }
.hv-lines { display: flex; flex-direction: column; gap: 6px; }
.hv-line { height: 7px; border-radius: 4px; background: var(--birch-dark); }
.hv-line.w7 { width: 72%; } .hv-line.w9 { width: 90%; } .hv-line.w5 { width: 55%; }
.hv-line.w4 { width: 40%; background: var(--blue); opacity: 0.20; border-radius: 100px; }
.hv-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hv-mini-card { height: 36px; border-radius: 8px; background: var(--birch-light); border: 1px solid var(--ink-08); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .hero { padding: 80px 0 60px; }
}

/* ═══ MARQUEE ═══ */
.marquee-wrap {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
  background: var(--birch);
}
.marquee-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  flex-shrink: 0;
  padding: 0 40px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: var(--ink-20);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee-item .sep {
  width: 5px; height: 5px;
  background: var(--ember);
  border-radius: 50%;
  opacity: 0.5;
}

/* ═══ SERVICES TABS ═══ */
.services { padding: 100px 0; }
.tabs-bar {
  display: flex; gap: 3px;
  padding: 4px;
  background: var(--birch);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto 36px;
}
.t-btn {
  padding: 10px 22px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-40);
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
}
.t-btn:hover { color: var(--ink-70); }
.t-btn.active {
  color: var(--birch);
  background: var(--cedar);
  box-shadow: 0 2px 10px rgba(27,58,92,0.2);
}
.t-panels { position: relative; }
.t-panel { display: none; animation: panelSlide 0.45s var(--ease); }
.t-panel.active { display: grid; }
@keyframes panelSlide {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-card {
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02), 0 16px 50px rgba(26,26,24,0.06);
}
.sc-text {
  padding: 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.sc-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--cedar); margin-bottom: 14px;
}
.sc-text h3 {
  font-size: 32px; font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px;
}
.sc-text .sc-desc {
  color: var(--ink-70); font-size: 15px;
  line-height: 1.65; margin-bottom: 26px;
}
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.feat-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-70); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); flex-shrink: 0; }
.sc-visual {
  background: var(--birch);
  display: flex; align-items: center; justify-content: center;
  padding: 48px; position: relative; min-height: 440px; overflow: hidden;
}
.sc-visual::before {
  content: ''; position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,152,228,0.06) 0%, transparent 70%);
  filter: blur(40px); top: 10%; right: -5%;
}

/* Browser mockup */
.mock {
  width: 100%; max-width: 360px;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 20px 70px rgba(26,26,24,0.10), 0 0 0 1px var(--ink-08);
  overflow: hidden; position: relative; z-index: 1;
}
.mock-chrome {
  height: 32px; background: var(--birch-light);
  border-bottom: 1px solid var(--ink-08);
  display: flex; align-items: center; padding: 0 12px; gap: 5px;
}
.mc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-08); }
.mc-url { flex: 1; height: 16px; background: var(--white); border-radius: 4px; margin-left: 6px; }
.mock-body { padding: 18px; }
.m-title { height: 12px; width: 50%; background: var(--ink); opacity: 0.08; border-radius: 3px; margin-bottom: 7px; }
.m-sub { height: 7px; width: 70%; background: var(--ink); opacity: 0.04; border-radius: 3px; margin-bottom: 5px; }
.m-sub2 { height: 7px; width: 42%; background: var(--ink); opacity: 0.04; border-radius: 3px; margin-bottom: 14px; }
.m-cta { height: 9px; width: 22%; background: var(--cedar); opacity: 0.35; border-radius: 100px; margin-bottom: 18px; }
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.m-block { height: 52px; border-radius: 10px; background: var(--birch-light); border: 1px solid var(--ink-08); }
.m-bars { display: flex; align-items: flex-end; gap: 5px; height: 80px; margin-bottom: 12px; }
.m-bar { flex: 1; border-radius: 4px 4px 0 0; }
.m-bar:nth-child(1) { height: 22%; background: var(--birch-dark); }
.m-bar:nth-child(2) { height: 35%; background: var(--birch-dark); }
.m-bar:nth-child(3) { height: 30%; background: var(--ink-08); }
.m-bar:nth-child(4) { height: 50%; background: var(--ink-08); }
.m-bar:nth-child(5) { height: 58%; background: var(--bark-soft); }
.m-bar:nth-child(6) { height: 75%; background: rgba(27,58,92,0.20); }
.m-bar:nth-child(7) { height: 95%; background: var(--cedar); }
.m-stats { display: flex; gap: 6px; }
.m-stat { flex: 1; background: var(--birch-light); border-radius: 10px; padding: 8px; text-align: center; border: 1px solid var(--ink-08); }
.m-stat-v { font-size: 15px; font-weight: 800; color: var(--cedar); letter-spacing: -0.02em; }
.m-stat-l { font-size: 9px; color: var(--ink-40); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.m-cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.m-citem { background: var(--birch-light); border-radius: 10px; padding: 12px 10px; border: 1px solid var(--ink-08); }
.m-cicon { width: 22px; height: 22px; border-radius: 6px; margin-bottom: 7px; }
.m-cicon.ci1 { background: var(--blue-soft); }
.m-cicon.ci2 { background: var(--ember-soft); }
.m-cicon.ci3 { background: var(--bark-soft); }
.m-cicon.ci4 { background: rgba(27,58,92,0.06); }
.m-cln { height: 5px; border-radius: 3px; background: var(--ink-08); margin-bottom: 3px; }
.m-cln.w7 { width: 72%; } .m-cln.w5 { width: 50%; } .m-cln.w8 { width: 85%; } .m-cln.w4 { width: 40%; }
.m-vid {
  background: var(--ink); border-radius: 10px; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.m-play {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.10);
}
.m-play svg { width: 14px; height: 14px; color: #fff; margin-left: 2px; }
.m-tl { display: flex; gap: 3px; }
.m-tb { height: 20px; flex: 1; border-radius: 5px; background: var(--birch-light); border: 1px solid var(--ink-08); }
.m-tb.lit { background: rgba(47,152,228,0.08); border-color: rgba(47,152,228,0.12); }

@media (max-width: 900px) {
  .service-card { grid-template-columns: 1fr !important; }
  .sc-text { padding: 32px 24px; }
  .sc-visual { min-height: 260px; padding: 24px; }
  .tabs-bar { flex-wrap: wrap; width: 100%; border-radius: var(--radius); }
  .t-btn { flex: 1; text-align: center; padding: 9px 12px; font-size: 13px; }
}

/* ═══ APPROACH ═══ */
.approach {
  padding: 100px 0;
  background: var(--cedar);
  color: var(--birch);
  position: relative; overflow: hidden;
}
.approach::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(47,152,228,0.08) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.approach .sec-eyebrow { color: var(--ember); }
.approach .sec-desc { color: rgba(242,235,221,0.60); }
.approach-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.steps-col { display: flex; flex-direction: column; }
.step-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242,235,221,0.08);
  transition: all 0.3s ease;
}
.step-row:last-child { border-bottom: none; }
.step-row:hover { padding-left: 8px; }
.step-n {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 10px;
  background: rgba(242,235,221,0.08);
  color: var(--birch);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  border: 1px solid rgba(242,235,221,0.10);
}
.step-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.step-text p { font-size: 14px; color: rgba(242,235,221,0.50); line-height: 1.5; }

@media (max-width: 900px) {
  .approach-layout { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══ WHY (Bento) ═══ */
.why { padding: 100px 0; }
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.b-card {
  background: var(--white); border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg); padding: 34px 28px;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.b-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(26,26,24,0.08); }
.b-card.c7 { grid-column: span 7; }
.b-card.c5 { grid-column: span 5; }
.b-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.b-icon svg { width: 20px; height: 20px; }
.b-icon.ic-cedar { background: rgba(27,58,92,0.07); color: var(--cedar); }
.b-icon.ic-ember { background: var(--ember-soft); color: var(--ember); }
.b-icon.ic-blue { background: var(--blue-soft); color: var(--blue); }
.b-icon.ic-bark { background: var(--bark-soft); color: var(--bark); }
.b-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.b-card p { font-size: 14px; color: var(--ink-70); line-height: 1.6; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .b-card.c7, .b-card.c5 { grid-column: span 1; }
}

/* ═══ UNIVERS LIITO ═══ */
.univers { padding: 100px 0; background: var(--birch); }
.uv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.uv-card {
  background: var(--white); border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center; transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.uv-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(26,26,24,0.08); }
.uv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.uv-card:nth-child(1)::before { background: var(--blue); }
.uv-card:nth-child(2)::before { background: var(--bark); }
.uv-card:nth-child(3)::before { background: var(--cedar); }
.uv-card:nth-child(4)::before { background: var(--ember); }
.uv-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.uv-icon svg { width: 20px; height: 20px; }
.uv-icon.ui1 { background: var(--blue-soft); color: var(--blue); }
.uv-icon.ui2 { background: var(--bark-soft); color: var(--bark); }
.uv-icon.ui3 { background: rgba(27,58,92,0.06); color: var(--cedar); }
.uv-icon.ui4 { background: var(--ember-soft); color: var(--ember); }
.uv-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.uv-card p { font-size: 13px; color: var(--ink-40); line-height: 1.5; margin-bottom: 14px; }
.uv-link { font-size: 13px; font-weight: 600; color: var(--cedar); display: inline-flex; align-items: center; gap: 4px; }
.uv-link .arr { transition: transform 0.25s var(--ease); }
.uv-card:hover .uv-link .arr { transform: translateX(3px); }

@media (max-width: 860px) { .uv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .uv-grid { grid-template-columns: 1fr; } }

/* ═══ FAQ ═══ */
.faq { padding: 100px 0; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ink-08); }
.faq-item:first-child { border-top: 1px solid var(--ink-08); }
.faq-item summary {
  padding: 22px 0; font-weight: 600; font-size: 16px;
  cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  list-style: none; user-select: none;
  color: var(--ink); transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cedar); }
.faq-item summary .ico {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%; border: 1.5px solid var(--ink-08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.faq-item summary .ico svg { width: 14px; height: 14px; color: var(--ink-40); transition: all 0.3s var(--ease); }
.faq-item[open] summary .ico { background: var(--cedar); border-color: var(--cedar); }
.faq-item[open] summary .ico svg { color: var(--birch); transform: rotate(45deg); }
.faq-answer { padding: 0 0 22px; color: var(--ink-70); font-size: 15px; line-height: 1.65; max-width: 560px; }

/* ═══ CTA ═══ */
.cta-sec { padding: 0 0 100px; }
.cta-box {
  background: var(--cedar); border-radius: var(--radius-lg);
  padding: 76px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box .orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-box .o1 { width: 400px; height: 400px; background: rgba(47,152,228,0.12); top: -30%; right: -8%; animation: orbDrift 16s ease-in-out infinite alternate; }
.cta-box .o2 { width: 300px; height: 300px; background: rgba(47,152,228,0.08); bottom: -25%; left: -5%; animation: orbDrift 16s ease-in-out infinite alternate-reverse; }
@keyframes orbDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(25px,-15px) scale(1.08); } }
.cta-box h2 { color: var(--birch); font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box .cta-p { color: rgba(242,235,221,0.50); font-size: 16px; max-width: 440px; margin: 0 auto 36px; position: relative; z-index: 1; line-height: 1.6; }
.cta-box .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-box .btn-birch {
  padding: 14px 30px; background: var(--birch); color: var(--cedar);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 15px;
  transition: all 0.25s var(--ease); display: inline-flex; align-items: center;
}
.cta-box .btn-birch:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(242,235,221,0.15); }
.cta-box .btn-glass {
  padding: 14px 28px; background: rgba(242,235,221,0.06);
  color: rgba(242,235,221,0.75); border: 1px solid rgba(242,235,221,0.12);
  border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  backdrop-filter: blur(8px); transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-box .btn-glass:hover { background: rgba(242,235,221,0.12); border-color: rgba(242,235,221,0.25); color: var(--birch); }

@media (max-width: 580px) { .cta-box { padding: 48px 24px; } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-blob { animation: none; }
  .cta-box .orb { animation: none; }
}
