/* Avelion IT — Bootstrap custom theme (NO blue). Palette: olive + amber + plum */
:root{
  --bg: #fbfaf6;
  --bg2:#f3efe5;
  --ink:#171717;
  --muted:#5a5a5a;

  --olive:#2f8f4e;
  --amber:#c57c2c;
  --plum:#7b4bb8;

  --dark:#0b0f14;
  --line: rgba(23,23,23,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.10);
}

html{ font-size:16px; scroll-behavior:smooth; }
body.app{ background: var(--bg); color: var(--ink); }

/* Navbar */
.nav-v2{
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(23,23,23,.10);
  box-shadow: 0 16px 50px rgba(0,0,0,.06);
}
.brand-logo{ width: 40px; height: 40px; border-radius: 14px; object-fit: cover; border:1px solid rgba(23,23,23,.12); }
.brand-title{ font-weight: 900; letter-spacing: -.02em; }
.brand-tag{ font-size: .82rem; color: rgba(23,23,23,.55); }
.btn-toggler{
  border: 1px solid rgba(23,23,23,.14);
  background: #fff;
  border-radius: 14px;
  padding: .55rem .75rem;
}
.navlink-v2{
  font-weight: 700;
  color: rgba(23,23,23,.86);
}
.navlink-v2:hover{
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Buttons */
.btn-v2{
  background: linear-gradient(135deg, var(--amber), var(--olive));
  border: 1px solid rgba(255,255,255,.40);
  color: #111;
  font-weight: 900;
  border-radius: 16px;
  padding: .72rem 1rem;
  box-shadow: 0 18px 60px rgba(47,143,78,.14);
}
.btn-v2:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.btn-soft2{ border-radius: 16px; }

/* Sections */
.sec-pad{ padding: 4.75rem 0; }
.sec-alt{
  background:
    radial-gradient(1000px 540px at 10% 10%, rgba(197,124,44,.18), transparent 70%),
    radial-gradient(900px 520px at 90% 20%, rgba(123,75,184,.12), transparent 72%),
    linear-gradient(180deg, var(--bg2), var(--bg));
}
.sec-head{ max-width: 60rem; margin: 0 auto 1.25rem auto; text-align:center; }
.sec-head.text-start{ max-width: 44rem; margin: 0 0 1rem 0; }
.fw-black{ font-weight: 950; letter-spacing: -.02em; }

/* Hero */
.hero-v2{
  background:
    radial-gradient(1050px 520px at 10% 15%, rgba(47,143,78,.18), transparent 70%),
    radial-gradient(950px 520px at 88% 8%, rgba(197,124,44,.18), transparent 70%),
    radial-gradient(900px 520px at 55% 95%, rgba(123,75,184,.12), transparent 72%),
    linear-gradient(180deg, #ffffff, var(--bg));
  border-bottom: 1px solid rgba(23,23,23,.08);
}
.hero-badge{
  display:inline-flex; align-items:center;
  padding:.5rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(23,23,23,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  font-weight: 800;
  color: rgba(23,23,23,.82);
}
.small-badge{ font-size:.9rem; }
.hero-strip{
  display:grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 576px){
  .hero-strip{ grid-template-columns: repeat(3, 1fr); }
}
.strip-item{
  display:flex; gap:.75rem; align-items:center;
  padding: .9rem 1rem;
  border-radius: 18px;
  background:#fff;
  border: 1px solid rgba(23,23,23,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
}
.strip-ic{
  width: 44px; height: 44px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(123,75,184,.12);
  color: var(--plum);
}
.strip-title{ font-weight: 950; }
.strip-sub{ font-size: .85rem; color: rgba(23,23,23,.55); }

.hero-board{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.board-top{ display:flex; align-items:center; justify-content: space-between; gap:.75rem; }
.tag-v2{
  display:inline-flex; align-items:center;
  padding:.45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.82);
  font-weight: 800;
  color: rgba(23,23,23,.80);
}
.board-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.board-card{
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.88);
}
.board-card i{ color: var(--amber); font-size: 1.05rem; }
.hero-note{
  display:flex; align-items:center;
  padding: .75rem 1rem;
  border-radius: 18px;
  background: var(--dark);
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}
.hero-note i{ color: #42f08a; }

/* Cards / blocks */
.card-v2{
  background:#fff;
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
}
.frame{ border: 1px solid rgba(23,23,23,.10); box-shadow: 0 22px 70px rgba(0,0,0,.08); }
.rounded-5{ border-radius: 26px !important; }

/* Pillars mosaic */
.mosaic{
  background:#fff;
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  padding: 1.6rem 1.6rem;
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
}
.mosaic.big{ padding: 2rem 2rem; }
.mosaic.banner{
  background:
    radial-gradient(700px 260px at 15% 20%, rgba(47,143,78,.16), transparent 70%),
    radial-gradient(700px 260px at 85% 20%, rgba(197,124,44,.16), transparent 70%),
    rgba(255,255,255,.92);
}
.mosaic-ic{
  width: 54px; height: 54px; border-radius: 20px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(47,143,78,.22);
  background: rgba(47,143,78,.14);
  color: var(--olive);
  font-size: 1.1rem;
}
.mosaic-ic.alt{ border-color: rgba(123,75,184,.22); background: rgba(123,75,184,.14); color: var(--plum); }
.mosaic-ic.warm{ border-color: rgba(197,124,44,.24); background: rgba(197,124,44,.14); color: var(--amber); }
.pill-chip{
  display:inline-flex; align-items:center;
  padding:.45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.88);
  font-weight: 800;
  color: rgba(23,23,23,.82);
  font-size: .9rem;
}
.mini-line{ display:flex; gap:.5rem; align-items:center; }
.dot{ width: 10px; height: 10px; border-radius: 99px; background: var(--olive); }

/* Flow boxes */
.flow-box{
  background:#fff;
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  padding: 1.6rem 1.6rem;
  box-shadow: 0 20px 70px rgba(0,0,0,.06);
}
.flow-top{ display:flex; gap: .9rem; align-items:flex-start; }
.flow-ic{
  width: 50px; height: 50px; border-radius: 20px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(47,143,78,.22);
  background: rgba(47,143,78,.14);
  color: var(--olive);
  flex: 0 0 auto;
  font-size: 1.08rem;
}
.flow-ic.warm{ border-color: rgba(197,124,44,.24); background: rgba(197,124,44,.14); color: var(--amber); }
.flow-ic.purple{ border-color: rgba(123,75,184,.22); background: rgba(123,75,184,.14); color: var(--plum); }
.flow-li{ font-weight: 800; color: rgba(23,23,23,.78); }
.flow-li i{ color: var(--olive); }

/* Steps */
.step-v2{
  display:flex; gap: 1rem;
  background:#fff;
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  height: 100%;
}
.step-num{
  width: 52px; height: 52px; border-radius: 20px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(197,124,44,.14);
  border: 1px solid rgba(197,124,44,.26);
  font-weight: 950;
  color: rgba(23,23,23,.84);
}
.step-foot{
  margin-top: .8rem;
  font-weight: 900;
  color: rgba(23,23,23,.74);
}

/* Mini panels */
.mini-panel{
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.90);
  height: 100%;
}
.mini-panel i{ color: var(--plum); font-size: 1.05rem; }

.mini-kpi{
  display:flex; gap:.8rem; align-items:flex-start;
  padding: .9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.92);
}
.mini-kpi-ic{
  width: 44px; height: 44px; border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(123,75,184,.20);
  background: rgba(123,75,184,.12);
  color: var(--plum);
}

/* Library cards */
.lib-card{
  background: #fff;
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  padding: 1.4rem 1.4rem;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  position: relative;
  overflow:hidden;
  min-height: 190px;
}
.lib-card::after{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(240px 160px at 20% 20%, rgba(47,143,78,.12), transparent 70%),
    radial-gradient(240px 160px at 80% 20%, rgba(197,124,44,.12), transparent 70%),
    radial-gradient(260px 160px at 60% 90%, rgba(123,75,184,.10), transparent 72%);
  pointer-events:none;
}
.lib-card > *{ position: relative; }
.lib-ic{
  width: 52px; height: 52px; border-radius: 20px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(47,143,78,.22);
  background: rgba(47,143,78,.14);
  color: var(--olive);
  font-size: 1.08rem;
}
.lib-ic.warm{ border-color: rgba(197,124,44,.24); background: rgba(197,124,44,.14); color: var(--amber); }
.lib-ic.purple{ border-color: rgba(123,75,184,.22); background: rgba(123,75,184,.14); color: var(--plum); }
.lib-ic.alt{ border-color: rgba(23,23,23,.18); background: rgba(23,23,23,.06); color: rgba(23,23,23,.84); }
.lib-foot{
  position:absolute; right: 16px; bottom: 14px;
  width: 42px; height: 42px; border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.88);
  color: rgba(23,23,23,.84);
}

/* Offer ribbon */
.offer-ribbon{
  background:
    radial-gradient(860px 320px at 15% 20%, rgba(197,124,44,.18), transparent 70%),
    radial-gradient(860px 320px at 85% 20%, rgba(47,143,78,.16), transparent 72%),
    radial-gradient(860px 320px at 60% 95%, rgba(123,75,184,.12), transparent 72%),
    rgba(255,255,255,.92);
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 30px;
  padding: 1.8rem 1.8rem;
  box-shadow: var(--shadow);
}
.offer-kicker{
  display:inline-flex; align-items:center;
  padding:.45rem .75rem;
  border-radius: 999px;
  background: rgba(11,15,20,.92);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
}

/* Stories */
.story{
  background:#fff;
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 26px;
  padding: 1.4rem 1.4rem;
  box-shadow: 0 18px 60px rgba(0,0,0,.06);
  height: 100%;
}
.story-top{ display:flex; gap:.9rem; align-items:center; }
.story-av{ width: 48px; height: 48px; border-radius: 999px; object-fit: cover; border: 1px solid rgba(23,23,23,.12); }
.story-stars{ color: #d4a01f; display:flex; gap:.25rem; }

/* Contact */
.contact-card-v2{ display:flex; gap:.9rem; align-items:flex-start; }
.cc-ic{
  width: 48px; height: 48px; border-radius: 20px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(47,143,78,.12);
  color: var(--olive);
}
.cc-ic.warm{ background: rgba(197,124,44,.12); color: var(--amber); border-color: rgba(197,124,44,.22); }
.cc-ic.purple{ background: rgba(123,75,184,.12); color: var(--plum); border-color: rgba(123,75,184,.20); }
.prep2{
  padding: .75rem .9rem;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,.10);
  background: rgba(255,255,255,.92);
  font-weight: 900;
  color: rgba(23,23,23,.80);
}

/* FAQ */
.faq-item{
  border: 1px solid rgba(23,23,23,.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.05);
}
.faq-btn{
  background: rgba(255,255,255,.94);
  font-weight: 900;
  color: rgba(23,23,23,.88);
}
.accordion-button:not(.collapsed){ background: rgba(47,143,78,.10); color: rgba(23,23,23,.92); }
.accordion-button:focus{ box-shadow: 0 0 0 .25rem rgba(47,143,78,.14); }

/* Footer */
.footer-v2{
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(123,75,184,.22), transparent 65%),
    radial-gradient(700px 380px at 80% 10%, rgba(47,143,78,.18), transparent 60%),
    linear-gradient(180deg, #04060a, #02030a);
  border-top: 1px solid rgba(255,255,255,.10);
}
.text-dim{ color: rgba(255,255,255,.72) !important; }
.foot-title{ font-weight: 950; letter-spacing:-.02em; }
.foot-link{ color: rgba(255,255,255,.86); text-decoration:none; }
.foot-link:hover{ color:#fff; text-decoration:underline; text-underline-offset:4px; }
.border-soft{ border-color: rgba(255,255,255,.12) !important; }
.foot-chip{
  display:inline-flex; align-items:center;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: .85rem;
  font-weight: 900;
}
.input-foot{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  border-radius: 18px;
}
.input-foot::placeholder{ color: rgba(255,255,255,.62); }
.input-foot:focus{ border-color: rgba(47,143,78,.55); box-shadow: 0 0 0 .25rem rgba(47,143,78,.18); }

/* Cookie (home only) */
.cookie-v2{ position: fixed; left: 0; right: 0; bottom: 0; z-index: 1080; padding: 0 0 1rem 0; }
.cookie-panel{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(23,23,23,.12);
  border-radius: 26px;
  box-shadow: 0 26px 90px rgba(0,0,0,.14);
  padding: 1rem;
  display:flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-spot{
  width: 46px; height: 46px; border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(197,124,44,.22);
  background: rgba(197,124,44,.12);
  color: var(--amber);
}
@media (min-width: 992px){
  .cookie-panel{ flex-direction: row; align-items:center; justify-content: space-between; }
}

/* Modal */
.modal-v2{
  border-radius: 24px;
  border: 1px solid rgba(23,23,23,.10);
  box-shadow: 0 24px 90px rgba(0,0,0,.18);
}

/* Prose */
.prose h2{ font-size: 1.25rem; font-weight: 950; letter-spacing:-.01em; margin-top: 1.25rem; }
.prose h2:first-child{ margin-top: 0; }
.prose p, .prose li{ color: rgba(23,23,23,.70); line-height: 1.75; }

/* Reveal animation */
[data-animate]{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.is-visible[data-animate]{ opacity: 1; transform: translateY(0px); }
@media (prefers-reduced-motion: reduce){
  [data-animate]{ opacity:1; transform:none; transition:none; }
}


/* v3 adjustments: fewer images on home */
.brand-mark{
  width: 40px; height: 40px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(47,143,78,.12);
  border: 1px solid rgba(23,23,23,.12);
  color: var(--olive);
  font-size: 1.05rem;
}
.av-initials{
  display:flex; align-items:center; justify-content:center;
  background: rgba(197,124,44,.12);
  border: 1px solid rgba(23,23,23,.12);
  color: rgba(23,23,23,.82);
  font-weight: 950;
  font-size: .9rem;
}
.decor-shot{
  min-height: 260px;
  border: 1px solid rgba(23,23,23,.10);
  background:
    radial-gradient(420px 220px at 20% 20%, rgba(47,143,78,.18), transparent 70%),
    radial-gradient(420px 220px at 80% 30%, rgba(197,124,44,.18), transparent 70%),
    radial-gradient(520px 240px at 60% 90%, rgba(123,75,184,.14), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
  box-shadow: 0 22px 70px rgba(0,0,0,.08);
}
