/* Beenem landing — site styles, reads tokens from colors_and_type.css */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
button, a { color: inherit; }

/* ===== Animated atmospheric background ===== */
.bg-atmosphere {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-atmosphere__blob {
  position: absolute; border-radius: 50%; filter: blur(110px); will-change: transform;
}
.bg-atmosphere__blob--a {
  width: 720px; height: 720px;
  top: -200px; left: -160px;
  background: radial-gradient(circle, rgba(161,0,242,0.34) 0%, rgba(161,0,242,0.08) 40%, transparent 70%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.bg-atmosphere__blob--b {
  width: 600px; height: 600px;
  bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(108,0,125,0.28) 0%, rgba(108,0,125,0.06) 50%, transparent 75%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.bg-atmosphere__blob--c {
  width: 500px; height: 500px;
  top: 38%; left: 35%;
  background: radial-gradient(circle, rgba(161,0,242,0.18) 0%, rgba(161,0,242,0.04) 50%, transparent 75%);
  animation: drift-c 40s ease-in-out infinite alternate;
}
@keyframes drift-a { from { transform: translate3d(0,0,0); } to { transform: translate3d(120px, 60px, 0); } }
@keyframes drift-b { from { transform: translate3d(0,0,0); } to { transform: translate3d(-100px, -80px, 0); } }
@keyframes drift-c { from { transform: translate3d(-60px,0,0); } to { transform: translate3d(80px, 40px, 0); } }

.bg-atmosphere__grain {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.bg-atmosphere__lines {
  position: absolute; inset: 0; opacity: 0.75;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 120px 100%;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* main is positioned above the bg */
main, nav.nav, footer.footer { position: relative; z-index: 1; }

/* ===== Focus states ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--pill {
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 999px;
  border-color: var(--accent);
  color: var(--fg);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.btn--pill:hover { background: var(--accent); color: #fff; transform: scale(1.02); }
.btn--primary {
  font-size: 16px;
  font-weight: 700;
  padding: 20px 36px;
  border-radius: 4px;
  background: var(--cta);
  color: #080808;
  letter-spacing: -0.01em;
}
.btn--primary:hover { transform: scale(1.02); background: #CAFF00; color: #080808; box-shadow: 0 14px 44px -16px rgba(174,234,0,0.40); }
.btn--ghost {
  font-size: 14px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: 4px;
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--lg { padding: 24px 44px; font-size: 17px; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-7);
  transition: backdrop-filter var(--dur-slow) var(--ease), background var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8,0,13,0.92);
  border-bottom-color: var(--accent-line);
}
.nav__brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav__logo { height: 30px; width: auto; display: block; }
.nav__links { display: flex; gap: var(--space-7); }
.nav__links a {
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); text-decoration: none;
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--fg); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* Nav mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: relative;
}
.nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
  border-radius: 1px;
}
.nav__hamburger--open .nav__hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger--open .nav__hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger--open .nav__hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 0, 13, 0.97);
  z-index: 150;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  animation: overlay-in 0.22s var(--ease);
}
@keyframes overlay-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__mobile-links {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-6); text-align: center;
}
.nav__mobile-links a {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 8vw, 38px); letter-spacing: -0.03em;
  color: var(--fg); text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.nav__mobile-links a:hover { color: var(--accent); }
.nav__mobile-links .btn--primary { margin-top: var(--space-3); font-size: 15px; padding: 16px 32px; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px var(--space-7) var(--space-9);
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,0,13,0.6) 0%, rgba(8,0,13,0) 14%, rgba(8,0,13,0) 74%, rgba(8,0,13,0.95) 100%);
  pointer-events: none;
  z-index: 1;
}
/* hero founders photo — right half only */
.hero__bg-photo {
  position: absolute;
  top: 0; right: 0;
  width: 58%; height: 100%;
  background-image: url("assets/foto-fundadores.jpg");
  background-size: cover;
  background-position: center center;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 15%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 15%, black 35%);
}
.hero__bg-text, .hero__inner { position: relative; z-index: 2; }
.hero__inner {
  position: relative; max-width: var(--container); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-8); align-items: center;
}
.hero__bg-text {
  position: absolute; right: -3vw; bottom: -2vw;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(220px, 26vw, 420px); line-height: 0.8; letter-spacing: -0.06em;
  color: rgba(161,0,242,0.06); pointer-events: none; user-select: none;
  white-space: nowrap; will-change: transform;
}
.hero__copy { display: flex; flex-direction: column; gap: var(--space-5); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; color: #fff;
}
.hero__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: #fff;
}
.hero__headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5.2vw, 80px); line-height: 1.05; letter-spacing: -0.03em;
  margin: 0; color: var(--fg);
}
.hero__headline em { color: var(--cta); font-style: normal; }
.hero__headline-intro {
  font-size: 0.52em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 0.15em;
}
.hero__sub {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--fg-muted);
  max-width: 480px; margin: 0;
}
.hero__actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-3); }
.hero__proof { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; padding-top: var(--space-4); border-top: 1px solid var(--border); margin-top: var(--space-4); }
.hero__proof span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.10em; color: var(--fg-muted);
}
.hero__proof span::before { content: ""; width: 5px; height: 5px; background: var(--cta); border-radius: 50%; }

/* ===== Logos / social proof bar ===== */
.proof-bar {
  background: var(--surface);
  border-top: 1px solid rgba(161,0,242,0.12);
  border-bottom: 1px solid rgba(161,0,242,0.12);
  padding: var(--space-7) 0;
  position: relative; overflow: hidden;
}
.proof-bar__title {
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--fg-dim);
  text-align: center; margin: 0 0 var(--space-6);
}
.proof-bar__marquee {
  display: flex; overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.proof-bar__combined {
  display: flex;
  will-change: transform;
}
.proof-bar__track {
  display: flex; gap: 56px; align-items: center;
  flex-shrink: 0;
  padding-right: 56px;
}
.proof-bar__logo {
  flex-shrink: 0;
  height: 44px; width: auto;
  display: flex; align-items: center;
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease);
}
.proof-bar__logo:hover { opacity: 1; }
.proof-bar__logo img {
  height: 44px; width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section general ===== */
section { position: relative; }
.section-pad { padding: var(--space-10) var(--space-7); }
.section-narrow { max-width: 720px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent);
  margin-bottom: var(--space-5);
}
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--accent); }

/* ===== Problem section ===== */
.problem { padding: var(--space-10) var(--space-7); position: relative; }
.problem__inner { max-width: 880px; margin: 0 auto; }
.problem__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5.2vw, 76px); line-height: 0.98; letter-spacing: -0.04em;
  margin: 0 0 var(--space-8); text-wrap: balance;
}
.problem__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.problem__item {
  display: grid; grid-template-columns: 60px 1fr; align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  transition: transform var(--dur) var(--ease);
}
.problem__item:hover { transform: translateX(var(--space-3)); }
.problem__item:hover .problem__num { color: var(--accent); }
.problem__num {
  font-family: var(--font-mono); font-weight: 400; font-size: 12px;
  letter-spacing: 0.1em; color: var(--fg-dim);
  transition: color var(--dur) var(--ease);
}
.problem__x {
  width: 18px; height: 18px; flex: 0 0 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px; font-weight: 800;
  font-family: var(--font-display);
  margin-right: var(--space-2);
}
.problem__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2; letter-spacing: -0.02em;
  color: var(--fg); display: flex; align-items: center;
}
.problem__transition {
  margin-top: var(--space-9);
  padding: var(--space-7) var(--space-6);
  border-left: 2px solid var(--accent);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px); line-height: 1.25; letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 720px;
}
.problem__transition em { color: var(--cta); font-style: normal; }

/* ===== Method ===== */
.method {
  position: relative; padding: var(--space-10) var(--space-7);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.method__bg-text {
  position: absolute; left: -3vw; top: 12%;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(180px, 22vw, 360px); line-height: 0.8; letter-spacing: -0.06em;
  color: rgba(161,0,242,0.04); pointer-events: none; user-select: none;
  white-space: nowrap; will-change: transform;
}
.method__inner { max-width: var(--container); margin: 0 auto; position: relative; }
.method__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.04em;
  margin: 0 0 var(--space-4); max-width: 880px; text-wrap: balance;
}
.method__num {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(48px, 6vw, 72px); line-height: 1;
  letter-spacing: -0.04em; color: var(--accent);
  display: inline-flex; align-items: baseline; gap: 6px;
  transition: color var(--dur) var(--ease);
}
.method__name {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em; margin: 0;
}
.method__final {
  text-align: center; margin-top: var(--space-8);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.02em; line-height: 1.2;
}
.method__final em { color: var(--cta); font-style: normal; }


/* ===== Services ===== */
.services {
  padding: var(--space-10) var(--space-7);
  background: #F5F2FB;
  border-top: 1px solid rgba(161, 0, 242, 0.10);
  border-bottom: 1px solid rgba(161, 0, 242, 0.10);
  position: relative;
}
.services__inner { max-width: var(--container); margin: 0 auto; }
.services__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.04em;
  margin: var(--space-4) 0 var(--space-8); max-width: 820px; text-wrap: balance;
  color: #0D0018;
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(161, 0, 242, 0.15);
  border-left: 1px solid rgba(161, 0, 242, 0.15);
}
.service-card {
  padding: var(--space-7) var(--space-6);
  border-right: 1px solid rgba(161, 0, 242, 0.15);
  border-bottom: 1px solid rgba(161, 0, 242, 0.15);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: background var(--dur) var(--ease);
  position: relative; overflow: hidden;
  background: transparent;
  cursor: default;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover { background: rgba(161, 0, 242, 0.06); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-card__num { color: var(--accent); }
.service-card__num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(13, 0, 24, 0.40); transition: color var(--dur) var(--ease);
}
.service-card__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(18px, 1.8vw, 22px); letter-spacing: -0.02em; margin: 0; line-height: 1.15;
  color: #0D0018;
}
.service-card__desc {
  font-size: 14px; line-height: 1.65; color: rgba(13, 0, 24, 0.60); margin: 0;
}
.service-card__icon {
  width: 28px; height: 28px; color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-1);
  transition: transform var(--dur) var(--ease);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card:hover .service-card__icon { transform: translateX(3px); }

/* ===== Founders ===== */
.founders {
  padding: var(--space-10) var(--space-7);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founders__inner { max-width: var(--container); margin: 0 auto; }
.founders__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.04em;
  margin: 0 0 var(--space-8); max-width: 720px; text-wrap: balance;
}
.founders__title em { color: var(--accent); font-style: normal; }
.founders__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-7);
}
.founder {
  display: grid; grid-template-columns: 320px 1fr;
  gap: var(--space-6); align-items: start;
}
.founder__photo {
  aspect-ratio: 3/4; width: 100%;
  background: var(--bg);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.founder__photo::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(161,0,242,0.08) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 14px);
}
.founder__photo span {
  position: relative;
  font-family: var(--font-display); font-weight: 900;
  font-size: 80px; letter-spacing: -0.04em; color: var(--accent);
  line-height: 1;
}
.founder__photo small {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-dim);
}
.founder__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.founder__info { display: flex; flex-direction: column; gap: var(--space-3); padding-top: var(--space-3); }
.founder__name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; letter-spacing: -0.03em; margin: 0; line-height: 1;
}
.founder__role {
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent);
}
.founder__bio {
  font-size: 15px; line-height: 1.6; color: var(--fg-muted); max-width: none;
}
.founders__caption {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-6); align-items: center;
}
.founders__caption-mark {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.founders__caption-text {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45; letter-spacing: -0.01em; color: var(--fg); max-width: 720px;
}
.founders__caption-text em { color: var(--accent); font-style: normal; }

/* ===== Founders — origin story block ===== */
.founders__origin {
  margin-bottom: var(--space-9);
  padding: var(--space-8) var(--space-7);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); position: relative; overflow: hidden;
}
.founders__origin::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.founders__origin-body {
  display: flex; flex-direction: column; gap: var(--space-4); max-width: 800px;
}
.founders__origin-body p {
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.7;
  color: var(--fg-muted); margin: 0;
}
.founders__origin-stat {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.05em; letter-spacing: -0.02em; color: var(--cta);
}
.founders__origin-location {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-top: var(--space-2);
}
.founders__origin-location::before {
  content: ""; width: 20px; height: 1px; background: var(--accent);
}

/* ===== Not for ===== */
.notfor { padding: var(--space-10) var(--space-7); background: var(--surface-3); border-top: 1px solid var(--accent-line); }
.notfor__inner { max-width: 880px; margin: 0 auto; }
.notfor__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5.2vw, 76px); line-height: 0.98; letter-spacing: -0.04em;
  margin: 0 0 var(--space-8);
}
.notfor__list { list-style: none; padding: 0; margin: 0; }
.notfor__item {
  display: grid; grid-template-columns: 40px 1fr; gap: var(--space-4); align-items: baseline;
  padding: var(--space-6) 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.35; letter-spacing: -0.02em;
  color: var(--fg);
}
.notfor__item-mark {
  color: var(--accent); font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.notfor__item:last-child { border-bottom: 0; }
.notfor__virada {
  margin-top: var(--space-7);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.4; letter-spacing: -0.02em;
  color: var(--cta);
  padding-left: var(--space-6);
  border-left: 2px solid var(--cta);
}

/* ===== NotFor — intro + flip block ===== */
.notfor__intro {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55;
  color: var(--fg-muted); margin: 0 0 var(--space-6);
}
.notfor__flip {
  margin-top: var(--space-9);
  padding: var(--space-8) var(--space-7);
  background: linear-gradient(135deg, rgba(174,234,0,0.06) 0%, rgba(174,234,0,0.02) 100%);
  border: 1px solid rgba(174,234,0,0.28); border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.notfor__flip-intro {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.0;
  letter-spacing: -0.04em; color: var(--cta); margin: 0;
}
.notfor__flip-body {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(17px, 1.8vw, 23px); line-height: 1.5;
  letter-spacing: -0.02em; color: var(--fg); max-width: 640px; margin: 0;
}

/* ===== CTA ===== */
.cta { position: relative; padding: var(--space-11) var(--space-7); text-align: center; overflow: hidden; }
.cta__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(161,0,242,0.28) 0%, rgba(108,0,125,0.08) 35%, transparent 60%);
  filter: blur(120px); pointer-events: none;
  animation: glow-breathe 6s ease-in-out infinite alternate;
}
@keyframes glow-breathe { from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); } to { opacity: 1; transform: translate(-50%, -50%) scale(1.05); } }
.cta__inner { position: relative; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: var(--space-6); }
.cta__eyebrow { color: var(--accent); }
.cta__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 6.8vw, 104px); line-height: 0.94; letter-spacing: -0.045em; margin: 0;
}
.cta__sub { font-size: clamp(15px, 1.3vw, 18px); color: var(--fg-muted); margin: 0; max-width: 560px; }
.cta__after {
  display: flex; gap: var(--space-6); flex-wrap: wrap; justify-content: center;
  margin-top: var(--space-2);
}
.cta__after span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted);
}
.cta__after span::before { content: ""; width: 5px; height: 5px; background: var(--cta); border-radius: 50%; }

/* ===== CTA — narrative layout ===== */
.cta__opening {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.8vw, 38px); line-height: 1.2;
  letter-spacing: -0.03em; color: var(--fg); max-width: 760px;
  text-align: center; text-wrap: balance; margin: 0;
}
.cta__label {
  font-size: clamp(15px, 1.3vw, 18px); color: var(--fg-muted);
  margin: 0; text-align: center;
}
.cta__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--space-3);
  text-align: left; align-self: center;
}
.cta__bullets li {
  display: flex; align-items: baseline; gap: var(--space-3);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.35;
  letter-spacing: -0.01em; color: var(--fg);
}
.cta__bullets li::before {
  content: ""; width: 5px; height: 5px; background: var(--cta);
  border-radius: 50%; flex-shrink: 0; margin-top: 0.5em;
}
.cta__closing {
  font-size: clamp(14px, 1.2vw, 17px); color: var(--fg-muted);
  text-align: center; line-height: 1.7; max-width: 480px; margin: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--accent-line);
  padding: var(--space-7);
}
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--space-6); align-items: center;
}
.footer__logo { height: 44px; width: auto; display: block; }
.footer__tag {
  text-align: center;
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent);
}
.footer__links { display: flex; gap: var(--space-5); justify-content: flex-end; }
.footer__links a { font-family: var(--font-display); font-weight: 400; font-size: 12px; color: var(--fg-muted); text-decoration: none; text-transform: uppercase; letter-spacing: 0.12em; }
.footer__links a:hover { color: var(--accent); }
.footer__meta {
  max-width: var(--container); margin: var(--space-7) auto 0; padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-family: var(--font-display); font-weight: 300; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-dim);
  display: flex; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap;
}

/* ===== Cursor ===== */
.cursor-dot, .cursor-ghost { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; }
.cursor-dot   { width: 8px; height: 8px; background: var(--accent); }
.cursor-ghost { width: 28px; height: 28px; border: 1px solid rgba(161,0,242,0.5); }

/* ===== Scroll reveal ===== */
.reveal { transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.pending { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== CTA separator (between sections) ===== */
.cta-sep {
  width: 100%;
  padding: var(--space-5) var(--space-7);
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ===== WhatsApp FAB ===== */
.wa-fab {
  position: fixed; right: 24px; bottom: 28px; z-index: 998;
  display: flex; align-items: center; gap: 10px;
  background: #25D366;
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  text-decoration: none;
  cursor: pointer;
  max-width: 200px;
  overflow: hidden;
}
.wa-fab:hover { transform: scale(1.05); box-shadow: 0 6px 36px rgba(37, 211, 102, 0.6); }
.wa-fab svg { width: 24px; height: 24px; color: #fff; flex-shrink: 0; }
.wa-fab__label {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: #fff; white-space: nowrap; letter-spacing: 0.02em;
}

/* ===== Problem CTA block ===== */
.problem__intro {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55;
  color: var(--fg-muted); margin: 0 0 var(--space-7);
}
.problem__cta-block {
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-start;
}

/* ===== Method — editorial step layout ===== */
.method__steps {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--accent-line);
}
.method__step {
  display: grid; grid-template-columns: 140px 1fr;
  gap: var(--space-8); padding: var(--space-8) var(--space-5);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
  cursor: default;
}
.method__step:hover { background: var(--surface-hover); }
.method__step:hover .method__num { color: var(--cta); }
.method__step-left {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding-top: var(--space-2);
}
.method__step-right {
  display: flex; flex-direction: column; gap: var(--space-5);
}
.method__lead {
  font-size: clamp(16px, 1.4vw, 19px); color: var(--fg-muted);
  line-height: 1.55; margin: 0;
}
.method__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--space-2);
}
.method__bullets li {
  display: flex; align-items: baseline; gap: var(--space-3);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px); line-height: 1.3;
  letter-spacing: -0.01em; color: var(--fg);
}
.method__bullets li::before {
  content: ""; width: 5px; height: 5px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0; margin-top: 0.45em;
}
.method__closing {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.4;
  letter-spacing: -0.01em; color: var(--fg-dim);
  padding-left: var(--space-5); border-left: 1px solid var(--accent-line);
  font-style: italic; margin: 0;
}

/* ===== Stats bar ===== */
.stats {
  padding: var(--space-8) var(--space-7);
  border-bottom: 1px solid rgba(161,0,242,0.12);
  background: #F5F2FB;
  border-top: 1px solid rgba(161,0,242,0.12);
}
.stats__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stats__item {
  padding: var(--space-5) var(--space-6);
  border-right: 1px solid rgba(161,0,242,0.15);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.stats__item:first-child { padding-left: 0; }
.stats__item:last-child { border-right: 0; padding-right: 0; }
.stats__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px); line-height: 1; letter-spacing: -0.04em;
  color: #0D0018;
}
.stats__label {
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; color: #6B5882;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--space-10) var(--space-7);
  background: var(--surface);
  border-top: 1px solid rgba(161,0,242,0.12);
  border-bottom: 1px solid rgba(161,0,242,0.12);
  overflow: hidden;
}
.testimonials__inner { max-width: var(--container); margin: 0 auto; }

.testimonials__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-5); margin-bottom: var(--space-7);
}
.testimonials__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 56px); line-height: 0.95;
  letter-spacing: -0.04em; margin: var(--space-3) 0 0; color: var(--fg);
}
.testimonials__arrows { display: flex; gap: var(--space-3); flex-shrink: 0; }
.testimonials__btn {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: transparent; color: var(--fg-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.testimonials__btn svg { width: 20px; height: 20px; }
.testimonials__btn:hover { border-color: var(--accent-line); color: var(--accent); }

/* Carousel */
.testimonials__viewport { overflow: hidden; }
.testimonials__track {
  display: flex; gap: var(--space-5);
  transition: transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card — 2 visible on desktop, column layout: quote top / footer bottom */
.testimonials__card {
  flex-shrink: 0;
  width: calc(50% - 12px);
  display: flex; flex-direction: column; gap: var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: var(--space-6); border-radius: var(--radius-lg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.testimonials__card.is-active {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 1px rgba(161,0,242,0.10), 0 8px 40px -8px rgba(161,0,242,0.18);
}

/* Quote — fills available space */
.testimonials__quote {
  flex: 1;
  font-family: var(--font-text); font-weight: 400;
  font-size: clamp(14px, 1.05vw, 15px); line-height: 1.72;
  color: var(--fg-muted); margin: 0; font-style: normal;
}
.testimonials__quote p { margin: 0 0 0.65em; }
.testimonials__quote p:last-child { margin-bottom: 0; }

/* Footer row: [image] [name/company] [chip] */
.testimonials__foot {
  display: flex; align-items: center; gap: var(--space-4);
  padding-top: var(--space-4); border-top: 1px solid var(--border);
}
.testimonials__photo {
  flex-shrink: 0; width: 52px; height: 52px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(161,0,242,0.10);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.testimonials__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonials__photo--logo img { object-fit: contain; padding: 6px; }

.testimonials__meta {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.testimonials__name {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: -0.01em; color: var(--fg);
}
.testimonials__company {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim);
}
.testimonials__chip {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: var(--accent); letter-spacing: -0.01em;
  padding: 4px 10px; border: 1px solid rgba(161,0,242,0.3);
  background: rgba(161,0,242,0.07); border-radius: var(--radius-sm); white-space: nowrap;
}

/* Navigation dots */
.testimonials__dots {
  display: flex; gap: var(--space-2); justify-content: center; margin-top: var(--space-6);
}
.testimonials__dot {
  width: 6px; height: 6px; border-radius: 50%; border: none; padding: 0;
  background: var(--border); cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.testimonials__dot.active { background: var(--accent); transform: scale(1.5); }

/* ===== Mobile hero photo (hidden on desktop) ===== */
.hero__mobile-photo { display: none; }

/* ===== Qualify Modal ===== */
.qmodal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8,0,13,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-5);
  animation: qmodal-fade 0.22s var(--ease);
}
@keyframes qmodal-fade { from { opacity: 0; } to { opacity: 1; } }

.qmodal {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-7);
  width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: qmodal-up 0.28s var(--ease);
}
@keyframes qmodal-up {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.qmodal__close {
  position: absolute; top: var(--space-5); right: var(--space-5);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--fg-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.qmodal__close svg { width: 16px; height: 16px; }
.qmodal__close:hover { background: var(--surface-hover); color: var(--fg); border-color: var(--border-strong); }

.qmodal__progress {
  display: flex; align-items: center;
  margin-bottom: var(--space-7);
}
.qmodal__step-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  color: var(--fg-muted);
  transition: all var(--dur) var(--ease);
}
.qmodal__step-dot.active { background: var(--cta); border-color: var(--cta); color: #000; }
.qmodal__progress-line {
  flex: 1; height: 1px; background: var(--border-strong);
  transition: background var(--dur-slow) var(--ease);
}
.qmodal__progress-line.filled { background: rgba(174,234,0,0.5); }

.qmodal__body { display: flex; flex-direction: column; gap: var(--space-5); }

.qmodal__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 5vw, 40px); line-height: 1.0; letter-spacing: -0.03em;
  color: var(--fg); margin: 0;
}
.qmodal__sub { font-size: var(--fs-sm); line-height: 1.6; color: var(--fg-muted); margin: 0; }

.qmodal__fields { display: flex; flex-direction: column; gap: var(--space-4); }

.qmodal__label {
  display: flex; flex-direction: column; gap: var(--space-2);
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.10em; color: var(--fg-muted);
}
.qmodal__input {
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 13px 16px;
  font-family: var(--font-display); font-size: var(--fs-base); font-weight: 400;
  color: var(--fg); outline: none; width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.qmodal__input::placeholder { color: var(--fg-dim); }
.qmodal__input:focus { border-color: var(--cta); box-shadow: 0 0 0 3px var(--cta-glow); }

.qmodal__select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(242,237,232,0.52)' stroke-width='2' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}
.qmodal__select option { background: var(--surface-2); color: var(--fg); }

.qmodal__cta { width: 100%; }

.qmodal__actions { display: flex; gap: var(--space-3); align-items: center; }
.qmodal__actions .btn--ghost { font-size: 13px; padding: 14px 20px; flex-shrink: 0; }
.qmodal__actions .btn--primary { flex: 1; justify-content: center; }

.btn.disabled { opacity: 0.42; cursor: not-allowed; pointer-events: none; }

@media (max-width: 768px) {
  .qmodal { padding: var(--space-7) var(--space-5); }
  .qmodal__actions { flex-direction: column-reverse; }
  .qmodal__actions .btn--ghost,
  .qmodal__actions .btn--primary { width: 100%; justify-content: center; }
}

/* ===== Prefers reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal.pending { opacity: 1 !important; transform: none !important; }
  .bg-atmosphere__blob--a, .bg-atmosphere__blob--b, .bg-atmosphere__blob--c { animation: none !important; }
  .proof-bar__track { animation: none !important; }
  .bg-atmosphere__blob { animation: none !important; }
}

/* ===== Tablet (1024px) ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-7); }
  /* Limit text width so it stays in the left (transparent photo) area */
  .hero__copy { max-width: 560px; }
  .founders__grid { grid-template-columns: 1fr; gap: var(--space-9); }
  .founder { grid-template-columns: 180px 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 var(--space-5); }
  .nav__links { display: none; }
  .nav__cta-desk { display: none; }
  .nav__hamburger { display: flex; }
  /* Mobile hero: photo on top, text below */
  .hero {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero__bg-photo { display: none; }
  .hero__mobile-photo {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    max-height: 55vh;
  }
  .hero__mobile-photo img {
    width: 100%;
    height: 55vh;
    display: block;
    object-fit: cover;
    object-position: center top;
  }
  .hero__mobile-photo::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: var(--space-4) var(--space-5) var(--space-9);
    margin-top: -22vh;
    position: relative;
    z-index: 3;
  }
  .hero__bg-text { display: none; }
  .hero__copy { max-width: 100%; }
  .section-pad, .problem, .method, .founders, .notfor, .cta, .services { padding-left: var(--space-5); padding-right: var(--space-5); }
  /* Reduce section vertical padding on mobile */
  .problem, .founders, .notfor, .services { padding-top: var(--space-9); padding-bottom: var(--space-9); }
  .method { padding-top: var(--space-9); padding-bottom: var(--space-9); }
  .cta { padding-top: var(--space-10); padding-bottom: var(--space-10); }
  .founder { grid-template-columns: 1fr; }
  .founder__photo { width: 260px; }
  .footer__inner { grid-template-columns: 1fr; text-align: left; }
  .footer__logo { height: 36px; }
  .footer__links { justify-content: flex-start; }
  .problem__item { grid-template-columns: 1fr; }
  .problem__num { display: none; }
  .problem__text { font-size: clamp(22px, 6vw, 28px); align-items: flex-start; }
  .problem__list { align-items: stretch; }
  .problem__title { font-size: clamp(34px, 9vw, 56px); }
  .problem__transition { font-size: clamp(18px, 5vw, 26px); }
  .cursor-dot, .cursor-ghost { display: none; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item {
    padding: var(--space-4);
    border-bottom: 1px solid rgba(161,0,242,0.15);
    padding-left: var(--space-4);
  }
  .stats__item:first-child { padding-left: var(--space-4); }
  .stats__item:last-child { padding-right: var(--space-4); border-right: 0; }
  .stats__item:nth-child(odd) { border-right: 1px solid rgba(161,0,242,0.15); }
  .stats__item:nth-child(even) { border-right: 0; }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-bottom: 0; }
  .wa-fab__label { display: none; }
  .wa-fab { padding: 16px; border-radius: 50%; right: 16px; bottom: 16px; }
  .testimonials { padding: var(--space-9) var(--space-5); }
  .testimonials__header { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .testimonials__viewport { touch-action: pan-y; overscroll-behavior: contain; }
  .testimonials__card {
    width: calc(100vw - 72px);
    flex-direction: column;
    padding: var(--space-5);
  }
  .testimonials__quote { font-size: 14px; line-height: 1.68; }
  .testimonials__foot { flex-wrap: wrap; gap: var(--space-3); align-items: center; }
  .testimonials__photo { width: 44px; height: 44px; }
  .testimonials__meta { min-width: 100px; }
  .testimonials__chip { font-size: 11px; }

  /* Method editorial */
  .method__step { grid-template-columns: 1fr; gap: var(--space-5); padding: var(--space-6) var(--space-3); }
  .method__step-left { flex-direction: row; align-items: baseline; gap: var(--space-4); }
  /* Hero actions: stack full-width on small screens */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }

  /* Founders origin */
  .founders__origin { padding: var(--space-6) var(--space-5); }
  .founders__origin-body p { font-size: 15px; }

  /* NotFor flip */
  .notfor__flip { padding: var(--space-6) var(--space-5); }
  .notfor__flip-body { font-size: clamp(16px, 5vw, 20px); }

  /* Problem CTA */
  .problem__cta-block { justify-content: stretch; }
  .problem__cta-block .btn { width: 100%; justify-content: center; }

  /* Services grid: 2-col on tablet */
  .services__grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
}
