/* ═══════════════════════════════════════
   LIDAMOSES & CO. — Shared Stylesheet
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --violet:   #4C145E;
  --violet-d: #360F44;
  --violet-l: #7B2D94;
  --crimson:  #BF1C37;
  --crimson-l:#E02040;
  --lilac:    #F0ECF6;
  --lilac-d:  #E4DDED;
  --navy:     #180630;
  --white:    #FFFFFF;
  --muted:    #7A6B85;
  --text:     #1A0A2A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── Container ── */
.c { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── Typography ── */
.syne { font-family: 'Syne', sans-serif; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.1; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 26px; border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all .25s; text-decoration: none; font-family: 'Inter', sans-serif; white-space: nowrap; }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 15px 38px; font-size: 15px; }
.btn-primary { background: var(--crimson); color: #fff; box-shadow: 0 4px 18px rgba(191,28,55,.35); }
.btn-primary:hover { background: var(--crimson-l); transform: translateY(-2px); box-shadow: 0 7px 26px rgba(191,28,55,.45); }
.btn-violet { background: var(--violet); color: #fff; box-shadow: 0 4px 18px rgba(76,20,94,.35); }
.btn-violet:hover { background: var(--violet-d); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid rgba(76,20,94,.22); color: var(--navy); }
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn-white { background: #fff; color: var(--violet); box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,.2); }

/* ── Section tags & titles ── */
.stag { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.stag::before { content: ''; width: 20px; height: 2px; background: currentColor; border-radius: 2px; flex-shrink: 0; }
.stag-crimson { color: var(--crimson); }
.stag-violet { color: var(--violet-l); }
.stag-white { color: rgba(255,255,255,.7); }
.sh { font-size: clamp(32px, 4vw, 54px); font-weight: 800; letter-spacing: -1px; }
.sh-sm { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -.5px; }
.sb { font-size: 15.5px; line-height: 1.72; color: var(--muted); max-width: 520px; }

/* ── Cards ── */
.card { background: #fff; border-radius: 20px; box-shadow: 0 3px 16px rgba(76,20,94,.08); padding: 28px; transition: all .35s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(76,20,94,.14); }
.card-lilac { background: var(--lilac); border-radius: 20px; padding: 28px; transition: all .35s; }
.card-lilac:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(76,20,94,.1); }

/* ── Reveal animations ── */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.rv-l { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.rv-l.in { opacity: 1; transform: translateX(0); }
.rv-r { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.rv-r.in { opacity: 1; transform: translateX(0); }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.40s}.d6{transition-delay:.48s}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(76,20,94,.07);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-emblem { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; color: var(--navy); line-height: 1.15; }
.logo-sub { font-size: 8px; font-weight: 500; letter-spacing: 1px; color: var(--muted); display: block; }
.nav-pills { display: flex; align-items: center; gap: 4px; list-style: none; background: rgba(76,20,94,.06); padding: 4px; border-radius: 50px; }
.nav-pills li a { display: block; padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: all .2s; white-space: nowrap; }
.nav-pills li a:hover { color: var(--navy); }
.nav-pills li.active a { background: var(--violet); color: #fff; font-weight: 600; }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hamburger { display: none; background: none; border: 1.5px solid rgba(76,20,94,.2); border-radius: 8px; padding: 7px 10px; cursor: pointer; font-size: 15px; color: var(--navy); }
#mobile-nav { display: none; position: fixed; inset: 0; background: rgba(6,1,16,.97); backdrop-filter: blur(20px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 26px; }
#mobile-nav.open { display: flex; }
#mobile-nav a { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; color: #fff; letter-spacing: 2px; text-decoration: none; transition: color .2s; }
#mobile-nav a:hover { color: var(--crimson-l); }
#nav-close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

/* ═══════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════ */
.page-hero {
  background: var(--lilac);
  border-radius: 0 0 28px 28px;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(76,20,94,.08), transparent 70%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: -60px; left: 30%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(191,28,55,.05), transparent 70%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb-sep { opacity: .4; }
.page-hero h1 { font-size: clamp(40px, 5.5vw, 76px); font-weight: 800; letter-spacing: -2px; line-height: .96; color: var(--navy); margin-bottom: 20px; }
.page-hero-sub { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 32px; }
.page-hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 64px 0 32px; color: rgba(255,255,255,.45); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 2px; color: #fff; margin: 12px 0 4px; }
.foot-brand-tag { font-size: 8px; letter-spacing: 1.5px; color: rgba(255,255,255,.28); margin-bottom: 12px; }
.foot-brand p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.4); max-width: 220px; }
.foot-col h4 { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col ul a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.foot-col ul a:hover { color: rgba(255,255,255,.85); }
.foot-bar { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-legal a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.foot-legal a:hover { color: rgba(255,255,255,.7); }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════
   STATS / FEATURE ROWS
═══════════════════════════════════════ */
.stats-band { background: var(--violet); padding: 52px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.sband-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.12); }
.sband-item:last-child { border-right: none; }
.sband-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.sband-acc { color: rgba(240,236,246,.55); }
.sband-lbl { font-size: 13px; color: rgba(255,255,255,.55); }

/* ── Info boxes ── */
.info-box { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: 14px; background: var(--lilac); }
.info-box-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.info-box h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.info-box p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ── CTA band ── */
.cta-band { background: var(--violet); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -100px; left: -100px; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cta-band::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(191,28,55,.18); }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; color: #fff; letter-spacing: -1.5px; margin-bottom: 14px; }
.cta-body { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:900px) {
  .nav-pills { display: none; }
  .hamburger { display: flex; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .sband-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px; }
}
@media(max-width:600px) {
  .c { padding: 0 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-actions .btn-outline { display: none; }
  .page-hero h1 { letter-spacing: -1px; }
}
