:root{
  --bg: #07090d;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --muted-2: rgba(255,255,255,.45);

  --accent: #7c5cff;
  --accent-2: #2b6cff;

  --radius: 18px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =======================
   BACKGROUND
======================= */
.bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events:none;
  background:
    radial-gradient(900px 600px at 70% 35%, rgba(43,108,255,.14), transparent 60%),
    radial-gradient(800px 520px at 30% 75%, rgba(124,92,255,.12), transparent 60%),
    radial-gradient(1200px 900px at 50% 50%, rgba(255,255,255,.03), transparent 70%),
    var(--bg);
}
/* ===== Background Video Gradient ===== */
.bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* tune these for the exact vibe */
  opacity: 0.55;
  filter: blur(6px) saturate(1.15) contrast(1.05);

  transform: scale(1.06); /* avoids edge lines */
  z-index: 0;
}

/* Make sure layers sit above video */
.bg-stars{ position:absolute; inset:0; z-index: 1; }
.bg-ribbon{ z-index: 2; }
.bg-vignette{ position:absolute; inset:0; z-index: 3; }
.bg-noise{ position:absolute; inset:0; z-index: 4; }

/* Optional: reduce load for users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  .bg-video{ display:none; }
}


.bg-stars{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.10) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 240px 240px, 300px 300px, 280px 280px;
  opacity: .35;
  filter: blur(.2px);
}

.bg-ribbon{
  position:absolute;
  width: 980px;
  height: 720px;
  opacity: .9;
  mix-blend-mode: screen;
  animation: floaty 10s ease-in-out infinite;
}

.bg-ribbon--left{
  left: -340px;
  top: 140px;
  transform: rotate(-12deg);
  animation-duration: 12s;
}

.bg-ribbon--right{
  right: -360px;
  top: 40px;
  transform: rotate(18deg);
  opacity: .7;
  animation-duration: 14s;
  animation-delay: -2s;
}

@keyframes floaty{
  0%,100%{ transform: translateY(0) translateX(0) rotate(var(--rot, 0deg)); }
  50%{ transform: translateY(-18px) translateX(10px) rotate(var(--rot, 0deg)); }
}

.bg-vignette{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 700px at 50% 10%, transparent 40%, rgba(0,0,0,.65) 100%),
    radial-gradient(900px 600px at 10% 80%, rgba(0,0,0,.55), transparent 60%);
}

.bg-noise{
  position:absolute; inset:0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =======================
   HEADER / NAV (REFERENCE STYLE)
======================= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: transparent;
}

.header.is-scrolled{
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 6px 0;
}

.brand__logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}

/* Center links */
.nav__links{
  justify-self: center;
  display:flex;
  gap: 28px;
  align-items:center;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.nav__links a{
  padding: 10px 6px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}

.nav__links a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}

/* Right side */
.nav__actions{
  justify-self: end;
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Nav button like "Get Template" */
.btn--nav{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;

  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.btn--nav:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.btn--nav:active{ transform: translateY(1px); }

/* Burger */
.nav__burger{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  cursor:pointer;
}

.nav__burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.85);
  margin: 4px auto;
  border-radius: 2px;
}

/* Mobile menu: FORCE hidden when [hidden] exists */
.mobile[hidden]{ display:none !important; }

/* Desktop: never show mobile menu */
@media (min-width: 881px){
  .mobile{ display:none !important; }
}

/* Mobile layout */
@media (max-width: 880px){
  .nav__links{ display:none; }
  .nav__burger{ display:inline-flex; }

  .mobile{
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(14px);

    display:flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile a{
    padding: 12px 12px;
    border-radius: 14px;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.04);
  }
  .mobile a:hover{ background: rgba(255,255,255,.07); }
  .mobile__cta{ text-align:center; }
}

/* =======================
   GENERIC BUTTONS (HERO)
======================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;

  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;

  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  color: rgba(255,255,255,.95);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(43,108,255,.85));
  box-shadow: 0 18px 40px rgba(124,92,255,.18);
}
.btn--primary:hover{
  box-shadow: 0 22px 60px rgba(124,92,255,.22);
}

.btn--outline{
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.14);
}
.btn--outline:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

/* =======================
   HERO
======================= */
.hero{
  padding: 92px 0 70px;
}

.hero__inner{
  text-align:center;
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 12px;
}

.pill__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}

.hero__title{
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.03;
  font-size: clamp(38px, 5.2vw, 72px);
}

.hero__accent{
  color: rgba(255,255,255,.95);
  text-shadow: 0 0 30px rgba(124,92,255,.20);
}

.hero__subtitle{
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.65;
}

.hero__cta{
  margin-top: 10px;
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
}

/* Trust */
.trust{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  color: rgba(255,255,255,.62);
}

.avatars{
  display:flex;
  align-items:center;
}

.avatar{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  display:grid;
  place-items:center;
  margin-left: -8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.avatar:first-child{ margin-left: 0; }

.stars{
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(255,255,255,.82);
}

.rating__text{
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* Scroll hint */
.scroll-hint{
  margin-top: 30px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: 12px;
}

.scroll-hint__line{
  width: 90px;
  height: 1px;
  background: rgba(255,255,255,.14);
}

.scroll-hint__mouse{
  opacity: .8;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(4px); }
}

/* =======================
   SECTIONS
======================= */
.section{
  padding: 70px 0;
}

.section--last{
  padding-bottom: 90px;
}

.section__pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: 12px;
}

.section__title{
  margin: 14px 0 10px;
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: -0.03em;
}

.section__text{
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
  font-size: 15px;
}

.contact__actions{
  margin-top: 16px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =======================
   FOOTER
======================= */
.footer{
  padding: 22px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.60);
}

.footer__inner{
  display:flex;
  justify-content:center;
  gap: 10px;
  font-size: 13px;
}

.footer__sep{ opacity: .35; }

/* Small tweaks */
@media (max-width: 520px){
  .hero{ padding-top: 74px; }
  .brand__name{ display:none; }
}

/* ===========================
   FIX: Clean transparent navbar
   (removes dark strip/line)
=========================== */
.header,
.header.is-scrolled{
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Optional: a tiny readability boost while still transparent */
.brand__name,
.nav__links a,
.btn--nav{
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* ===========================
   FIX: Remove blocky rectangles
   (disable placeholder ribbons)
=========================== */
.bg-ribbon{
  display: none !important;
}
/* ===== Reference-style statement section ===== */
.section--center{
  text-align: center;
}

.display{
  margin: 18px auto 0;
  max-width: 980px;
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.05;
  font-size: clamp(26px, 3.6vw, 54px);
}

.display-sub{
  margin: 18px auto 0;
  max-width: 760px;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.7;
}

/* Pills/chips inside the headline */
.chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
  transform: translateY(-6px);
  margin: 0 6px;
}

.chip--accent{
  border-color: rgba(124,92,255,.35);
  background: rgba(124,92,255,.18);
}

.chip--icon{
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border-color: rgba(124,92,255,.35);
  background: rgba(124,92,255,.18);
}

.chip-row{
  display: inline-flex;
  gap: 8px;
  transform: translateY(-6px);
  margin: 0 6px;
}

.chip--mini{
  padding: 7px 10px;
  font-size: 11px;
}

/* ===== Cards for Works section ===== */
.section__title--big{
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.04em;
}

.cards{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card{
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}

.card__title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card__text{
  margin: 0;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .chip{ transform: translateY(-3px); }
  .chip-row{ transform: translateY(-3px); }
}
/* =======================
   CTA SECTION
======================= */
.cta{
  padding: 90px 0 70px;
  position: relative;
}

.cta__inner{ background: transparent; border: none; }


.cta__title{
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.cta__text{
  margin: 14px auto 0;
  max-width: 620px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  font-size: 14px;
}

.cta__actions{
  margin-top: 20px;
  display: grid;
  justify-content: center;
  gap: 10px;
}

.cta__note{
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

/* =======================
   FOOTER
======================= */
.site-footer{
  padding: 70px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__grid{
  display: grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap: 34px;
  align-items: start;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.footer-brand__logo{
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: .95;
}

.footer-brand__name{
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 20px;
}

.site-footer__about{
  margin: 14px 0 18px;
  max-width: 460px;
  color: rgba(255,255,255,.56);
  line-height: 1.7;
  font-size: 15px;
}

.site-footer__title{
  font-weight: 800;
  margin-bottom: 10px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.site-footer__col{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col a{
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.site-footer__col a:hover{
  color: rgba(255,255,255,.85);
}

/* Social buttons */
.social{
  display:flex;
  gap: 10px;
}

.social__btn{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 800;
}

.social__btn:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

/* Footer bottom line */
.site-footer__bottom{
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.site-footer__bottom .dot{ opacity: .35; }

/* Responsive */
@media (max-width: 900px){
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__bottom{
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
/* ===== CTA: editable pieces ===== */
.cta{
  padding: 90px 0 70px;
}

.cta__inner{
  text-align: center;
  background: transparent;
  border: none;
  padding: 20px 0; /* control vertical spacing */
}

.cta__headline{
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.cta__sub{
  margin: 12px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.60);
  font-size: 18px;
  line-height: 1.7;
}

/* button + note are controlled separately */
.cta__actions{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta__note{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}
/* ===== Footer layout: left + right columns ===== */
.site-footer{
  padding: 70px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;  /* left | right */
  align-items: start;
  gap: 40px;
}

.site-footer__brand{
  justify-self: start;
}

/* Push right block to the right edge of container */
.site-footer__right{
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px; /* increase if you want more space between Links and More */
  text-align: left;
}

/* Keep your existing styles for brand/about/links/social */
.site-footer__col{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col a{
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
.site-footer__col a:hover{
  color: rgba(255,255,255,.85);
}

/* Responsive */
@media (max-width: 900px){
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer__right{
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 520px){
  .site-footer__right{
    grid-template-columns: 1fr;
  }
}
.social__btn{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.social__btn svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: .9;
}

.social__btn:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}

.social__btn:active{
  transform: translateY(1px);
}
/* =========================
   LONG FORM (heading only)
========================= */
#longform .section__title{
  text-align: center;
}
#longform .section__text{
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional future grid (kept commented in HTML) */
.video-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.video-tile{
  aspect-ratio: 16/9;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

/* =========================
   PROCESS (4 cards)
========================= */
.flow-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  padding: 16px;
  overflow: hidden;
}

.flow-card__top{
  position: relative;
  height: 170px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.flow-card__mock{
  position:absolute;
  inset: 14px;
  border-radius: 14px;
  background:
    radial-gradient(300px 200px at 10% 10%, rgba(124,92,255,.18), transparent 55%),
    radial-gradient(280px 200px at 90% 90%, rgba(43,108,255,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  opacity: .9;
}

.flow-card__icon{
  position:absolute;
  left: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124,92,255,.35);
  background: rgba(124,92,255,.18);
  z-index: 2;
}

.flow-card__icon svg{
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.92);
}

.flow-card__title{
  margin: 14px 0 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.flow-card__text{
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================
   SERVICES (2x2 big cards)
========================= */
.service-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card{
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  min-height: 170px;
}

.service-card__title{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.service-card__text{
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

/* =========================
   DIFFERENCES (comparison)
========================= */
.diff{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.diff__col{
  padding: 26px 22px;
}

.diff__col--light{
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.88);
}

.diff__col--dark{
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
}

.diff__head{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diff__head--brand{
  color: rgba(255,255,255,.92);
}

.diff__mark{
  color: rgba(124,92,255,.95);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.diff__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.diff__item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
}

.diff__dot{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: 0 0 auto;
}

.diff__dot--sad{
  background: rgba(0,0,0,.07);
  color: rgba(0,0,0,.65);
}

.diff__dot--good{
  background: rgba(124,92,255,.16);
  border: 1px solid rgba(124,92,255,.35);
  color: rgba(255,255,255,.92);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1000px){
  .flow-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .service-grid{
    grid-template-columns: 1fr;
  }
  .diff{
    grid-template-columns: 1fr;
  }
  .flow-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   BENEFITS (reference style)
========================= */
.benefits{
  text-align: center;
}

.benefits__sub{
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.benefit-card{
  text-align: left;
  padding: 22px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

/* subtle gradient tint like reference */
.benefit-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(43,108,255,.14), transparent 55%),
    radial-gradient(540px 240px at 100% 100%, rgba(124,92,255,.14), transparent 55%);
  opacity: .9;
  pointer-events:none;
}

.benefit-card > *{
  position: relative;
  z-index: 1;
}

.benefit-card__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  margin-bottom: 12px;
}

.benefit-card__icon svg{
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,.88);
}

.benefit-card__title{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.benefit-card__text{
  margin: 0;
  color: rgba(255,255,255,.60);
  line-height: 1.7;
  font-size: 13.5px;
}

/* responsive */
@media (max-width: 960px){
  .benefits-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   ABOUT headline: inline images
========================= */

.about__inner{
  text-align: center;
}

.about__title{
  margin: 14px auto 0;
  max-width: 1100px;
  font-size: clamp(25px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about__sub{
  margin: 18px auto 0;
  max-width: 820px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.7;
}

/* shared badge style */
.about__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin: 0 .18em;
  transform: translateY(-0.06em); /* lift slightly like ref */
}

/* image badge */
.about__badge--img{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px;
}

.about__badge--img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 999px;
}

/* second badge looks more pill-like */
.about__badge--pill{
  width: 64px;
  height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
}

/* the three app icons group */
/* the three app icons group */
.about__apps{
  display: inline-flex;
  gap: 10px;
  vertical-align: middle;
  margin: 0 .22em;
  transform: translateY(-0.04em);
}

/* each icon tile = white rounded rectangle */
.about__app{
  width: 52px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about__app img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* responsive tweak: make icons smaller on phones */
@media (max-width: 520px){
  .about__badge--img{ width: 36px; height: 36px; }
  .about__badge--pill{ width: 56px; height: 30px; }
  .about__app{ width: 40px; height: 40px; border-radius: 12px; padding: 9px; }
}
/* White rounded pill behind the small inline badges */
.about__badge--img,
.about__badge--pill{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* keep boost round like a circle */
.about__badge--img{
  width: 44px;
  height: 44px;
  border-radius: 999px;   /* circle */
  padding: 9px;
}

/* keep 100x as pill */

.about__badge--pill{
  width: 68px;
  height: 36px;
  border-radius: 999px;  /* pill */
  padding: 8px 10px;
}
.about__badge--img img,
.about__badge--pill img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* =========================
   ABOUT: purple badges + filled icon tiles
========================= */

/* Use the same purple as your buttons */
:root{
  --accent: #6d5cff; /* if your button purple is different, change ONLY this */
}

/* Headline text control */
.about__title{
  /* Change these values anytime to resize without changing h tags */
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
}

/* Base inline badge positioning */
.about__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin: 0 .18em;
  transform: translateY(-0.06em);
}

/* 1) BOOST icon: purple circle */
.about__badge--img{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  padding: 10px;
}

.about__badge--img img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* keep logo proportions */
  display: block;
  filter: brightness(0) invert(1); /* makes dark logos white-ish; remove if you don't want */
}

/* 2) 100X pill: purple, text only */
.about__badge--pill{
  width: 74px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  padding: 0 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  font-size: 13px;
  line-height: 1;
}

/* optional extra alignment for the 100X text */
.about__badge--100x{
  transform: translateY(-0.08em);
}

/* 3) Social icons group */
.about__apps{
  display: inline-flex;
  gap: 10px;
  vertical-align: middle;
  margin: 0 .22em;
  transform: translateY(-0.04em);
}

/* Taller rounded-rectangle tiles, filled with image */
.about__app{
  width: 44px;      /* smaller width */
  height: 54px;     /* taller height */
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  overflow: hidden; /* important for image cover */
  display: inline-flex;
}

/* Fill with the image (cover) */
.about__app img{
  width: 100%;
  height: 100%;
  object-fit: cover;     /* THIS is the "fill" behavior */
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 520px){
  .about__badge--img{ width: 38px; height: 38px; padding: 9px; }
  .about__badge--pill{ width: 66px; height: 34px; font-size: 12px; }
  .about__app{ width: 38px; height: 48px; border-radius: 16px; }
}
.about__title{
  font-size: clamp(25px, 4.2vw, 45px) !important;
  line-height: 1.05;
}
/* Inline social icons image inside headline */
.about__social-inline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin: 0 .22em;
  transform: translateY(0.1em); /* adjust up/down if needed */
}

.about__social-inline img{
  height: 44px;         /* change this to resize the icons */
  width: auto;
  display: block;
}
.about__title{
  font-weight: 510;        /* try 700, 600, 500, 400 */
  letter-spacing: -0.03em; /* optional: make it feel less heavy */
  
}
/* FORCE About title size (put this at the very end of the file) */
#about .about__title{
  font-size: 30px !important;   /* change this number */
  line-height: 1.08 !important;
  font-weight: 600 !important;
}
.section__head--center{
  text-align: center;
}

.section__head--center .section__text{
  margin-left: auto;
  margin-right: auto;
}
/* Center only the section heading area (not the cards) */
.section-head{
  margin-bottom: 26px;
}

.section-head--center{
  text-align: center;
}

.section-head--center .section__text{
  margin-left: auto;
  margin-right: auto;
}

/* Center ONLY the heading area (pill + title + subtitle) */
.section-head{
  margin-bottom: 26px;
}

.section-head--center{
  text-align: center;
}

.section-head--center .section__pill{
  display: inline-flex; /* keeps the pill nicely centered */
}

.section-head--center .section__text,
.section-head--center .section__title{
  margin-left: auto;
  margin-right: auto;
}

.benefits__actions{
  margin-top: 28px;
  display: flex;
  justify-content: center; /* THIS fixes your issue */
  gap: 12px;
  flex-wrap: wrap;
}
.contact__actions{
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* PowerPoint-style reveal */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* optional stagger delays */
.reveal--delay-1{ transition-delay: .06s; }
.reveal--delay-2{ transition-delay: .12s; }
.reveal--delay-3{ transition-delay: .18s; }
.reveal--delay-4{ transition-delay: .24s; }

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-visible{
    transition: none;
    transform: none;
    opacity: 1;
  }
}
/* =========================
   REVEAL ANIMATIONS (generic)
========================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition:
    opacity .65s ease,
    transform .65s ease,
    filter .65s ease;
  will-change: transform, opacity;
}

.reveal.is-visible{
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Direction variants for cards */
.reveal-left{
  transform: translateX(-48px) translateY(10px);
}

.reveal-right{
  transform: translateX(48px) translateY(10px);
}

/* Stagger support (per element) */
.flow-card.reveal{
  transition-delay: var(--d, 0ms);
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* ===== Reveal (turn-by-turn from below) ===== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* If user prefers reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* ===== Reveal (fade up) animation ===== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  will-change: transform, opacity, filter;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* CTA buttons row (Schedule + Email) */
.cta__buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* optional: nudge the left button slightly left (like your doodle) */
.cta__buttons .btn--primary{
  transform: translateX(-10px);
}

/* mobile: stack buttons */
@media (max-width: 520px){
  .cta__buttons{
    flex-direction: column;
  }
  .cta__buttons .btn--primary{
    transform: none;
  }
}
/* =========================
   OUR DIFFERENCES (reference-like)
   Labels outside + tighter cards
========================= */

.diff-wrap{
  margin-top: 26px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.diff-col{
  display: flex;
  flex-direction: column;
  gap: 14px; /* space between label and card */
}

/* labels ABOVE cards (outside) */
.diff-col__label{
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.78);
}

.diff-col__label--brand{
  color: rgba(255,255,255,.92);
}

.diff-col__mark{
  color: var(--accent);
  margin-right: 10px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.diff-col__accent{
  color: var(--accent);
}

/* card shells */
.diff-panel{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}

.diff-panel__inner{
  padding: 22px 22px; /* tighter than before */
}

/* left is light card */
.diff-panel--light{
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.88);
}

/* right is dark card */
.diff-panel--dark{
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

/* make list spacing feel like reference */
.diff__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.diff__item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
}

/* dots (reuse your idea but tighten) */
.diff__dot{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: 0 0 auto;
}

.diff__dot--sad{
  background: rgba(0,0,0,.07);
  color: rgba(0,0,0,.65);
}

.diff__dot--good{
  background: rgba(124,92,255,.16);
  border: 1px solid rgba(124,92,255,.35);
  color: rgba(255,255,255,.92);
}

/* responsive */
@media (max-width: 900px){
  .diff-wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================
   OUR DIFFERENCES — NO GAP + TIGHTER WHITE AREA
   Paste at very end of CSS
========================= */

/* 1) remove the gap + make left a bit narrower (less empty white space) */
.diff-wrap{
  grid-template-columns: 0.9fr 1.1fr; /* tweak: 0.85/1.15 if you want even less white */
  gap: 0 !important;                 /* removes the space between the two boxes */
}

/* 2) make the two panels attach cleanly (no rounded inner edges) */
.diff-col:first-child .diff-panel{
  border-radius: 26px 0 0 26px !important; /* round only OUTER left corners */
  border-right: 0 !important;              /* avoid double border in the middle */
}

.diff-col:last-child .diff-panel{
  border-radius: 0 26px 26px 0 !important; /* round only OUTER right corners */
  border-left: 0 !important;               /* avoid double border in the middle */
}

/* 3) add a clean divider line in the middle (optional but looks like reference) */
.diff-col:last-child .diff-panel{
  position: relative;
}
.diff-col:last-child .diff-panel::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.08); /* middle separator */
}

/* 4) reduce inner padding to make white area feel less “empty” */
.diff-panel__inner{
  padding: 15px 15px !important; /* was 22px; tweak this */
}

/* (optional) slightly smaller gaps inside list */
.diff__list{ gap: 10px !important; }
/* ===== TEXT SIZES ===== */

/* "Others" + "Subtle Agency" headings above the cards */
.diff-col__label{
  font-size: 22px;      /* <-- heading size */
  font-weight: 700;
}

/* Big section headline: "While others follow trends..." */
.diff-title{
  font-size: 56px;      /* <-- main headline size */
  line-height: 1.05;
}

/* Each bullet row text (both white + black sides) */
.diff__item{
  font-size: 16px;      /* <-- bullet text size */
  line-height: 1.55;
}

/* Optional: the small text under bullet (if you have any p tags in items) */
.diff__item p{
  font-size: 14px;
}
/* =========================
   REVEAL (same fade-up style)
========================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   DESIGNS CAROUSEL (cafe-style)
========================= */
.section--designs .section-head--center{
  margin-bottom: 18px;
}

.carousel{
  position: relative;
  margin-top: 22px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.carousel__viewport{
  overflow: hidden;
  border-radius: 26px;
  position: relative;
}

/* subtle fade edges like the reference */
.carousel__viewport::before,
.carousel__viewport::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  z-index: 2;
  pointer-events:none;
}
.carousel__viewport::before{
  left:0;
  background: linear-gradient(90deg, rgba(7,9,13,1), rgba(7,9,13,0));
}
.carousel__viewport::after{
  right:0;
  background: linear-gradient(270deg, rgba(7,9,13,1), rgba(7,9,13,0));
}

.carousel__track{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 90px; /* space so edges fade looks good */
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.carousel__slide{
  flex: 0 0 auto;
  width: min(320px, 70vw);
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);

  transform: scale(.92);
  opacity: .35;
  filter: blur(1.2px);
  transition: transform .65s cubic-bezier(.2,.8,.2,1),
              opacity .65s ease,
              filter .65s ease;
}

.carousel__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* active card pop */
.carousel__slide.is-active{
  transform: scale(1.02);
  opacity: 1;
  filter: none;
}

/* Buttons */
.carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);

  color: rgba(255,255,255,.9);
  font-size: 26px;
  line-height: 1;

  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.carousel__btn:hover{
  background: rgba(0,0,0,.6);
  border-color: rgba(255,255,255,.20);
}
.carousel__btn:active{ transform: translateY(-50%) scale(.98); }

.carousel__btn--prev{ left: 18px; }
.carousel__btn--next{ right: 18px; }

@media (max-width: 520px){
  .carousel__track{ padding: 18px 64px; }
  .carousel__btn--prev{ left: 10px; }
  .carousel__btn--next{ right: 10px; }
}
/* Hero: client highlights row */
.hero-proof{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.hero-proof__label{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
}

.hero-proof__note{
  font-size: 13px;
  color: rgba(255,255,255,.60);
  white-space: nowrap;
}

.hero-proof__logos{
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof__logo{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease;
}

.hero-proof__logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-proof__logo:hover{
  transform: translateY(-2px);
  border-color: rgba(128,90,255,.45);
}

/* Your existing reveal-up animation (only add this if you don't already have it) */
.reveal-up{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--d, 0) * 120ms);
  will-change: opacity, transform;
}
.reveal-up.is-inview{
  opacity: 1;
  transform: translateY(0);
}
/* --- Client highlights strip --- */
:root{
  --trust-label-size: 14px;   /* "Client Highlights" size */
  --trust-note-size: 13px;    /* sentence below circles */
  --trust-avatar-size: 38px;  /* circle size */
  --trust-gap: 3px;          /* spacing between circles */
  --trust-top-gap: 21px;      /* space below the buttons */
  --trust-row-gap: 10px;      /* space between label/circles/note */
}

.trust-strip{
  margin-top: var(--trust-top-gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--trust-row-gap);
}

.trust-strip__label{
  font-size: var(--trust-label-size);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.trust-strip__avatars{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--trust-gap); /* ✅ reduces space between circles */
  flex-wrap: wrap;
}

.trust-strip__avatar{
  width: var(--trust-avatar-size);
  height: var(--trust-avatar-size);
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease;
}

.trust-strip__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-strip__avatar:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
}

.trust-strip__note{
  font-size: var(--trust-note-size);
  color: rgba(255,255,255,.6);
  margin: 0;
}
/* =========================
   METHOD SECTION (reference style)
========================= */
.section--method {
  position: relative;
  overflow: hidden;
}

.method {
  position: relative;
  padding-top: 16px;
}

.method__bg {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  pointer-events: none;
  user-select: none;

  /* Gradient text like the reference */
  background: linear-gradient(180deg, rgba(124,92,255,0.95), rgba(255,255,255,0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* soft fade */
  opacity: 0.9;
  filter: blur(0.2px);
}

.method__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.method-card {
  position: relative;
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(20,22,26,0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  overflow: hidden;
}

/* “mock UI” area inside card (like the reference screenshot block) */
.method-card__ui {
  height: 150px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: radial-gradient(120% 120% at 20% 10%, rgba(124,92,255,0.28), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0));
  margin-bottom: 14px;
}

.method-card__num {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.method-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.method-card__text {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.45;
}

/* FAQ (accordion) */
.faq-list{
  max-width: 980px;
  margin: 28px auto 0;
  display: grid;
  gap: 14px;
}

.faq-item{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-q{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.faq-q::-webkit-details-marker{ display:none; }

.faq-q:focus-visible{
  outline: 2px solid rgba(120,110,255,0.7);
  outline-offset: 3px;
  border-radius: 14px;
}

.faq-chevron{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.8;
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-item[open] .faq-chevron{
  transform: rotate(180deg);
  opacity: 1;
}

.faq-a{
  padding: 0 20px 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
/* Slow down the open/close feel */
.faq-chevron{
  transition: transform 420ms ease, opacity 420ms ease;
}

.faq-a{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-6px);
 transition: max-height 620ms cubic-bezier(.2,.8,.2,1),
            opacity 520ms cubic-bezier(.2,.8,.2,1),
            transform 520ms cubic-bezier(.2,.8,.2,1),
            padding 520ms cubic-bezier(.2,.8,.2,1);

}

/* When open */
.faq-item[open] .faq-a{
  max-height: 220px;              /* increase if your answers are longer */
  opacity: 1;
  transform: translateY(0);
  padding: 0 20px 18px;
}
/* Make the whole rectangle feel like it grows */
.faq-item {
  overflow: hidden;                 /* important for the reveal */
  will-change: height;
}

/* The answer reveal (text comes in softly) */
.faq-a {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 450ms ease, transform 450ms ease;
}

/* When open, reveal answer text */
.faq-item[open] .faq-a {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: slow, smooth chevron */
.faq-chevron {
  transition: transform 450ms ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

/* Respect accessibility */
@media (prefers-reduced-motion: reduce) {
  .faq-a, .faq-chevron { transition: none !important; }
  .faq-item { transition: none !important; }
}
/* ===== Soft gradient tint for service cards (reference-style) ===== */
.service-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;              /* keeps overlays inside the card */
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

/* gradient “ink” */
.service-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;

  /* two soft blobs + a tiny top sheen */
  background:
    radial-gradient(120% 80% at 15% 20%, rgba(120, 160, 255, .28) 0%, rgba(120,160,255,0) 55%),
    radial-gradient(120% 90% at 85% 85%, rgba(120, 80, 255, .20) 0%, rgba(120, 80,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 55%);

  filter: blur(18px);
  opacity: .80;                   /* <-- MAIN “strength” control */
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}

/* keep text above overlay */
.service-card > *{
  position: relative;
  z-index: 1;
}

/* optional: a tiny lift on hover */
.service-card:hover::before{
  opacity: .75;
  transform: translateY(0);
}
/* Make the top area a single clean video frame */
.flow-card__top{
  position: relative;
  height: 190px;          /* adjust if you want taller/shorter */
  border-radius: 18px;
  overflow: hidden;

  /* remove the extra “inner card” look */
  background: transparent;
  border: 0;
  padding: 0;
}

/* Video fills the frame */
.flow-card__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep your icon on top of the video */
.flow-card__icon{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
/* =========================
   HOW IT WORKS (workflow)
   ========================= */

.how-it-works {
  position: relative;
  overflow: hidden;
}

.hiw__head {
  margin-bottom: 2rem;
}

.hiw__title {
  margin: 0.5rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hiw__stage {
  position: relative;
  padding: 0.5rem 0 1rem;
}

/* Big background letter */
.hiw__mark {
  position: absolute;
  left: -4rem;
  top: -2.5rem;
  font-size: clamp(16rem, 28vw, 28rem);
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
  -webkit-background-clip: text;
  background-clip: text;
}

.hiw__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: start;
  padding-top: 1.5rem;
}

/* Zig-zag offsets to mimic the reference */
.hiw__step[data-step="1"] { margin-top: 2.2rem; }
.hiw__step[data-step="2"] { margin-top: 3.4rem; }
.hiw__step[data-step="3"] { margin-top: 2.6rem; }
.hiw__step[data-step="4"] { margin-top: 3.1rem; }

/* Dotted line behind */
.hiw__path {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.25rem;
  width: 100%;
  height: 180px;
  z-index: 0;
  opacity: 0.9;
}

.hiw__path-line {
  fill: none;
  stroke: rgba(255,255,255,0.28);
  stroke-width: 2;
  stroke-dasharray: 6 7;
}

.hiw__path-dot {
  fill: var(--accent, #6c63ff);
  stroke: rgba(0,0,0,0.35);
  stroke-width: 2;
}

/* Each step */
.hiw__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 84px 1fr;
  column-gap: 14px;
  align-items: start;
  padding-top: 1.2rem;
}

.hiw__step-label {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.hiw__num {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.9;
  color: rgba(255,255,255,0.95);
}

.hiw__right {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 0.5rem;
}

.hiw__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.hiw__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent, #6c63ff);
}

.hiw__text {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 18ch;
}

/* Responsive: collapse and simplify path */
@media (max-width: 980px) {
  .hiw__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 1rem;
  }
  .hiw__path { display: none; }

  .hiw__step[data-step="1"],
  .hiw__step[data-step="2"],
  .hiw__step[data-step="3"],
  .hiw__step[data-step="4"] {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .hiw__steps {
    grid-template-columns: 1fr;
  }
  .hiw__text { max-width: 42ch; }
}
.reveal {
  transition-delay: var(--d, 0ms) !important;
}
.flow-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}

@media (max-width: 1000px){
  .flow-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px){
  .flow-grid{ grid-template-columns:1fr; }
}

.flow-card{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:22px;
  padding:18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  overflow:hidden;
}

.flow-card__top{
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.25);
  padding:12px;
  height:168px;
  overflow:hidden;
  margin-bottom:14px;
}

.flow-card__mock{
  position:absolute;
  inset:12px;
  border-radius:16px;
  background:
    radial-gradient(900px 260px at 20% 15%, rgba(98, 88, 255, .28), transparent 60%),
    radial-gradient(700px 240px at 80% 85%, rgba(124, 58, 237, .22), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  filter:saturate(1.05);
}

.flow-card__icon{
  position:absolute;
  top:12px;
  left:12px;
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(120, 90, 255, .16);
  border:1px solid rgba(120, 90, 255, .22);
  z-index:2;
}

.flow-card__icon svg{
  width:18px;
  height:18px;
  fill:#ffffff;
  opacity:.95;
}

.flow-card__title{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.2;
  color:#fff;
}

.flow-card__text{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.70);
}
.flow-card__top{
  position:relative;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.25);
  padding:12px;
  height:168px;
  overflow:hidden;
  margin-bottom:14px;
}

/* ✅ the image itself */
.flow-card__media{
  position:absolute;
  inset:12px;              /* creates that inner “rectangle” */
  width:calc(100% - 24px);
  height:calc(100% - 24px);
  border-radius:16px;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);   /* tiny zoom looks premium */
}

/* ✅ subtle overlay so images match your dark theme */
.flow-card__top::after{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:16px;
  pointer-events:none;
  background:
    radial-gradient(800px 260px at 20% 15%, rgba(98, 88, 255, .22), transparent 60%),
    radial-gradient(700px 240px at 80% 85%, rgba(124, 58, 237, .18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
}
.cta__actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.cta__note{
  width:100%;
  text-align:center;
  margin-top:8px;
  opacity:.75;
}
.cta__actions{
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cta__actions .btn{
  width: auto;          /* prevents full-width buttons */
  white-space: nowrap;  /* keeps “Schedule a Quick Call” in one line */
}

.cta__note{
  grid-column: 1 / -1;  /* note goes under both buttons */
  text-align: center;
  margin-top: 6px;
  opacity: .75;
}
.footer-dropdown{
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.footer-dropdown__trigger{
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .85;
}

.footer-dropdown__trigger:hover{
  opacity: 1;
}

.footer-dropdown__menu{
  position: absolute;
  left: 0;
  top: 100%;   
  margin-top: 10px;
  min-width: 260px;

  background: rgba(20, 20, 25, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px;

  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 20;
}

.footer-dropdown__menu a{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-size: 14px;
}

.footer-dropdown__menu a:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
}

/* Desktop hover open */
@media (hover:hover){
  .footer-dropdown:hover .footer-dropdown__menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Open state (for mobile tap) */
.footer-dropdown.is-open .footer-dropdown__menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover:hover){
  .footer-dropdown:hover .footer-dropdown__menu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.footer-dropdown__menu{
  user-select: text;
}
.footer{
  --footer-book-size: 14px; /* change this anytime */
}

.footer-dropdown__trigger{
  font-size: var(--footer-book-size);
  line-height: 1.2;
}
.footer-dropdown__menu{ margin-top: 0; }
/* replace the "|||" with a logo badge */
.diff-col__mark--logo{
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(120, 92, 255, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.28);
  padding: 5px;
}

.diff-col__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* ================================
   PROCESS CARDS — CLEAN VERSION
   (removes purple, icons, inner frame)
================================ */

/* 1) remove the corner icon completely */
.flow-card__icon {
  display: none !important;
}

/* 2) remove the "inner rectangle/frame" look */
.flow-card__top {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 16px;
  overflow: hidden;
}

/* in case your old CSS draws inner frames with pseudo-elements */
.flow-card__top::before,
.flow-card__top::after {
  content: none !important;
  display: none !important;
}

/* 3) make your video/image fill the whole top area without borders */
.flow-card__video,
.flow-card__top img,
.flow-card__top video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* 4) remove purple tint filters if any */
.flow-card__video {
  filter: none !important;
}

/* 5) tint the WHOLE card like your Services cards (subtle, not purple) */
.flow-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* subtle “tint” like the doodle area (bluish/neutral) */
.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 260px at 20% 110%, rgba(70, 130, 255, 0.16), transparent 60%),
    radial-gradient(900px 260px at 80% 110%, rgba(140, 120, 255, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  opacity: 1;
}

/* keep real content above the tint layer */
.flow-card > * {
  position: relative;
  z-index: 1;
}
/* ===== Long Form Videos section ===== */
.section--videos .video-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

@media (max-width: 900px){
  .section--videos .video-grid{
    grid-template-columns: 1fr;
  }
}

.section--videos .video-card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);

  transition: transform 260ms ease, border-color 260ms ease;
}

.section--videos .video-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
}

/* subtle "glass" highlight (NO purple tint) */
.section--videos .video-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(120% 120% at 80% 90%, rgba(255,255,255,0.06), transparent 55%);
}

/* keeps every embed same size */
.section--videos .video-embed{
  aspect-ratio: 16 / 9;
  width: 100%;
}

.section--videos iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Shorts (2 vertical videos like the reference) */
.shorts-grid{
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}

.shorts-card{
  width: min(360px, 44vw);
}

.shorts-card__frame{
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease;
}

.shorts-card__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.shorts-card:hover .shorts-card__frame{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
}

@media (max-width: 860px){
  .shorts-grid{ gap: 24px; }
  .shorts-card{ width: min(340px, 86vw); }
}
/* ===== Process workflow (2x2) ===== */
.workflow{
  --wf-link-w: 70px;
  --wf-line: rgba(255,255,255,.18);
  --wf-accent: rgba(170, 180, 255, .9); /* change to rgba(255,255,255,.75) if you want no color */
  margin-top: 36px;
}

.workflow__row,
.workflow__mid{
  display: grid;
  grid-template-columns: 1fr var(--wf-link-w) 1fr;
  gap: 26px;
  align-items: stretch;
}

.workflow__mid{ margin: 14px 0; }

/* Cards */
.wf-card{
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
}

.wf-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 120px at 30% 0%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(500px 160px at 70% 100%, rgba(170,180,255,.08), transparent 65%);
  pointer-events:none;
}

.wf-card__badge{
  flex: 0 0 66px;
  height: 66px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.wf-card__body{ position: relative; z-index: 1; }
.wf-card__kicker{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}

.wf-card__title{
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}

/* Connectors */
.wf-link{
  position: relative;
  pointer-events: none;
}

.wf-link--h::before{
  content:"";
  position:absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 2px dashed var(--wf-line);
}

.wf-link--h::after{
  content:"";
  position:absolute;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--wf-accent);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(170,180,255,.12), 0 0 28px rgba(170,180,255,.22);
}

.wf-link--v{
  height: 56px;
}

.wf-link--v::before{
  content:"";
  position:absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px dashed var(--wf-line);
}

.wf-link--v::after{
  content:"";
  position:absolute;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--wf-accent);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(170,180,255,.12), 0 0 28px rgba(170,180,255,.22);
}

/* Mobile: stack, hide connectors */
@media (max-width: 900px){
  .workflow__row{ grid-template-columns: 1fr; }
  .workflow__mid{ display: none; }
  .wf-link{ display: none; }
  .wf-card{ padding: 18px 18px; }
  .wf-card__badge{ width: 58px; height: 58px; border-radius: 16px; font-size: 30px; }
}
/* =========================
   PROCESS (NEW GRID STYLE)
   ========================= */

.section--workflow {
  /* Change this RGB to match your exact green tint */
  --workflow-tint: 70, 220, 185;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; /* <-- reduce this to tighten spacing */
  margin-top: 34px;
}

.workflow-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(700px 240px at 18% 120%, rgba(var(--workflow-tint), 0.14), transparent 55%),
    radial-gradient(700px 240px at 85% 120%, rgba(var(--workflow-tint), 0.10), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.workflow-card__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px; /* <-- reduce for tighter cards */
  min-height: 120px;
}

.workflow-step {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: grid;
  place-content: center;
  gap: 4px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    inset 0 0 0 1px rgba(var(--workflow-tint), 0.14),
    0 10px 26px rgba(0,0,0,0.35);
}

.workflow-step__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  line-height: 1;
  text-align: center;
}

.workflow-step__num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.workflow-copy__big {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.workflow-copy__small {
  font-size: 16px;
  opacity: 0.80;
  line-height: 1.35;
  margin: 4px 0 0;
}

/* Responsive */
@media (max-width: 900px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .workflow-card__inner {
    padding: 22px 20px;
  }
  .workflow-step {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }
  .workflow-step__num {
    font-size: 30px;
  }
}
/* =========================================
   PROCESS — MAKE IT MATCH SERVICES CARDS
   Paste BELOW your current workflow CSS
   ========================================= */

.workflow-grid{
  gap: 24px;              /* match spacing vibe */
  margin-top: 28px;
}

/* Main card surface: same "glass + purple glow at bottom" look */
.workflow-card{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 280px at 50% 120%, rgba(120, 90, 255, .22), transparent 62%),
    radial-gradient(700px 260px at 15% 120%, rgba(120, 90, 255, .12), transparent 60%),
    rgba(255,255,255,.03);
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Inner spacing like Services cards */
.workflow-card__inner{
  padding: 28px 30px;
  min-height: 128px;
  gap: 18px;
}

/* Step badge: keep it subtle + consistent */
.workflow-step{
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 0 0 1px rgba(120, 90, 255, .10),
    0 10px 28px rgba(0,0,0,.45);
}

.workflow-step__label{
  opacity: .60;
}

.workflow-copy__big{
  font-size: 20px;
}

.workflow-copy__small{
  opacity: .80;
}

/* Mobile spacing */
@media (max-width: 900px){
  .workflow-grid{ gap: 16px; }
  .workflow-card__inner{ padding: 22px 20px; }
}
/* =========================================
   FORCE PROCESS CARDS TO MATCH .service-card
   Paste BELOW your current workflow CSS
   ========================================= */

.workflow-card{
  /* match service-card exactly */
  padding: 26px 24px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.04) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  min-height: 170px !important;

  /* remove the “extra look” that causes mismatch */
  box-shadow: none !important;
  filter: none !important;
  overflow: hidden; /* keeps it clean if you had overlays */
  position: relative;
}

/* If your process card has pseudo-element glow/overlay, kill it */
.workflow-card::before,
.workflow-card::after{
  content: none !important;
}

/* If your HTML has an inner wrapper that adds extra padding/background */
.workflow-card__inner,
.workflow-card__content{
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Make the grid spacing feel like Services */
.workflow-grid{
  gap: 24px !important;           /* reduce/increase this */
  margin-top: 28px !important;
}
/* =========================
   PROCESS (matches Services)
   ========================= */

.process-grid{
  /* change this to tighten/loosen spacing */
  --process-gap: 22px;

  /* change this to control the tint inside cards */
  /* purple: rgba(124, 92, 255, .22) */
  /* greenish: rgba(70, 220, 190, .18) */
  --process-tint: rgba(70, 220, 190, .18);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--process-gap);
  margin-top: 32px;
}

@media (max-width: 900px){
  .process-grid{ grid-template-columns: 1fr; }
}

.process-card{
  position: relative;
  padding: 26px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  min-height: 140px;

  display: flex;
  align-items: center;
  gap: 18px;

  overflow: hidden; /* keeps the tint inside */
}

/* soft “tint” glow like your Services cards */
.process-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(900px 380px at 18% 105%, var(--process-tint), transparent 55%),
    radial-gradient(700px 260px at 85% -10%, rgba(255,255,255,.06), transparent 55%);
  pointer-events: none;
}

/* optional hover (subtle, premium) */
.process-card:hover{
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.process-badge{
  position: relative;
  z-index: 1;

  width: 76px;
  height: 76px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.process-badge__step{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  line-height: 1;
}

.process-badge__num{
  font-size: 26px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1;
}

.process-copy{
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.process-title{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.92);
}

.process-text{
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 14px;
  line-height: 1.7;
}
.process-card{
  position: relative;
  overflow: hidden;
  isolation: isolate;   /* same trick as services */
  padding: 26px 28px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  min-height: 140px;

  display: flex;
  align-items: center;
  gap: 18px;
}

/* gradient “ink” — copied from .service-card  */
.process-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(120% 80% at 15% 20%, rgba(120, 160, 255, .28) 0%, rgba(120,160,255,0) 55%),
    radial-gradient(120% 90% at 85% 85%, rgba(120, 80, 255, .20) 0%, rgba(120, 80,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0) 55%);

  filter: blur(18px);
  opacity: .80;           /* strength control */
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}

/* make sure text stays above the overlay */
.process-badge,
.process-copy{
  position: relative;
  z-index: 1;
}
.hero__title { margin: 0; line-height: 1.05; }

.hero__line { display: block; }

.hero__line--primary{
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__line--secondary{
  font-size: clamp(1.6rem, 3.0vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  opacity: 0.92; /* optional */
  margin-top: 0.15em;
}

.hero__line--tertiary{
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 500;
  opacity: 0.8; /* optional */
  margin-top: 0.2em;
}
