/* ============================================================
   Aedvio — Design System v3
   Ink #001422 (primary) · Cream #FFFEFA (accent breaks) · Orange #FF914D
   Display: Bricolage Grotesque · Body: Inter
   ============================================================ */

:root{
  --cream:      #FFFEFA;
  --ink:        #001422;
  --ink-2:      #0A2536;   /* raised panel on dark */
  --ink-3:      #123449;   /* hover / lighter panel */
  --orange:     #FF914D;
  --orange-dark:#E8763A;
  --orange-soft: rgba(255,145,77,0.14);
  --muted:      #A9BAC2;   /* body text on dark */
  --muted-strong: #D7E0E4;
  --muted-on-cream: #5C6B74;
  --line:       rgba(255,254,250,0.18);
  --line-strong: rgba(255,254,250,0.30);
  --line-on-cream: rgba(0,20,34,0.13);

  --sans: 'Inter', 'Segoe UI', sans-serif;
  --display: 'Bricolage Grotesque', 'Inter', sans-serif;

  --container: 1180px;
  --radius-sm: 3px;
  --radius: 8px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--cream);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}
/* Subtle grain texture across the whole site — keeps dark sections from feeling flat */
body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:0.05;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header, main, footer{ position:relative; z-index:1; }
/* Decorative absolutely-positioned elements (the large "✱" bg-mark watermark,
   set with a negative right offset for a bleed effect) can push the page's
   effective width past the viewport on some mobile browsers even with
   overflow-x:hidden on body. Clipping at the section level is more reliable. */
main > section{ overflow-x:hidden; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-weight:700; letter-spacing:-0.015em; font-family:var(--display); }
p{ margin:0; color:var(--muted); }
button{ font-family:inherit; cursor:pointer; }

:focus-visible{ outline:2px solid var(--orange); outline-offset:3px; }
::selection{ background:var(--orange); color:var(--ink); }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  position:relative;
  z-index:1;
}
@media (max-width:640px){ .container{ padding:0 20px; } }

/* ---------- Type scale ---------- */
.eyebrow{
  font-family:var(--display);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.09em;
  font-size:0.8rem;
  color:var(--orange);
  margin-bottom:14px;
  display:inline-block;
}
.h-xl{ font-size:clamp(2.6rem, 5.4vw, 4.8rem); line-height:1.0; color:var(--cream); }
.h-lg{ font-size:clamp(2rem, 3.6vw, 3.1rem); line-height:1.04; color:var(--cream); }
.h-md{ font-size:clamp(1.5rem, 2.4vw, 2.1rem); line-height:1.1; color:var(--cream); }
.lede{ font-size:1.2rem; color:var(--muted); max-width:56ch; line-height:1.6; }

/* Light (cream) section overrides — used sparingly for contrast breaks */
.on-light{ background:var(--cream); color:var(--ink); }
.on-light .h-xl,.on-light .h-lg,.on-light .h-md{ color:var(--ink); }
.on-light p{ color:var(--muted-on-cream); }
.on-light .eyebrow{ color:var(--orange-dark); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  font-size:0.98rem;
  font-weight:600;
  border-radius:var(--radius-sm);
  border:1.5px solid transparent;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn-primary{ background:var(--orange); color:#000; font-weight:700; }
.btn-primary:hover{ background:var(--cream); box-shadow:0 10px 30px rgba(255,145,77,0.25); }
.btn-accent{ background:var(--orange); color:#000; font-weight:700; }
.btn-accent:hover{ background:var(--cream); }
.btn-outline{ border-color:rgba(255,254,250,0.38); color:var(--cream); background:transparent; }
.btn-outline:hover{ border-color:var(--orange); color:var(--orange); background:rgba(255,145,77,0.08); }
.on-light .btn-outline{ border-color:rgba(0,20,34,0.35); color:var(--ink); }
.on-light .btn-outline:hover{ border-color:var(--orange-dark); color:var(--orange-dark); }
.on-light .btn-primary:hover{ background:var(--ink); color:var(--cream); box-shadow:none; }
.btn-sm{ padding:12px 22px; font-size:0.88rem; }
.btn-wa{ background:#1F9E52; color:#fff; }
.btn-wa:hover{ background:#25B85F; }
.btn-row{ display:flex; gap:18px; flex-wrap:wrap; align-items:center; }

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(0,20,34,0.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.brand{ display:flex; align-items:center; }
.brand img{ height:26px; width:auto; }

.main-nav{ display:flex; align-items:center; gap:40px; }
.main-nav ul{ display:flex; gap:32px; }
.main-nav a{
  font-size:0.95rem;
  font-weight:500;
  color:var(--muted-strong);
  position:relative;
  padding:4px 0;
  transition:color .15s ease;
}
.main-nav a.active,
.main-nav a:hover{ color:var(--orange); }
.nav-cta{ display:flex; align-items:center; gap:16px; }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  width:36px;
  height:36px;
  position:relative;
}
.nav-toggle span{
  position:absolute;
  left:6px;
  right:6px;
  height:2px;
  background:var(--cream);
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1){ top:13px; }
.nav-toggle span:nth-child(2){ top:22px; }
.nav-toggle.open span:nth-child(1){ transform:translateY(4.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ transform:translateY(-4.5px) rotate(-45deg); }

@media (max-width:900px){
  .main-nav{
    position:fixed;
    top:76px;
    left:0;
    right:0;
    /* Explicit viewport-based height (not "inset:76px 0 0 0") on purpose:
       .site-header has backdrop-filter, which creates a new containing
       block for fixed-position descendants — that collapses inset-based
       sizing to the header's own 76px box instead of the viewport. `vh`
       units aren't affected by that, so this sizes correctly regardless. */
    height:calc(100vh - 76px);
    max-height:calc(100dvh - 76px);
    overflow-y:auto;
    background:var(--ink);
    flex-direction:column;
    align-items:flex-start;
    padding:32px 28px;
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
    z-index:150;
  }
  .main-nav.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .main-nav ul{ flex-direction:column; gap:22px; width:100%; }
  .main-nav a{ font-size:1.3rem; }
  .nav-cta{ margin-top:28px; flex-direction:column; align-items:flex-start; width:100%; }
  .nav-cta .btn{ width:100%; justify-content:center; }
  .nav-toggle{ display:block; }
}

/* ---------- Sections ---------- */
section{ padding:96px 0; position:relative; }
@media (max-width:640px){ section{ padding:64px 0; } }
.on-raised{ background:var(--ink-2); position:relative; overflow:hidden; }
.on-raised::before{
  content:'';
  position:absolute;
  bottom:-200px; left:-140px;
  width:520px; height:520px;
  background:radial-gradient(circle, rgba(255,145,77,0.10) 0%, rgba(255,145,77,0) 70%);
  pointer-events:none;
}
.page-hero{ position:relative; overflow:hidden; }
.page-hero::before{
  content:'';
  position:absolute;
  top:-180px; right:-120px;
  width:480px; height:480px;
  background:radial-gradient(circle, rgba(255,145,77,0.16) 0%, rgba(255,145,77,0) 70%);
  pointer-events:none;
}
.section-head{ max-width:640px; margin-bottom:52px; position:relative; z-index:1; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.mark{ display:inline-block; width:1em; color:var(--orange); }
.bg-mark{
  position:absolute;
  font-family:var(--display);
  font-weight:800;
  font-size:22rem;
  line-height:1;
  color:rgba(255,254,250,0.03);
  pointer-events:none;
  user-select:none;
  z-index:0;
}
@media (max-width:900px){ .bg-mark{ font-size:12rem; } }

/* ---------- Community / partnerships filmstrip slideshow ---------- */
.filmstrip-wrap{
  overflow:hidden;
  position:relative;
  margin:0 -28px;
  padding:0 28px;
}
.filmstrip-wrap::before, .filmstrip-wrap::after{
  content:'';
  position:absolute;
  top:0; bottom:0;
  width:80px;
  z-index:2;
  pointer-events:none;
}
.filmstrip-wrap::before{ left:0; background:linear-gradient(to right, var(--ink), rgba(0,20,34,0)); }
.filmstrip-wrap::after{ right:0; background:linear-gradient(to left, var(--ink), rgba(0,20,34,0)); }
.on-raised .filmstrip-wrap::before{ background:linear-gradient(to right, var(--ink-2), rgba(10,37,54,0)); }
.on-raised .filmstrip-wrap::after{ background:linear-gradient(to left, var(--ink-2), rgba(10,37,54,0)); }
.filmstrip-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:filmstrip-scroll 42s linear infinite;
}
.filmstrip-wrap:hover .filmstrip-track{ animation-play-state:paused; }
@keyframes filmstrip-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.filmstrip-card{
  flex:0 0 auto;
  width:320px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  position:relative;
  background:var(--ink-2);
}
.filmstrip-card img{
  width:320px; height:400px; object-fit:cover; display:block;
}
.filmstrip-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:16px 18px;
  background:linear-gradient(to top, rgba(0,20,34,0.9), rgba(0,20,34,0));
  font-size:0.85rem;
  color:var(--cream);
  font-weight:500;
}
@media (max-width:640px){
  .filmstrip-card, .filmstrip-card img{ width:220px; }
  .filmstrip-card img{ height:280px; }
}
@media (prefers-reduced-motion: reduce){
  .filmstrip-track{ animation:none; overflow-x:auto; }
}
/* Touch devices: tapping a card triggers a "sticky hover" in mobile
   browsers, which pauses the auto-scroll animation with no way to
   resume it. Swap to a native swipeable strip instead — no animation
   to get stuck, and swiping left/right just works. The duplicated
   card set (aria-hidden, used only to make the CSS animation loop
   seamlessly) is hidden since there's nothing to loop here. */
@media (hover:none) and (pointer:coarse){
  .filmstrip-track{
    animation:none;
    width:auto;              /* was max-content — that sized the box to
                                 its own content, leaving nothing to
                                 scroll against. auto keeps it constrained
                                 to the wrap so the flex children (which
                                 don't wrap) actually overflow it. */
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    scroll-padding-left:20px;
    padding-bottom:6px;
  }
  .filmstrip-card{ scroll-snap-align:start; }
  .filmstrip-card[aria-hidden="true"]{ display:none; }
}

/* ---------- Legacy grid gallery (kept for potential future use) ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-auto-rows:220px;
  gap:14px;
}
.gallery-grid .g-item{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
}
.gallery-grid .g-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease;
}
.gallery-grid .g-item:hover img{ transform:scale(1.06); }
.gallery-grid .g-tall{ grid-row:span 2; }
.gallery-grid .g-wide{ grid-column:span 2; }
.gallery-grid .g-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding:14px 16px;
  background:linear-gradient(to top, rgba(0,20,34,0.85), rgba(0,20,34,0));
  font-size:0.82rem;
  color:var(--cream);
}
@media (max-width:760px){
  .gallery-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:170px; }
  .gallery-grid .g-wide{ grid-column:span 2; }
}
@media (max-width:480px){
  .gallery-grid{ grid-template-columns:1fr; }
  .gallery-grid .g-wide, .gallery-grid .g-tall{ grid-column:span 1; grid-row:span 1; }
}

/* ---------- Hero ---------- */
.hero{ padding:70px 0 90px; overflow:hidden; }
.hero-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  pointer-events:none;
}
.hero::before{
  content:'';
  position:absolute;
  top:-220px; right:-160px;
  width:640px; height:640px;
  background:radial-gradient(circle, rgba(255,145,77,0.20) 0%, rgba(255,145,77,0) 70%);
  pointer-events:none;
  animation:drift-a 16s ease-in-out infinite;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-260px; left:-200px;
  width:560px; height:560px;
  background:radial-gradient(circle, rgba(10,37,54,0.9) 0%, rgba(10,37,54,0) 70%);
  pointer-events:none;
  animation:drift-b 20s ease-in-out infinite;
}
@keyframes drift-a{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(-30px,40px) scale(1.08); }
}
@keyframes drift-b{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(20px,-30px) scale(1.05); }
}
@keyframes spin-slow{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}
.bg-mark.spin{ animation:spin-slow 60s linear infinite; }
@media (prefers-reduced-motion: reduce){
  .hero::before, .hero::after, .bg-mark.spin{ animation:none; }
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}
@media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }

.reveal{ opacity:0; transform:translateY(16px); animation:reveal-up .7s ease forwards; }
.reveal-1{ animation-delay:.05s; }
.reveal-2{ animation-delay:.18s; }
.reveal-3{ animation-delay:.30s; }
.reveal-4{ animation-delay:.42s; }
@keyframes reveal-up{ to{ opacity:1; transform:translateY(0); } }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; animation:none; }
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--line);
  margin-top:56px;
  padding-top:28px;
  gap:24px;
}
.stat-num{ font-size:2rem; font-weight:600; color:var(--cream); }
.stat-label{ color:var(--muted); font-size:0.88rem; margin-top:4px; }

.hero-panel{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
  position:relative;
  transition:border-color .25s ease, transform .25s ease;
}
.hero-panel:hover{ border-color:var(--line-strong); transform:translateY(-4px); }
.hero-panel .tag{
  display:inline-block;
  background:var(--orange);
  color:var(--ink);
  font-weight:700;
  font-size:0.78rem;
  padding:5px 10px;
  border-radius:2px;
  margin-bottom:18px;
}
.hero-panel h3{ font-size:1.5rem; margin-bottom:10px; color:var(--cream); }
.hero-panel p{ color:var(--muted); margin-bottom:22px; }
.hero-panel-list{ display:flex; flex-direction:column; gap:10px; margin-bottom:26px; }
.hero-panel-list li{ display:flex; gap:10px; align-items:flex-start; font-size:0.92rem; color:var(--muted-strong); }

/* ---------- Course cards ---------- */
.course-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media (max-width:900px){ .course-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .course-grid{ grid-template-columns:1fr; } }
.course-card{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  min-height:340px;
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}
.course-card:hover{ border-color:var(--line-strong); transform:translateY(-3px); }
.course-card .badge{ font-size:0.76rem; font-weight:700; color:var(--orange); margin-bottom:16px; }
.course-card h3{ font-size:1.3rem; margin-bottom:10px; color:var(--cream); }
.course-card p{ color:var(--muted); font-size:0.94rem; flex-grow:1; }
.course-meta{
  display:flex; justify-content:space-between; align-items:center;
  margin-top:22px; padding-top:18px; border-top:1px solid var(--line); font-size:0.85rem; color:var(--muted);
}
.course-meta .price{ font-weight:700; font-size:1.05rem; color:var(--cream); }
.course-card .cta-row{ margin-top:18px; }
.course-card.featured{ background:var(--orange-soft); border-color:rgba(255,145,77,0.35); }
.course-card.featured:hover{ background:rgba(255,145,77,0.22); }

/* ---------- Steps ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:36px;
  border-top:1px solid var(--line);
  padding-top:36px;
}
@media (max-width:900px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ padding:0; transition:transform .2s ease; }
.step:hover{ transform:translateY(-3px); }
.step .num{ font-family:var(--display); font-weight:800; font-size:1.8rem; color:var(--orange); display:block; margin-bottom:14px; }
.step h4{ margin-bottom:8px; font-size:1.05rem; color:var(--cream); }
.step p{ color:var(--muted); font-size:0.9rem; }

/* ---------- Tools grid ---------- */
.tools-grid{ display:flex; flex-wrap:wrap; gap:12px; }
.tool-chip{
  border:1px solid var(--line);
  padding:10px 18px;
  border-radius:20px;
  font-size:0.88rem;
  color:var(--muted-strong);
  transition:border-color .2s ease, color .2s ease, transform .2s ease;
}
.tool-chip:hover{ border-color:var(--orange); color:var(--orange); transform:translateY(-2px); }

/* ---------- Testimonials ---------- */
.testi-wrap{ position:relative; }
.testi-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{
  scroll-snap-align:start;
  flex:0 0 min(420px,86vw);
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  transition:border-color .2s ease, transform .2s ease;
}
.testi-card:hover{ border-color:var(--orange); transform:translateY(-4px); }
.testi-card .stars{ color:var(--orange); letter-spacing:2px; margin-bottom:18px; font-size:0.95rem; }
.testi-card blockquote{
  font-family:var(--display); font-weight:600; font-size:1.15rem; line-height:1.5; color:var(--cream); margin:0 0 22px;
}
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%;
  background:var(--orange-soft); color:var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:700;
}
.testi-name{ font-size:0.92rem; font-weight:600; color:var(--cream); }
.testi-role{ font-size:0.8rem; color:var(--muted); }
.testi-controls{ display:flex; gap:12px; margin-top:28px; }
.testi-arrow{
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  background:transparent; color:var(--cream);
  transition:border-color .2s ease, background .2s ease;
}
.testi-arrow:hover{ border-color:var(--orange); background:var(--orange-soft); }

/* ---------- FAQ ---------- */
.faq-item{ border-top:1px solid var(--line); padding:24px 0; }
.faq-item:last-child{ border-bottom:1px solid var(--line); }
.faq-q{
  display:flex; justify-content:space-between; align-items:center; gap:20px; width:100%;
  background:none; border:none; text-align:left; font-size:1.05rem; font-weight:600; color:var(--cream); padding:0;
}
.faq-q .plus{ font-size:1.4rem; color:var(--orange); transition:transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; color:var(--muted); font-size:0.96rem; }
.faq-a-inner{ padding-top:14px; max-width:64ch; }
.faq-item.open .faq-a{ max-height:400px; }

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--orange);
  color:var(--ink);
  border-radius:var(--radius);
  padding:56px;
  display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;
}
.cta-band h2{ max-width:480px; color:var(--ink); }
.cta-band .btn-primary{ background:var(--ink); color:var(--cream); }
.cta-band .btn-primary:hover{ background:var(--cream); color:var(--ink); box-shadow:none; }

/* ---------- Footer ---------- */
.site-footer{ background:#000C14; color:var(--cream); padding:72px 0 28px; border-top:1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:52px; border-bottom:1px solid var(--line); }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid h5{ font-size:0.82rem; color:var(--muted); margin-bottom:16px; font-weight:600; }
.footer-grid ul{ display:flex; flex-direction:column; gap:11px; }
.footer-grid a{ font-size:0.92rem; color:var(--muted-strong); transition:color .15s ease; }
.footer-grid a:hover{ color:var(--orange); }
.footer-brand p{ color:var(--muted); font-size:0.92rem; max-width:32ch; margin-top:16px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; font-size:0.82rem; color:var(--muted); flex-wrap:wrap; gap:12px; }
.footer-bottom a{ color:var(--muted); }
.footer-bottom a:hover{ color:var(--orange); }
.social-row{ display:flex; gap:14px; }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; bottom:24px; right:24px; z-index:200;
  width:56px; height:56px; border-radius:50%;
  background:#1F9E52; display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.4);
  transition:transform .15s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ padding:56px 0 64px; border-bottom:1px solid var(--line); }
.breadcrumb{ font-size:0.85rem; color:var(--muted); margin-bottom:18px; }
.breadcrumb a:hover{ color:var(--orange); }

/* ---------- Misc content blocks ---------- */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media (max-width:800px){ .two-col{ grid-template-columns:1fr; } }

.check-list li{ display:flex; gap:12px; padding:12px 0; border-top:1px solid var(--line); font-size:0.96rem; color:var(--muted-strong); }
.check-list li:last-child{ border-bottom:1px solid var(--line); }
.check-list .tick{ color:var(--orange); font-weight:700; flex-shrink:0; }

.module-list{ display:flex; flex-direction:column; }
.module{ display:grid; grid-template-columns:64px 1fr; gap:20px; padding:26px 0; border-top:1px solid var(--line); transition:transform .2s ease; }
.module:hover{ transform:translateX(4px); }
.module:last-child{ border-bottom:1px solid var(--line); }
.module .m-num{ font-family:var(--display); font-weight:800; font-size:1.6rem; color:var(--orange); }
.module h4{ font-size:1.08rem; margin-bottom:6px; color:var(--cream); }
.module p{ color:var(--muted); font-size:0.92rem; }

.badge-soft{
  display:inline-block; background:var(--ink-2); border:1px solid var(--line);
  padding:5px 12px; border-radius:20px; font-size:0.8rem; color:var(--muted-strong);
  margin-right:8px; margin-bottom:8px; transition:border-color .2s ease, color .2s ease;
}
.badge-soft:hover{ border-color:var(--orange); color:var(--orange); }

.pull-fact{
  border-left:2px solid var(--orange); padding-left:20px;
  font-family:var(--display); font-weight:600; font-size:1.25rem; line-height:1.4; margin:28px 0; color:var(--cream);
}

/* ---------- Services (Aedvio) ---------- */
.service-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; align-items:stretch; }
@media (max-width:760px){ .service-grid{ grid-template-columns:1fr; } }
.service-card{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  display:flex;
  flex-direction:column;
  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}
.service-card:hover{ border-color:var(--line-strong); transform:translateY(-3px); }
.service-card .s-icon{ font-family:var(--display); font-weight:800; font-size:1.9rem; color:var(--orange); margin-bottom:14px; display:block; }
.service-card h3{ font-size:1.3rem; margin-bottom:10px; color:var(--cream); }
.service-card p{ color:var(--muted); margin-bottom:16px; }
.service-card .s-list{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.service-card .s-list li{ font-size:0.9rem; color:var(--muted-strong); display:flex; gap:8px; }
.service-card .s-list li::before{ content:'—'; color:var(--orange); }
.service-card > .btn{ margin-top:auto; align-self:flex-start; }

/* ---------- Simple contact form ---------- */
.form-field{ margin-bottom:20px; }
.form-field label{ display:block; font-size:0.86rem; font-weight:600; margin-bottom:8px; color:var(--muted-strong); }
.form-field input,
.form-field textarea,
.form-field select{
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:var(--radius-sm);
  font-family:inherit; font-size:0.96rem; background:var(--ink-2); color:var(--cream);
}
.form-field input::placeholder,
.form-field textarea::placeholder{ color:var(--muted); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{ border-color:var(--orange); outline:none; }
.form-note{ font-size:0.8rem; color:var(--muted); margin-top:10px; }

.contact-info-list{ display:flex; flex-direction:column; gap:22px; margin-top:28px; }
.contact-info-list .ci-label{ font-size:0.82rem; color:var(--muted); margin-bottom:4px; }
.contact-info-list .ci-value{ font-size:1.05rem; font-weight:600; color:var(--cream); }
.contact-info-list .ci-value a:hover{ color:var(--orange); }

/* ---------- Logo strip (kept for possible future use) ---------- */
.logo-strip{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:26px 0; }
.logo-strip .container{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.logo-strip .label{ font-size:0.85rem; color:var(--muted); white-space:nowrap; margin-right:12px; }
.logo-strip .chips{ display:flex; gap:10px; flex-wrap:wrap; }
.logo-strip .chip{ border:1px solid var(--line); padding:7px 14px; border-radius:20px; font-size:0.82rem; color:var(--muted-strong); }
