/* ==========================================================================
   PasEnAvant Digital — Components & Sections
   components.css · header, footer, hero, services, timeline, stats, etc.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   HEADER / NAV
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--c-line-soft);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), height var(--t) var(--ease), border-color var(--t) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9); backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: transparent;
  box-shadow: 0 1px 0 var(--c-line), 0 10px 30px -22px rgba(11,20,55,.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 2rem; }
.nav__logo img { height: 34px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative; font-weight: 600; font-size: .95rem; color: var(--c-ink);
  padding: .55rem .85rem; border-radius: var(--r-pill); font-family: var(--font-display);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px;
  background: var(--grad-brand); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav__link:hover { color: var(--c-electric); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast); }
.nav.is-open .nav__toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px){
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(250,250,250,.96); backdrop-filter: blur(20px);
    padding: 1.25rem var(--gutter) 2rem; gap: .25rem; border-bottom: 1px solid var(--c-line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all var(--t) var(--ease);
    box-shadow: var(--sh-md);
  }
  .nav.is-open .nav__menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav__actions .btn--ghost { display: none; }
}

/* ----------------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: clamp(3rem, 6vw, 6rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__grid-lines { position: absolute; inset: 0; background-image: linear-gradient(var(--c-line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--c-line-soft) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(120% 80% at 70% 10%, #000 30%, transparent 75%); opacity: .6; }
.hero .orb--1 { width: 540px; height: 540px; top: -160px; right: -120px; }
.hero .orb--2 { width: 460px; height: 460px; bottom: -220px; left: -160px; }
.hero .orb--3 { width: 280px; height: 280px; top: 38%; right: 30%; }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 940px){ .hero__inner { grid-template-columns: 1fr; } }

.hero__title { font-size: var(--fs-hero); letter-spacing: -.03em; margin-top: 1.4rem; }
.hero__sub { margin-top: 1.6rem; max-width: 36ch; font-size: var(--fs-lead); color: var(--c-muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero__trust { margin-top: 2.6rem; }
.hero__trust span { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); font-family: var(--font-display); }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; margin-top: 1rem; opacity: .75; }
.logo-chip { font-family: var(--font-display); font-weight: 600; color: var(--c-ink-soft); font-size: 1.05rem; letter-spacing: -.01em; }

/* Hero visual */
.hero__visual { position: relative; aspect-ratio: 1/1.02; }
.hero__panel {
  position: absolute; inset: 6% 4% 6% 6%; border-radius: var(--r-xl);
  background: var(--grad-night); overflow: hidden; box-shadow: var(--sh-lg);
}
.hero__panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 20% 0%, rgba(56,225,255,.35), transparent 50%), radial-gradient(100% 80% at 100% 100%, rgba(122,60,240,.5), transparent 55%); }
.hero__panel-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 38px 38px; }
.hero__mark { position: absolute; width: 56%; left: 50%; top: 48%; transform: translate(-50%,-50%); filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }

/* floating stat chips */
.float-chip {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8); border-radius: var(--r-md);
  padding: .7rem .95rem; box-shadow: var(--sh-md);
}
.float-chip__num { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--c-night); line-height: 1; }
.float-chip__lbl { font-size: .72rem; color: var(--c-muted); line-height: 1.2; }
.float-chip__dot { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; flex: none; }
.float-chip--a { top: 8%; left: -4%; animation: floaty 6s ease-in-out infinite; }
.float-chip--b { bottom: 14%; right: -6%; animation: floaty 7s ease-in-out infinite .5s; }
.float-chip--c { bottom: -3%; left: 14%; animation: floaty 8s ease-in-out infinite 1s; }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

.scroll-ind { position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--c-muted); }
.scroll-ind__mouse { width: 24px; height: 38px; border: 2px solid var(--c-line); border-radius: 14px; position: relative; }
.scroll-ind__mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; background: var(--grad-brand); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0%{ opacity: 0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{ opacity: 0; transform: translate(-50%,12px);} }
.scroll-ind span { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; }

/* ----------------------------------------------------------------------------
   MARQUEE (clients)
   ------------------------------------------------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: scroll-x 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee__item { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--c-muted); white-space: nowrap; letter-spacing: -.01em; transition: color var(--t) var(--ease); display: flex; align-items: center; gap: .6rem; }
.marquee__item:hover { color: var(--c-electric); }
.marquee__item svg { width: 22px; height: 22px; opacity: .6; }

/* ----------------------------------------------------------------------------
   STORYTELLING
   ------------------------------------------------------------------------- */
.story { position: relative; }
.story__quote { font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2.4vw, 2.6rem); line-height: 1.25; color: var(--c-ink); letter-spacing: -.02em; max-width: 22ch; }
.story__steps { display: grid; gap: 1.1rem; }
.story__step { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.3rem; border-radius: var(--r-md); background: var(--c-surface); border: 1px solid var(--c-line); box-shadow: var(--sh-xs); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.story__step:hover { transform: translateX(6px); box-shadow: var(--sh-sm); }
.story__step-num { font-family: var(--font-display); font-weight: 700; color: var(--c-electric); font-size: 1rem; flex: none; width: 30px; }

/* ----------------------------------------------------------------------------
   WHY US / FEATURE CARDS
   ------------------------------------------------------------------------- */
.feature-card { display: flex; flex-direction: column; gap: 1.1rem; }
.feature-card h3 { margin-top: .3rem; }
.feature-card p { font-size: var(--fs-sm); }

/* ----------------------------------------------------------------------------
   SERVICES
   ------------------------------------------------------------------------- */
.service-card { display: flex; flex-direction: column; min-height: 100%; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; }
.service-card__no { font-family: var(--font-display); font-size: .85rem; color: var(--c-muted); font-weight: 600; }
.service-card h3 { margin-top: 1.3rem; }
.service-card p { margin-top: .7rem; font-size: var(--fs-sm); }
.service-card__list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.tag { font-size: var(--fs-xs); padding: .35rem .75rem; border-radius: var(--r-pill); background: var(--c-bg-soft); color: var(--c-ink-soft); font-weight: 600; border: 1px solid var(--c-line-soft); }
.service-card__foot { margin-top: auto; padding-top: 1.5rem; }
.service-card--wide { grid-column: span 1; background: var(--grad-night); color: #fff; border: none; }
.service-card--wide h3, .service-card--wide .service-card__no { color: #fff; }
.service-card--wide p { color: rgba(255,255,255,.8); }
.service-card--wide .tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.14); }
.service-card--wide .icon-badge--soft, .service-card--wide .icon-badge { background: rgba(255,255,255,.12); color: #fff; border: none; box-shadow: none; }

/* ----------------------------------------------------------------------------
   METHOD TIMELINE
   ------------------------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--c-electric), var(--c-violet), transparent); }
@media (max-width: 680px){ .timeline::before { left: 19px; } }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem; padding-block: clamp(1.2rem, 2vw, 1.8rem); align-items: start; }
.tl-step__dot { width: 56px; height: 56px; border-radius: 50%; background: var(--c-surface); border: 1px solid var(--c-line); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--c-electric); position: relative; z-index: 1; box-shadow: var(--sh-sm); }
@media (max-width: 680px){ .tl-step { grid-template-columns: 40px 1fr; gap: 1rem; } .tl-step__dot { width: 40px; height: 40px; font-size: .85rem; } }
.tl-step__body { padding-top: .4rem; }
.tl-step__head { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; }
.tl-step__metric { font-family: var(--font-display); font-weight: 600; color: var(--c-electric); font-size: .9rem; }
.tl-step p { margin-top: .5rem; font-size: var(--fs-sm); max-width: 60ch; }

/* ----------------------------------------------------------------------------
   STATS (night band)
   ------------------------------------------------------------------------- */
.stats { background: var(--grad-night); color: #fff; border-radius: var(--r-xl); padding: clamp(2.5rem, 5vw, 4.5rem); position: relative; overflow: hidden; }
.stats .orb--1 { width: 420px; height: 420px; top: -180px; right: -120px; opacity: .4; }
.stats .orb--2 { width: 360px; height: 360px; bottom: -200px; left: -100px; opacity: .35; }
.stats__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 780px){ .stats__grid { grid-template-columns: repeat(2,1fr); gap: 2.5rem 1rem; } }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 1.5rem + 3vw, 3.8rem); line-height: 1; background: linear-gradient(120deg, #fff, var(--c-cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__lbl { margin-top: .7rem; color: rgba(255,255,255,.72); font-size: var(--fs-sm); }

/* ----------------------------------------------------------------------------
   PORTFOLIO / CASE STUDIES
   ------------------------------------------------------------------------- */
.work { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,3vw,3rem); align-items: center; }
.work--alt { direction: rtl; }
.work--alt > * { direction: ltr; }
@media (max-width: 880px){ .work, .work--alt { grid-template-columns: 1fr; direction: ltr; } }
.work__media { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--grad-night); aspect-ratio: 4/3; box-shadow: var(--sh-md); }
.work__media img { width: 100%; height: 100%; object-fit: cover; }
.work__media-ph { position: absolute; inset: 0; display: grid; place-items: center; }
.work__cat { display: inline-flex; gap: .5rem; flex-wrap: wrap; }
.work h3 { margin-top: 1rem; font-size: clamp(1.5rem,1.1rem+1.6vw,2.1rem); }
.work__desc { margin-top: 1rem; }
.work__meta { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line); }
.work__meta b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--c-ink); }
.work__meta span { font-size: var(--fs-xs); color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }
.work__foot { margin-top: 1.8rem; }

/* ----------------------------------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------------------------------- */
.testi { position: relative; }
.testi__viewport { overflow: hidden; padding: .5rem 0; }
.testi__track { display: flex; align-items: stretch; transition: transform .7s var(--ease-out); }
.testi__slide { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 .75rem; display: flex; }
@media (max-width: 980px){ .testi__slide { flex-basis: 50%; max-width: 50%; } }
@media (max-width: 640px){ .testi__slide { flex-basis: 100%; max-width: 100%; padding: 0 .25rem; } }
.testi__card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(1.6rem,2.6vw,2.4rem); box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 1.4rem; width: 100%; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.testi__card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(44,75,255,.2); }
.testi__stars { display: flex; gap: .2rem; color: #FFB23E; font-size: 1.05rem; }
.testi__quote { font-family: var(--font-display); font-size: clamp(1.05rem,.95rem+.4vw,1.22rem); line-height: 1.5; color: var(--c-ink); letter-spacing: -.01em; font-weight: 500; flex: 1; }
.testi__author { display: flex; align-items: center; gap: 1rem; margin-top: auto; padding-top: .4rem; }
.testi__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; flex: none; }
.testi__author b { font-family: var(--font-display); color: var(--c-ink); display: block; }
.testi__author span { font-size: var(--fs-sm); color: var(--c-muted); }
.testi__controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.2rem; }
.testi__arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--c-line); background: var(--c-surface); display: grid; place-items: center; color: var(--c-ink); box-shadow: var(--sh-xs); transition: all var(--t) var(--ease); flex: none; }
.testi__arrow:hover { color: #fff; background: var(--grad-brand); border-color: transparent; box-shadow: var(--sh-glow); transform: translateY(-2px); }
.testi__arrow:disabled { opacity: .35; cursor: not-allowed; transform: none; background: var(--c-surface); color: var(--c-ink); box-shadow: none; }
.testi__arrow svg { width: 20px; height: 20px; }
.testi__nav { display: flex; gap: .6rem; justify-content: center; align-items: center; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-line); transition: all var(--t) var(--ease); }
.testi__dot.is-active { width: 30px; border-radius: 5px; background: var(--grad-brand); }

/* ----------------------------------------------------------------------------
   FAQ (accordion)
   ------------------------------------------------------------------------- */
.faq { display: grid; gap: .9rem; }
.faq__item { border: 1px solid var(--c-line); border-radius: var(--r-md); background: var(--c-surface); overflow: hidden; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.faq__item.is-open { border-color: rgba(44,75,255,.3); box-shadow: var(--sh-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--c-ink); }
.faq__icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--c-line); display: grid; place-items: center; flex: none; position: relative; transition: background var(--t) var(--ease), border-color var(--t) var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--c-electric); border-radius: 2px; transition: transform var(--t) var(--ease), background var(--t) var(--ease); }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--grad-brand); border-color: transparent; }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq__a-inner { padding: 0 1.5rem 1.4rem; font-size: var(--fs-sm); color: var(--c-ink-soft); max-width: 70ch; }

/* ----------------------------------------------------------------------------
   CONTACT / CTA
   ------------------------------------------------------------------------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--grad-night); color: #fff; padding: clamp(2.6rem,5vw,5rem); text-align: center; }
.cta-band .orb--1 { width: 480px; height: 480px; top: -200px; left: -120px; opacity: .45; }
.cta-band .orb--2 { width: 420px; height: 420px; bottom: -220px; right: -120px; opacity: .4; }
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 1rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,3rem); }
@media (max-width: 880px){ .contact { grid-template-columns: 1fr; } }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 540px){ .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--c-ink); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--c-line);
  background: var(--c-surface); font-family: inherit; font-size: var(--fs-sm); color: var(--c-ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-electric); box-shadow: 0 0 0 4px rgba(44,75,255,.12); }
.contact__info { display: grid; gap: 1.3rem; align-content: start; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row b { font-family: var(--font-display); color: var(--c-ink); display: block; }
.info-row span, .info-row a { font-size: var(--fs-sm); color: var(--c-muted); }
.info-row a:hover { color: var(--c-electric); }
.map-embed { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-line); aspect-ratio: 16/9; box-shadow: var(--sh-xs); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ----------------------------------------------------------------------------
   BLOG CARDS
   ------------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.post-card__media { aspect-ratio: 16/10; background: var(--grad-night); position: relative; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.post-card__meta { display: flex; gap: .8rem; align-items: center; font-size: var(--fs-xs); color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; }
.post-card__cat { color: var(--c-electric); font-weight: 700; }
.post-card h3 { font-size: 1.2rem; }
.post-card p { font-size: var(--fs-sm); }
.post-card__foot { margin-top: auto; padding-top: 1rem; }

/* ----------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */
.site-footer { background: var(--c-night-900); color: rgba(255,255,255,.7); padding-top: clamp(3.5rem,6vw,6rem); position: relative; overflow: hidden; }
.site-footer .orb--1 { width: 500px; height: 500px; top: -260px; right: -120px; opacity: .25; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; position: relative; z-index: 1; }
@media (max-width: 880px){ .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px){ .footer__top { grid-template-columns: 1fr; } }
.footer__brand img { height: 36px; margin-bottom: 1.2rem; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: var(--fs-sm); max-width: 32ch; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer__col a { display: block; padding: .35rem 0; font-size: var(--fs-sm); color: rgba(255,255,255,.65); transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease); }
.footer__col a:hover { color: #fff; transform: translateX(4px); }
.footer__news p { font-size: var(--fs-sm); color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.footer__news .news-form { display: flex; gap: .5rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-pill); padding: .35rem .35rem .35rem 1.1rem; }
.footer__news input { flex: 1; background: none; border: none; color: #fff; font-family: inherit; font-size: var(--fs-sm); }
.footer__news input::placeholder { color: rgba(255,255,255,.4); }
.footer__news input:focus { outline: none; }
.news-form button { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex: none; transition: transform var(--t-fast) var(--ease); }
.news-form button:hover { transform: scale(1.08); }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: all var(--t-fast) var(--ease); }
.socials a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: clamp(2.5rem,4vw,4rem); padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.footer__bottom p, .footer__bottom a { font-size: var(--fs-xs); color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ----------------------------------------------------------------------------
   FLOATING WHATSAPP + SCROLL PROGRESS + CURSOR
   ------------------------------------------------------------------------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-brand-soft); z-index: 200; transition: width .1s linear; }
.wa-float { position: fixed; right: clamp(1rem,3vw,1.8rem); bottom: clamp(1rem,3vw,1.8rem); z-index: 120; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 18px 40px -12px rgba(37,211,102,.6); transition: transform var(--t) var(--ease); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0%{ transform: scale(1); opacity: .7; } 100%{ transform: scale(1.5); opacity: 0; } }

.cursor-dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--c-electric); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; mix-blend-mode: multiply; }
.cursor-ring { position: fixed; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(44,75,255,.4); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .25s var(--ease), height .25s var(--ease), border-color .25s; }
.cursor-ring.is-hover { width: 60px; height: 60px; border-color: rgba(122,60,240,.6); background: rgba(44,75,255,.05); }
@media (hover: none), (max-width: 940px){ .cursor-dot, .cursor-ring { display: none; } }

/* cookie banner */
.cookie { position: fixed; left: clamp(1rem,3vw,1.8rem); bottom: clamp(1rem,3vw,1.8rem); z-index: 130; max-width: 380px; padding: 1.3rem 1.4rem; border-radius: var(--r-md); transform: translateY(140%); transition: transform var(--t-slow) var(--ease); }
.cookie.is-shown { transform: none; }
.cookie p { font-size: var(--fs-sm); color: var(--c-ink-soft); }
.cookie a { color: var(--c-electric); font-weight: 600; }
.cookie__actions { display: flex; gap: .6rem; margin-top: 1rem; }

/* breadcrumb */
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: var(--fs-xs); color: var(--c-muted); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--c-electric); }
.breadcrumb .sep { opacity: .5; }

@media (max-width: 940px){
  .hero__inner { gap: 2.5rem; }
  .hero__visual { max-width: 440px; width: 100%; margin-inline: auto; }
}
@media (max-width: 600px){
  :root { --header-h: 64px; --gutter: 1.15rem; }
  .nav__logo img { height: 30px; }
  .nav__actions { gap: .5rem; }
  .hero { padding-top: calc(var(--header-h) + 1.4rem); padding-bottom: 2.5rem; }
  .hero__sub { max-width: none; }
  .hero__cta { gap: .7rem; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { max-width: 360px; }
  .float-chip { padding: .5rem .7rem; gap: .5rem; }
  .float-chip__num { font-size: 1.05rem; }
  .float-chip__lbl { font-size: .66rem; }
  .float-chip__dot { width: 28px; height: 28px; }
  .float-chip--a { left: 0; top: 4%; }
  .float-chip--b { right: 0; }
  .float-chip--c { left: 8%; }
  .scroll-ind { display: none; }
  .logo-row { gap: 1rem; }
  .logo-chip { font-size: .95rem; }
  .marquee__item { font-size: 1.15rem; gap: .4rem; }
  .btn, .btn--lg { padding: .95rem 1.5rem; font-size: 1rem; }
  .btn--sm { padding: .6rem 1rem; font-size: .85rem; }
  .story__step { padding: 1rem 1.1rem; }
  .work__meta { gap: 1.1rem 1.5rem; margin-top: 1.2rem; padding-top: 1.2rem; }
  .work__meta b { font-size: 1.35rem; }
  .stats { padding: 2.2rem 1.3rem; border-radius: var(--r-lg); }
  .stat__lbl { font-size: .82rem; }
  .cta-band { padding: 2.4rem 1.3rem; border-radius: var(--r-lg); }
  .cta-band__actions { gap: .7rem; }
  .cta-band__actions .btn { width: 100%; }
  .testi__controls { gap: 1rem; margin-top: 1.8rem; }
  .testi__quote { font-size: 1.05rem; }
  .footer__news .news-form { padding-left: 1rem; }
}
@media (max-width: 380px){
  .nav__actions .btn[data-magnetic] { padding: .55rem .9rem; }
}

/* utilities */
.mt-1{margin-top:var(--sp-1)}.mt-2{margin-top:var(--sp-2)}.mt-3{margin-top:var(--sp-3)}.mt-4{margin-top:var(--sp-4)}.mt-5{margin-top:var(--sp-5)}.mt-6{margin-top:var(--sp-6)}
.center{text-align:center}.flex{display:flex}.items-center{align-items:center}.justify-between{justify-content:space-between}.gap-2{gap:var(--sp-2)}.gap-3{gap:var(--sp-3)}.wrap{flex-wrap:wrap}
.bg-soft{background:var(--c-bg-soft)}
.divider{height:1px;background:var(--c-line);border:none;margin:0}

/* ----------------------------------------------------------------------------
   HERO TITLE/SUB LINE CONTROL (title 2 lines, sub max 3 lines)
   ------------------------------------------------------------------------- */
@media (min-width: 1101px){
  .hero__inner { grid-template-columns: 1.45fr .55fr; gap: clamp(1.75rem, 2.4vw, 2.8rem); }
}
@media (max-width: 1100px){
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__title { font-size: clamp(1.7rem, 0.5rem + 1.9vw, 2.6rem); letter-spacing: -.025em; line-height: 1.12; text-wrap: balance; margin-top: 1.3rem; }
.hero__title .br-d { display: inline; }
.hero__sub { max-width: 72ch; font-size: clamp(1.02rem, .92rem + .32vw, 1.2rem); }
@media (max-width: 760px){
  .hero__title { font-size: clamp(1.85rem, 1.1rem + 3vw, 2.4rem); }
  .hero__title .br-d { display: none; }
  .hero__sub { max-width: none; }
}

/* ==========================================================================
   COLOR LAYER — adds warmth & brand color while keeping the premium feel
   ========================================================================== */

/* Global soft mesh background instead of flat off-white */
body {
  background:
    radial-gradient(115% 85% at 100% 0%, rgba(44,75,255,.07), transparent 48%),
    radial-gradient(100% 80% at 0% 8%, rgba(122,60,240,.06), transparent 45%),
    radial-gradient(120% 90% at 50% 100%, rgba(56,225,255,.05), transparent 55%),
    var(--c-bg);
  background-attachment: fixed;
}

/* Tinted "soft" sections now carry brand color */
.bg-soft {
  background: linear-gradient(165deg, #EDF0FF 0%, #F1ECFF 55%, #EAF6FF 100%);
  border-block: 1px solid rgba(122,60,240,.06);
}

/* Stronger, more visible hero ambience */
.hero .orb--1 { opacity: .8; }
.hero .orb--2 { opacity: .72; }
.hero .orb--3 { opacity: .62; }
.hero__grid-lines { opacity: .5; }

/* Ambient colored orbs behind the white sections */
#services, #realisations, .story { position: relative; }
#services > .container, #realisations > .container, .story > .container { position: relative; z-index: 1; }
#services::before, #services::after,
#realisations::before, #realisations::after,
.story::before {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px);
  pointer-events: none; z-index: 0;
}
#services::before { width: 460px; height: 460px; top: -120px; right: -140px; background: radial-gradient(circle, rgba(44,75,255,.14), transparent 70%); }
#services::after  { width: 420px; height: 420px; bottom: -160px; left: -150px; background: radial-gradient(circle, rgba(122,60,240,.12), transparent 70%); }
#realisations::before { width: 480px; height: 480px; top: 8%; left: -180px; background: radial-gradient(circle, rgba(56,225,255,.13), transparent 70%); }
#realisations::after  { width: 420px; height: 420px; bottom: 4%; right: -170px; background: radial-gradient(circle, rgba(122,60,240,.12), transparent 70%); }
.story::before { width: 420px; height: 420px; top: -140px; right: -150px; background: radial-gradient(circle, rgba(44,75,255,.10), transparent 70%); }

/* Keyword tags get a brand-blue tint */
.tag {
  background: rgba(44,75,255,.08);
  color: var(--c-electric);
  border-color: rgba(44,75,255,.16);
}

/* Soft icon badges rotate through the brand palette */
.icon-badge--soft { background: linear-gradient(140deg, rgba(44,75,255,.16), rgba(44,75,255,.05)); color: var(--c-electric); border: none; }
.service-card:nth-child(3n+2) .icon-badge--soft { background: linear-gradient(140deg, rgba(122,60,240,.18), rgba(122,60,240,.05)); color: var(--c-violet); }
.service-card:nth-child(3n) .icon-badge--soft { background: linear-gradient(140deg, rgba(56,225,255,.22), rgba(56,225,255,.06)); color: #0E9CC4; }

/* Feature & service cards: subtle tinted surface + animated gradient top accent */
.feature-card, .service-card { background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFF 100%); }
.feature-card::after, .service-card:not(.service-card--wide)::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand-soft); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease); z-index: 2;
}
.feature-card:hover::after, .service-card:not(.service-card--wide):hover::after { transform: scaleX(1); }

/* Why-us feature icons: rotate colors too for variety */
.feature-card:nth-child(2) .icon-badge { background: linear-gradient(140deg, #7A3CF0, #2C4BFF); }
.feature-card:nth-child(3) .icon-badge { background: linear-gradient(140deg, #2C4BFF, #38E1FF); }
.feature-card:nth-child(4) .icon-badge { background: linear-gradient(140deg, #7A3CF0, #38E1FF); }

/* Marquee logos pick up brand color on hover, with a touch of base tint */
.marquee__item { color: var(--c-muted); }

/* Eyebrow chip subtle pill background for more presence */
.section-head--center .eyebrow, .hero .eyebrow {
  background: rgba(44,75,255,.07); padding: .35rem .8rem; border-radius: var(--r-pill);
}

/* ==========================================================================
   FIX + HOVER EFFECTS (box 06 dark bg, storytelling & method hover)
   ========================================================================== */

/* Box 06 (Marketing) — reassert the dark surface so white text stays visible */
.service-card.service-card--wide { background: var(--grad-night); }
.service-card.service-card--wide::after { display: none; }

/* "Notre conviction" — subtle gradient tint on hover */
.story__step {
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.story__step:hover {
  background: linear-gradient(120deg, rgba(44,75,255,.08), rgba(122,60,240,.08));
  border-color: rgba(44,75,255,.22);
  box-shadow: var(--sh-sm);
  transform: translateX(6px);
}
.story__step:hover .story__step-num { color: var(--c-violet); }

/* "Notre méthode" — gradient highlight + lift on hover (no layout shift) */
.tl-step { position: relative; transition: transform var(--t) var(--ease); }
.tl-step::after {
  content: ""; position: absolute; inset: .35rem -1.1rem; border-radius: var(--r-md);
  background: linear-gradient(120deg, rgba(44,75,255,.08), rgba(122,60,240,.08));
  opacity: 0; transition: opacity var(--t) var(--ease); z-index: 0; pointer-events: none;
}
.tl-step:hover::after { opacity: 1; }
.tl-step > * { position: relative; z-index: 1; }
.tl-step:hover .tl-step__dot {
  border-color: rgba(44,75,255,.4); box-shadow: var(--sh-md); color: var(--c-violet);
  transform: scale(1.06);
}
.tl-step__dot { transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease); }
.tl-step:hover h3 { color: var(--c-electric); transition: color var(--t) var(--ease); }

/* ==========================================================================
   INTERIOR PAGES — page hero, breadcrumb, filters, values, contact extras
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; padding-top: calc(var(--header-h) + clamp(2.6rem, 6vw, 5rem)); padding-bottom: clamp(2.4rem, 5vw, 4rem); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg .hero__grid-lines { opacity: .45; }
.page-hero .orb--1 { width: 460px; height: 460px; top: -180px; right: -120px; opacity: .7; }
.page-hero .orb--2 { width: 380px; height: 380px; bottom: -200px; left: -140px; opacity: .6; }
.page-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero--center .page-hero__inner { margin-inline: auto; text-align: center; }
.page-hero--center .breadcrumb { justify-content: center; }
.page-hero h1 { font-size: clamp(2.1rem, 1.2rem + 3vw, 3.5rem); margin-top: 1rem; letter-spacing: -.025em; }
.page-hero .lead { margin-top: 1.2rem; }
.page-hero--center .lead { margin-inline: auto; max-width: 62ch; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.page-hero--center .page-hero__cta { justify-content: center; }

/* mini stat strip */
.stat-strip { display: flex; flex-wrap: wrap; gap: clamp(1.5rem,4vw,3.5rem); margin-top: 2.4rem; }
.page-hero--center .stat-strip { justify-content: center; }
.stat-strip__item b { font-family: var(--font-display); font-size: clamp(1.6rem,1.2rem+1.2vw,2.2rem); color: var(--c-ink); display: block; line-height: 1; }
.stat-strip__item span { font-size: var(--fs-xs); color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }

/* portfolio filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.filter-chip { font-family: var(--font-display); font-weight: 600; font-size: .9rem; padding: .6rem 1.2rem; border-radius: var(--r-pill); border: 1px solid var(--c-line); background: var(--c-surface); color: var(--c-ink-soft); transition: all var(--t-fast) var(--ease); }
.filter-chip:hover { border-color: rgba(44,75,255,.35); color: var(--c-electric); }
.filter-chip.is-active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-glow); }

/* portfolio grid card */
.work-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease); }
.work-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--grad-night); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.work-card__cat { font-size: var(--fs-xs); color: var(--c-electric); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.work-card h3 { font-size: 1.2rem; }
.work-card p { font-size: var(--fs-sm); }
.work-card__foot { margin-top: auto; padding-top: .8rem; }

/* value cards (about) */
.value-card { display: flex; gap: 1rem; align-items: flex-start; }
.value-card__no { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; flex: none; }
.value-card h3 { font-size: 1.15rem; }
.value-card p { font-size: var(--fs-sm); margin-top: .4rem; }

/* service detail block */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,3vw,3.5rem); align-items: center; }
.svc-detail--alt { direction: rtl; } .svc-detail--alt > * { direction: ltr; }
@media (max-width: 880px){ .svc-detail, .svc-detail--alt { grid-template-columns: 1fr; direction: ltr; } }
.svc-detail__visual { border-radius: var(--r-lg); background: var(--grad-night); aspect-ratio: 4/3; position: relative; overflow: hidden; box-shadow: var(--sh-md); display: grid; place-items: center; }
.svc-detail__visual .icon-badge { width: 92px; height: 92px; border-radius: var(--r-lg); }
.svc-detail__visual .icon-badge svg { width: 44px; height: 44px; }
.svc-detail__visual .orb { opacity: .6; }
.svc-list { display: grid; gap: .7rem; margin-top: 1.4rem; }
.svc-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-sm); }
.svc-list svg { width: 20px; height: 20px; color: var(--c-electric); flex: none; margin-top: 2px; }
.svc-block-label { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--c-violet); margin-top: 1.3rem; }

/* contact info card */
.contact-card { background: var(--grad-night); color: #fff; border-radius: var(--r-xl); padding: clamp(1.8rem,3vw,2.6rem); position: relative; overflow: hidden; }
.contact-card h3 { color: #fff; }
.contact-card .info-row b { color: #fff; }
.contact-card .info-row span, .contact-card .info-row a { color: rgba(255,255,255,.75); }
.contact-card .info-row a:hover { color: #fff; }
.contact-card .icon-badge--soft { background: rgba(255,255,255,.1); color: #fff; }
.form__status { font-size: var(--fs-sm); font-weight: 600; min-height: 1.2em; }

/* ==========================================================================
   LONG-FORM — article, legal prose, table of contents, guide cards
   ========================================================================== */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.4rem,1.1rem+1.1vw,1.9rem); margin-top: 2.4rem; }
.prose h3 { font-size: clamp(1.15rem,1rem+.6vw,1.4rem); margin-top: 1.8rem; }
.prose p, .prose li { color: var(--c-ink-soft); line-height: 1.75; }
.prose ul.bullets { display: grid; gap: .6rem; margin-left: 0; }
.prose ul.bullets li { position: relative; padding-left: 1.6rem; }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); }
.prose ol { counter-reset: n; display: grid; gap: .6rem; }
.prose ol li { position: relative; padding-left: 2.2rem; counter-increment: n; }
.prose ol li::before { content: counter(n); position: absolute; left: 0; top: -.1em; width: 26px; height: 26px; border-radius: 8px; background: rgba(44,75,255,.1); color: var(--c-electric); font-family: var(--font-display); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }
.prose a:not(.btn):not(.text-link) { color: var(--c-electric); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 3px solid; border-image: var(--grad-brand) 1; padding: .4rem 0 .4rem 1.4rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--c-ink); }
.prose strong { color: var(--c-ink); }
.prose hr { border: none; height: 1px; background: var(--c-line); margin: 2rem 0; }

.article-layout { display: grid; grid-template-columns: 1fr 260px; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
@media (max-width: 940px){ .article-layout { grid-template-columns: 1fr; } }
.toc { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.toc h4 { font-family: var(--font-display); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .9rem; }
.toc a { display: block; padding: .35rem 0 .35rem .9rem; font-size: var(--fs-sm); color: var(--c-ink-soft); border-left: 2px solid var(--c-line); transition: all var(--t-fast) var(--ease); }
.toc a:hover { color: var(--c-electric); border-color: var(--c-electric); }
@media (max-width: 940px){ .toc { position: static; padding: 1.2rem 1.4rem; background: var(--c-bg-soft); border-radius: var(--r-md); margin-bottom: 1.5rem; } }

.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; font-size: var(--fs-sm); color: var(--c-muted); }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-muted); }
.author { display: flex; align-items: center; gap: .7rem; }
.author__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.article-cover { aspect-ratio: 16/7; border-radius: var(--r-lg); overflow: hidden; background: var(--grad-night); position: relative; display: grid; place-items: center; box-shadow: var(--sh-md); }
.share { display: flex; gap: .5rem; }
.share a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--c-line); display: grid; place-items: center; color: var(--c-ink-soft); transition: all var(--t-fast) var(--ease); }
.share a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }
.share svg { width: 16px; height: 16px; }

.guide-card { display: flex; flex-direction: column; gap: .9rem; }
.guide-card__tag { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-violet); }
.guide-card h3 { font-size: 1.2rem; }
.guide-card p { font-size: var(--fs-sm); }
.guide-card__foot { margin-top: auto; padding-top: .8rem; }
