/* ===========================================================
   Be Me Space — Landing page
   Vibrant & playful theme
   =========================================================== */

/* -------- 1. Tokens -------- */
:root {
  --pink:   #FF3D7F;
  --pink-2: #FF6FA3;
  --violet: #6B4BFF;
  --violet-2:#8E73FF;
  --lime:   #D9FF3D;
  --orange: #FF7A4D;
  --cyan:   #4DE0FF;

  --ink:    #14101F;
  --ink-2:  #2A1F40;
  --muted:  #6E6582;
  --cream:  #FFF8F0;
  --cream-2:#FBEFE0;
  --line:   rgba(20,16,31,.10);

  --grad-hero: radial-gradient(60% 50% at 90% 0%, rgba(255,61,127,.18) 0%, transparent 60%),
               radial-gradient(50% 60% at 0% 30%, rgba(107,75,255,.18) 0%, transparent 60%),
               radial-gradient(60% 50% at 50% 100%, rgba(217,255,61,.22) 0%, transparent 60%);
  --grad-cta: linear-gradient(135deg, #6B4BFF 0%, #FF3D7F 55%, #FF7A4D 100%);

  --radius:   18px;
  --radius-lg:28px;
  --radius-xl:36px;

  --shadow-1: 0 8px 30px rgba(20,16,31,.08);
  --shadow-2: 0 20px 60px rgba(20,16,31,.14);

  --container: 1200px;
  --space:     clamp(80px, 10vw, 140px);

  --font-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

/* -------- 2. Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
p { margin: 0; }

::selection { background: var(--lime); color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* -------- 3. Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 26px; font-size: 16px; }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 6px 0 0 var(--pink), var(--shadow-1);
}
.btn--primary:hover { transform: translate(0, -2px); box-shadow: 0 10px 0 0 var(--pink), var(--shadow-2); }
.btn--primary:active { transform: translate(0, 2px); box-shadow: 0 2px 0 0 var(--pink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translate(0, -2px); }

.btn--white {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 6px 0 0 var(--ink-2), var(--shadow-1);
}
.btn--white:hover { transform: translate(0, -2px); box-shadow: 0 10px 0 0 var(--ink-2), var(--shadow-2); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,248,240,.5);
}
.btn--ghost-light:hover { background: rgba(255,248,240,.12); border-color: var(--cream); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* -------- 4. Navbar -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,248,240,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand__logo {
  display: block;
  height: 36px;
  width: auto;
  transition: transform .3s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(-2deg) scale(1.04); }

/* Light variant for use on dark backgrounds (e.g. footer) */
.brand--light .brand__logo {
  filter: brightness(0) invert(1);   /* turns black SVG into pure white */
  height: 44px;
}

/* legacy text-brand pieces — keep selectors for backward-compatible markup */
.brand__dot {
  width: 14px; height: 14px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: -6px 0 0 0 var(--violet), 6px 0 0 0 var(--lime);
}
.brand__name-accent { color: var(--pink); }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a { position: relative; padding: 8px 0; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { display: none; }
@media (min-width: 720px) { .nav__cta { display: inline-flex; } }

.lang-toggle {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
  position: relative;
  background: var(--cream);
}
.lang-toggle__pill {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 80px;
}
.lang-toggle__pill::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .3s var(--ease);
  transform: translateX(100%);
}
.lang-toggle__pill[data-active="en"]::before { transform: translateX(0); }
.lang-opt {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 6px 0;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.lang-toggle__pill[data-active="en"] .lang-opt[data-lang="en"],
.lang-toggle__pill[data-active="id"] .lang-opt[data-lang="id"] {
  color: var(--cream);
}

.nav__burger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 17px; }
.nav__burger span:nth-child(3) { top: 23px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-1);
  }
  .nav__links a { font-size: 18px; padding: 10px 0; }
  .nav__links.is-open { transform: translateY(0); }
  .nav__burger { display: block; }
}

/* -------- 5. Hero -------- */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(80px, 10vw, 120px);
  background: var(--grad-hero), var(--cream);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  pointer-events: none;
  animation: floaty 14s ease-in-out infinite;
}
.hero__blob--1 { width: 380px; height: 380px; background: var(--pink); top: -80px; right: -60px; }
.hero__blob--2 { width: 340px; height: 340px; background: var(--violet); bottom: -60px; left: -100px; animation-delay: -5s; }
.hero__blob--3 { width: 240px; height: 240px; background: var(--lime); top: 40%; left: 35%; animation-delay: -9s; opacity:.4; }

@keyframes floaty {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,-30px) scale(1.06); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-2);
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity:.5; transform: scale(1.3); } }

.hero__title {
  font-size: clamp(54px, 9vw, 116px);
  letter-spacing: -.04em;
  font-weight: 800;
  line-height: .96;
  margin-bottom: 28px;
}
.hero__title-row { display: block; }
.hero__title-italic {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title-italic--alt {
  background: linear-gradient(135deg, var(--violet) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 540px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.stat__label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Hero visual: photo stack */
.hero__visual {
  position: relative;
  height: clamp(440px, 52vw, 560px);
}
.photo-stack { position: relative; height: 100%; }

.photo-stack__card {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.photo-stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.photo-stack__card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.01em;
}
.photo-stack__card:hover { transform: translateY(-6px) rotate(0deg) !important; }
.photo-stack__card:hover img { transform: scale(1.05); }

.photo-stack__card--1 {
  width: 240px; height: 300px;
  top: 10px; left: 0;
  transform: rotate(-6deg);
  z-index: 2;
}
.photo-stack__card--2 {
  width: 280px; height: 340px;
  top: 60px; right: 0;
  transform: rotate(5deg);
  z-index: 3;
}
.photo-stack__card--3 {
  width: 220px; height: 220px;
  bottom: 0; left: 60px;
  transform: rotate(-4deg);
  z-index: 1;
}

.sticker {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  animation: spin 18s linear infinite;
}
.sticker--1 {
  width: 92px; height: 92px;
  background: var(--lime);
  top: -16px; right: -20px;
  z-index: 4;
}
.sticker--2 {
  width: 86px; height: 86px;
  background: var(--pink);
  color: var(--cream);
  bottom: 30px; right: -10px;
  animation-direction: reverse;
  z-index: 4;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 920px) {
  .hero__visual { display: none; }
}

/* -------- 6. Marquee -------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-block: 2px solid var(--ink);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -.02em;
}
.marquee__track span:nth-child(odd)  { color: var(--lime); }
.marquee__track span:nth-child(even) { color: var(--cream); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- 7. Sections -------- */
.section { padding: var(--space) 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.section-eyebrow--inverse { color: var(--lime); }

.section-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  max-width: 14ch;
}
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 16px;
}
.section-head { margin-bottom: 56px; max-width: 900px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .section-title { max-width: 22ch; margin-inline: auto; }

/* About */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .about__inner { grid-template-columns: 1fr; } }
.about__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-2);
}

/* Expertise grid */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.exp-card { grid-column: span 3; }
.exp-card--wide { grid-column: span 6; }

@media (max-width: 880px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card, .exp-card--wide { grid-column: span 1; }
}

.exp-card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.exp-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.exp-card--wide .exp-card__media { aspect-ratio: 21 / 8; }
.exp-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.exp-card:hover .exp-card__media img { transform: scale(1.06); }
.exp-card__num {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}
.exp-card__body { padding: 28px; }
.exp-card__body h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.exp-card__body p { color: var(--ink-2); margin-bottom: 16px; }
.exp-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.exp-card__tags li {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(20,16,31,.06);
  color: var(--ink-2);
}

.exp-card--pink   { background: linear-gradient(180deg, #FFE4EE 0%, var(--cream) 60%); }
.exp-card--violet { background: linear-gradient(180deg, #E5DEFF 0%, var(--cream) 60%); }
.exp-card--lime   { background: linear-gradient(180deg, #F1FFC2 0%, var(--cream) 60%); }
.exp-card--orange { background: linear-gradient(180deg, #FFE0D0 0%, var(--cream) 60%); }
.exp-card--cyan   { background: linear-gradient(180deg, #D5F6FF 0%, var(--cream) 60%); }

/* Process */
.process { background: var(--cream-2); border-block: 2px solid var(--ink); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 6px 6px 0 0 var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.process-step:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 0 var(--ink); }
.process-step:nth-child(1) { background: linear-gradient(180deg, #FFE4EE 0%, var(--cream) 80%); }
.process-step:nth-child(2) { background: linear-gradient(180deg, #E5DEFF 0%, var(--cream) 80%); }
.process-step:nth-child(3) { background: linear-gradient(180deg, #F1FFC2 0%, var(--cream) 80%); }

.process-step__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 10px;
}
.process-step p { color: var(--ink-2); }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 2px solid var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.why-card:hover { background: var(--ink); color: var(--cream); transform: translateY(-4px); }
.why-card:hover p { color: rgba(255,248,240,.8); }
.why-card:hover .why-card__icon { color: var(--lime); }
.why-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 18px;
  transition: background .3s var(--ease), color .3s var(--ease);
  font-family: var(--font-display);
}
.why-card h3 { font-size: 20px; margin-bottom: 8px; }
.why-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

/* CTA banner */
.cta-banner {
  position: relative;
  background: var(--grad-cta);
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
  overflow: hidden;
  border-block: 2px solid var(--ink);
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.floaty {
  position: absolute;
  font-size: clamp(40px, 6vw, 72px);
  color: rgba(255,248,240,.18);
  font-family: var(--font-display);
  animation: floaty 9s ease-in-out infinite;
}
.floaty--1 { top: 10%; left: 8%; animation-delay: 0s; }
.floaty--2 { top: 70%; left: 15%; animation-delay: -2s; }
.floaty--3 { top: 18%; right: 12%; animation-delay: -4s; }
.floaty--4 { bottom: 10%; right: 8%; animation-delay: -6s; }

.cta-banner__title {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -.03em;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-banner__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--lime);
}
.cta-banner__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  opacity: .92;
  max-width: 56ch;
  margin: 0 auto 36px;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.cta-banner__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  font-size: 14.5px;
}
.cta-banner__contacts a { display: inline-flex; align-items: center; gap: 8px; opacity: .92; }
.cta-banner__contacts a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.cta-banner__contacts .dot { color: var(--lime); font-size: 10px; }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr; } }

.footer .brand__name-accent { color: var(--lime); }
.footer__brand p { color: rgba(255,248,240,.65); margin-top: 16px; max-width: 38ch; }

.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14.5px;
  padding: 6px 0;
  color: rgba(255,248,240,.78);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--cream); }

.footer__base {
  border-top: 1px solid rgba(255,248,240,.12);
  padding: 22px 24px;
  margin: 0 -24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,248,240,.55);
}
.footer__base { padding-inline: 0; }
.footer__inner + .footer__base {
  /* keep within container */
}
.footer .container { max-width: var(--container); }
.footer__base { max-width: var(--container); margin: 0 auto; padding: 22px 24px; }
.footer__tagline { color: var(--lime); }

/* Floating WhatsApp */
.fab-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.15);
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fab-wa svg { width: 22px; height: 22px; }
.fab-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(37,211,102,.55), 0 6px 16px rgba(0,0,0,.18); }
.fab-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,.6);
  animation: ripple 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes ripple {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 540px) {
  .fab-wa__label { display: none; }
  .fab-wa { padding: 14px; }
}

/* -------- 8. Reveal animation -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- 9. Client logo carousel -------- */
.client { padding-bottom: clamp(48px, 6vw, 80px); }
.client .section-head { margin-bottom: 40px; }

.logo-marquee {
  position: relative;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0;
  border-block: 2px solid var(--ink);
  background: var(--cream-2);
  overflow: hidden;
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0;  background: linear-gradient(90deg, var(--cream-2), transparent); }
.logo-marquee::after  { right: 0; background: linear-gradient(270deg, var(--cream-2), transparent); }

.logo-track {
  display: flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
}
.logo-track--ltr { animation: logo-scroll-l 36s linear infinite; }
.logo-track--rtl { animation: logo-scroll-r 42s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }

@keyframes logo-scroll-l {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes logo-scroll-r {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 22px;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.01em;
  opacity: .82;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  flex-shrink: 0;
}
.logo:hover { opacity: 1; transform: translateY(-2px); }

/* logo style variants — make each look like a distinct brand mark */
.logo--serif {
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
}
.logo--serif em { font-style: normal; color: var(--pink); margin: 0 4px; font-size: 20px; }

.logo--mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  height: auto;
}

.logo--script {
  font-family: "Bricolage Grotesque", cursive;
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  color: var(--violet);
  letter-spacing: -.04em;
}

.logo--block {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.logo--circle { font-weight: 700; font-size: 22px; letter-spacing: -.01em; }
.logo--circle i {
  display: inline-block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  margin-right: 4px;
}

.logo--stack {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-align: left;
  padding: 6px 14px;
  border-left: 3px solid var(--pink);
}
.logo--stack b { font-size: 22px; letter-spacing: -.01em; text-transform: none; }

.logo--bold {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.04em;
  color: var(--ink);
}

.logo--dot { font-weight: 700; font-size: 22px; letter-spacing: -.01em; }
.logo--dot i {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
  margin: 0 2px;
}

@media (max-width: 720px) {
  .logo-track { gap: 36px; }
  .logo { height: 50px; padding: 0 14px; }
  .logo--script { font-size: 26px; }
  .logo--bold { font-size: 22px; }
  .logo--serif { font-size: 22px; }
}

/* -------- 10. FAQ accordion -------- */
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .faq__inner { grid-template-columns: 1fr; } }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq-item[open] { box-shadow: 6px 6px 0 0 var(--ink); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: -.01em;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-item__chev {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item[open] .faq-item__chev {
  transform: rotate(45deg);
  background: var(--pink);
  color: var(--cream);
}

.faq-item__body {
  padding: 0 24px 22px 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
  border-top: 1px dashed var(--line);
}
.faq-item__body p { padding-top: 16px; }

/* -------- 11. Carousel (used inside portfolio cards) -------- */
.carousel { position: absolute; inset: 0; }
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease);
  pointer-events: none;
}
.carousel-slide[data-active="true"] {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.exp-card:hover .carousel-slide[data-active="true"] img { transform: scale(1.06); }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  background: rgba(20,16,31,.55);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease), width .3s var(--ease);
}
.carousel-dot:hover { background: rgba(255,255,255,.75); }
.carousel-dot.is-active {
  background: var(--lime);
  width: 22px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .carousel-slide { transition: none; }
}
