/* ==========================================================
   Hizami Radzi Portfolio
   Palette: monochrome (black, greys, white)
   ========================================================== */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #161616;
  --surface-2: #1e1e1e;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --dim: #737373;
  --accent: #ededed;      /* solid fills: primary buttons, badges */
  --on-accent: #0a0a0a;   /* text on --accent */
  --hi: #8a8a8a;          /* highlighted words, kickers */
  --soft: rgba(255, 255, 255, 0.07);
  --green: #22c55e;
  --red: #f05252;
  --radius: 22px;
  --wrap: 1200px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
svg { flex: none; }
::selection { background: var(--accent); color: var(--on-accent); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--accent); color: var(--on-accent); padding: 10px 16px; border-radius: 10px; font-weight: 600; }
.skip:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; border-radius: 6px; }
.blue { color: var(--hi); }

/* Body copy is justified; headings, labels & short list items stay left-aligned */
.hero__sub, .section__intro, .prose p, .card p, .steps p, .case__desc, .case__foot,
.cta__sub, .quote blockquote, .note {
  text-align: justify; text-justify: inter-word; hyphens: auto; -webkit-hyphens: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s var(--ease); }
.btn svg.wa { fill: currentColor; stroke: none; width: 20px; height: 20px; }
.btn:hover svg { transform: translateX(3px); }
.btn:hover svg.wa { transform: none; }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 10px 30px -12px rgba(255, 255, 255, 0.25); }
.btn--primary:hover { background: #ffffff; transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(255, 255, 255, 0.35); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 18px 30px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { border-radius: 9px; }
.brand__word { font-weight: 800; letter-spacing: 0.22em; font-size: 13.5px; }
.nav__links { display: flex; gap: 30px; margin-left: auto; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav__links a { position: relative; transition: color 0.2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--text); transition: right 0.3s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { right: 0; }
.nav__toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mnav { display: grid; padding: 8px 24px 24px; background: rgba(10, 10, 10, 0.96); border-bottom: 1px solid var(--line); }
.mnav[hidden] { display: none; }
.mnav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 120px 0 40px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto auto; width: 900px; height: 900px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.07), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas: "name photo" "copy photo";
  column-gap: 40px;
  align-items: start;
}
.hero__name {
  grid-area: name;
  font-weight: 900;
  font-size: clamp(64px, 11.5vw, 176px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin-top: 28px;
  position: relative; z-index: 2;
  margin-right: -26%;
  pointer-events: none;
}
.hero__line { display: block; }
.hero__line--blue { color: #5c5c5c; }
.hero__copy { grid-area: copy; margin-top: 34px; max-width: 540px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05); } }
.hero__lead { margin-top: 22px; font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.hero__lead em { font-style: normal; color: var(--hi); }
.hero__lead s { color: var(--dim); text-decoration-thickness: 3px; text-decoration-color: var(--red); }
.hero__sub { margin-top: 16px; color: var(--muted); font-size: 16.5px; max-width: 500px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero__photo { grid-area: photo; position: relative; margin-top: 10px; }
.arch {
  position: relative;
  border-radius: 999px 999px 28px 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  background: #2b2b2b;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--line-2);
}
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.arch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 10, 0.55), transparent 35%); }

.badge { position: absolute; left: -58px; top: 36%; width: 132px; height: 132px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.8); z-index: 3; }
.badge__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.badge__ring text { fill: var(--on-accent); font-size: 15px; font-weight: 700; }
.badge__logo { width: 46px; height: 46px; border-radius: 10px; }
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute; z-index: 3;
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 16px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
  animation: bob 6s ease-in-out infinite;
}
.float-card--a { right: -18px; top: 22%; }
.float-card--b { left: 18px; bottom: 26px; flex-direction: row; align-items: center; gap: 10px; animation-delay: -3s; }
.float-card__k { font-size: 26px; font-weight: 900; letter-spacing: -0.02em; color: #fff; line-height: 1.1; }
.float-card__l { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.float-card__l b { color: #fff; }
.live { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes bob { 50% { transform: translateY(-8px); } }

.stats {
  position: relative; z-index: 1;
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}
.stats li { padding: 28px 28px 26px; display: flex; flex-direction: column; gap: 6px; }
.stats li + li { border-left: 1px solid var(--line); }
.stats b { font-size: clamp(34px, 4vw, 50px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.stats li:nth-child(4) b { color: var(--hi); }
.stats li > span { font-size: 13.5px; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* ---------- Clients marquee ---------- */
.clients { padding: 56px 0 24px; }
.clients__label { text-align: center; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 26px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 56px; padding-right: 56px;
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; letter-spacing: -0.01em; color: #bdbdbd; white-space: nowrap;
}
.marquee__track span::after { content: "✦"; color: #555; font-size: 0.6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--row { max-width: none; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: end; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hi); margin-bottom: 16px; }
.kicker--light { color: #fff; opacity: 0.85; }
.h2 { font-size: clamp(32px, 4.4vw, 56px); font-weight: 800; line-height: 1.06; letter-spacing: -0.035em; }
.section__intro { margin-top: 18px; color: var(--muted); font-size: 17px; max-width: 560px; }
.section__head--row .section__intro { margin-top: 0; }

/* ---------- About ---------- */
.about { background: var(--bg-2); border-block: 1px solid var(--line); }
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.about__media { position: relative; position: sticky; top: 110px; }
.about__media img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%; width: 100%; box-shadow: 0 0 0 1px var(--line-2); }
.about__tag {
  position: absolute; right: -22px; bottom: 32px; max-width: 220px;
  background: var(--accent); color: var(--on-accent); border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 24px 40px -18px rgba(0, 0, 0, 0.9);
}
.about__tag b { display: block; font-size: 38px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.about__tag span { font-size: 13px; font-weight: 500; line-height: 1.4; display: block; margin-top: 6px; }
.prose { margin-top: 26px; display: grid; gap: 16px; color: var(--muted); font-size: 16.5px; }
.prose b { color: var(--text); font-weight: 600; }

.timeline { margin-top: 40px; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 140px 1fr; column-gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.timeline__when { grid-row: span 2; font-size: 13px; font-weight: 700; color: var(--hi); letter-spacing: 0.02em; padding-top: 2px; }
.timeline__what { font-weight: 700; font-size: 16px; line-height: 1.4; }
.timeline__note { color: var(--dim); font-size: 14px; margin-top: 2px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.07), transparent 60%); opacity: 0; transition: opacity 0.35s; }
.card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.28); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; }
.card__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--soft); display: grid; place-items: center; margin-bottom: 22px; }
.card__icon svg { width: 24px; height: 24px; stroke: var(--text); stroke-width: 1.9; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.card--feature { grid-column: span 1; background: linear-gradient(160deg, #2a2a2a, #161616 70%); border-color: rgba(255, 255, 255, 0.18); }
.card--feature .card__icon { background: var(--accent); }
.card--feature .card__icon svg { stroke: var(--on-accent); }
.card--feature p { color: #c8c8c8; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chips li { font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: #d4d4d4; background: rgba(255, 255, 255, 0.02); }
.chips--lg li { font-size: 14px; padding: 9px 16px; }

/* ---------- Process ---------- */
.process { background: var(--bg-2); border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.steps li { padding: 34px 28px 36px; position: relative; }
.steps li + li { border-left: 1px solid var(--line); }
.steps__n { font-size: 52px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: #4a4a4a; display: block; margin-bottom: 26px; }
.steps h3 { font-size: 19px; font-weight: 700; }
.steps p { margin-top: 10px; color: var(--muted); font-size: 14.5px; }

/* ---------- Case studies ---------- */
.case {
  display: grid; grid-template-columns: 0.8fr 2fr; gap: 48px;
  padding: 44px; border-radius: 28px;
  background: var(--surface); border: 1px solid var(--line);
}
.case + .case { margin-top: 22px; }
.case__no { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hi); }
.case__client { margin-top: 12px; font-size: 26px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.case__desc { margin-top: 12px; color: var(--muted); font-size: 15px; }
.case__desc b { color: var(--text); font-weight: 600; }
.case__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case__col h4 { margin-bottom: 16px; }
.case__col--result { background: var(--surface-2); border-radius: 18px; padding: 22px; border: 1px solid var(--line); }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 8px; background: var(--soft); color: #d4d4d4; }
.tag--red { background: rgba(240, 82, 82, 0.12); color: #ff8a8a; }
.tag--green { background: rgba(34, 197, 94, 0.12); color: #4ade80; }
.ticks { display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 28px; font-size: 15px; color: #d4d4d4; line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e5e5' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/12px no-repeat;
}
.ticks--x li::before {
  background: rgba(240, 82, 82, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8a8a' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center/11px no-repeat;
}
.ticks b { color: #fff; }
.kpi { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line); }
.kpi b { font-size: 34px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; }
.kpi span { font-size: 13px; color: var(--muted); font-weight: 500; }
.case__foot { margin-top: 14px; font-size: 13.5px; color: var(--muted); }

.case--featured { grid-template-columns: 0.95fr 1.05fr; align-items: center; background: radial-gradient(700px 400px at 90% 0%, rgba(255, 255, 255, 0.07), transparent 60%), var(--surface); border-color: rgba(255, 255, 255, 0.18); }
.new { display: inline-block; margin-right: 8px; padding: 3px 8px; border-radius: 6px; background: var(--green); color: #04220f; font-size: 11px; letter-spacing: 0.08em; vertical-align: 1px; }
.feat__title { font-size: clamp(28px, 3vw, 38px); }
.feat__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 26px 0; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.feat__kpis div { background: var(--surface-2); padding: 16px 18px; }
.feat__kpis b { display: block; font-size: 30px; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; }
.feat__kpis div:first-child b { color: #fff; }
.feat__kpis span { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.feat__body .ticks { margin-bottom: 28px; }
.feat__shot { display: block; border-radius: 16px; overflow: hidden; border: 1px solid var(--line-2); background: #0f0f0f; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9), 0 0 60px -24px rgba(255, 255, 255, 0.15); transition: transform 0.4s var(--ease); }
.feat__shot:hover { transform: translateY(-4px) rotate(-0.4deg); }
.feat__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #1a1a1a; border-bottom: 1px solid var(--line); font-size: 11.5px; color: var(--dim); }
.feat__bar i { width: 9px; height: 9px; border-radius: 50%; background: #333; }
.feat__bar span { margin-left: 10px; padding: 3px 12px; border-radius: 6px; background: #0f0f0f; }
.case--mkm { background: linear-gradient(135deg, #202020, var(--surface) 60%); border-color: rgba(255, 255, 255, 0.14); }
.case__growth { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; align-items: end; }
.case__big { grid-column: 1 / -1; font-size: 20px; font-weight: 600; color: var(--muted); }
.case__big b { font-size: 64px; font-weight: 900; color: #fff; letter-spacing: -0.05em; margin-right: 8px; vertical-align: -6px; }
.bars { display: flex; align-items: flex-end; gap: 18px; height: 220px; padding-top: 30px; margin-bottom: 34px; border-bottom: 1px solid var(--line-2); }
.bar { position: relative; flex: 1; height: var(--h); background: var(--surface-2); border: 1px solid var(--line-2); border-bottom: 0; border-radius: 14px 14px 0 0; }
.bar--hi { background: linear-gradient(180deg, #f5f5f5, #bdbdbd); border-color: transparent; box-shadow: 0 -10px 40px -14px rgba(255, 255, 255, 0.3); }
.bar__v { position: absolute; top: -28px; left: 0; right: 0; text-align: center; font-weight: 800; font-size: 17px; }
.bar__l { position: absolute; bottom: -28px; left: 0; right: 0; text-align: center; font-size: 12.5px; color: var(--dim); font-weight: 600; }
.reveal .bar { height: 3%; transition: height 1.2s var(--ease) 0.2s; }
.reveal.in .bar { height: var(--h); }
.case__growth .ticks { padding-bottom: 6px; }

/* ---------- Results board ---------- */
.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.res { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; }
.res header { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.res__niche { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #d4d4d4; background: var(--soft); padding: 4px 10px; border-radius: 7px; }
.res__prod { font-size: 13px; color: var(--muted); font-weight: 500; }
.res__main { margin: 34px 0 26px; }
.res__main b { display: block; font-size: 48px; font-weight: 900; letter-spacing: -0.045em; line-height: 1; }
.res__main span { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.res__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line-2); }
.res__row dt { font-size: 11.5px; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.res__row dd { font-weight: 700; font-size: 16px; }
.res--accent { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.res--accent .res__niche { background: rgba(0, 0, 0, 0.08); color: var(--on-accent); }
.res--accent .res__prod, .res--accent .res__main span, .res--accent dt { color: #525252; }
.res--accent .res__row { border-top-color: rgba(0, 0, 0, 0.2); }
.note { margin-top: 26px; font-size: 13.5px; color: var(--dim); max-width: 720px; }

/* ---------- Testimonials ---------- */
.testi { background: var(--bg-2); border-block: 1px solid var(--line); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.quote blockquote { font-size: 17px; line-height: 1.6; color: #e5e5e5; font-weight: 500; }
.quote--big { grid-column: span 2; background: linear-gradient(150deg, #2a2a2a, #151515 75%); border-color: rgba(255, 255, 255, 0.16); }
.quote--big blockquote { font-size: clamp(20px, 2.1vw, 26px); font-weight: 600; line-height: 1.45; letter-spacing: -0.01em; color: #fff; }
.quote--big blockquote::before { content: "“"; display: block; font-size: 90px; line-height: 0.7; color: #5c5c5c; font-weight: 900; margin-bottom: 10px; }
.quote--big blockquote { quotes: none; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption b { display: block; font-size: 15px; }
.quote figcaption small { display: block; font-size: 12.5px; color: var(--dim); }
.av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #3a3a3a; font-weight: 800; font-size: 14px; flex: none; }
.av--wa { background: #1faa59; }
.quote--chat { gap: 14px; justify-content: flex-end; }
.bubble { align-self: flex-start; max-width: 90%; background: var(--surface-2); border: 1px solid var(--line); padding: 12px 16px; border-radius: 16px 16px 16px 4px; font-size: 15px; }
.bubble--me { align-self: flex-end; background: #0f5132; border-color: transparent; border-radius: 16px 16px 4px 16px; }
.quote--chat figcaption { margin-top: 14px; }
.quote--cta { background: var(--accent); border-color: var(--accent); color: var(--on-accent); justify-content: space-between; gap: 18px; }
.quote__cta-k { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #525252; }
.quote__cta-t { font-size: 22px; font-weight: 800; line-height: 1.25; letter-spacing: -0.015em; }
.quote--cta .btn--primary { background: var(--on-accent); color: #fff; box-shadow: none; align-self: flex-start; }
.quote--cta .btn--primary:hover { background: #262626; }

/* ---------- Toolkit ---------- */
.toolkit__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.toolgroups { display: grid; gap: 30px; }
.toolgroup h3 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); font-weight: 700; }
.toolgroup .chips { margin-top: 14px; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 110px 0; overflow: hidden; background: radial-gradient(900px 500px at 15% 20%, rgba(255, 255, 255, 0.08), transparent 60%), linear-gradient(160deg, #1f1f1f, #0a0a0a 70%); border-top: 1px solid var(--line); }
.cta__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: center; }
.cta__title { font-size: clamp(48px, 8vw, 120px); font-weight: 900; line-height: 0.9; letter-spacing: -0.05em; }
.cta__sub { margin-top: 26px; color: #c8c8c8; font-size: 17.5px; max-width: 580px; }
.cta__tagline { margin-top: 34px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 13px; color: var(--hi); }
.cta__photo img { border-radius: 999px 999px 28px 28px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; box-shadow: 0 0 0 1px var(--line-2), 0 40px 80px -30px rgba(0, 0, 0, 0.9); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 30px 0 36px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--dim); }
.footer__top { font-weight: 600; color: var(--muted); }
.footer__top:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transform: scale(0); transition: transform 0.35s var(--ease);
}
.wa-float.show { transform: scale(1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal, .static .reveal { opacity: 1; transform: none; transition: none; }
.static .reveal .bar { height: var(--h); transition: none; }
.static .float-card, .static .badge__ring { animation: none; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px) {
  .nav__links { gap: 22px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .board { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(3) { border-left: 0; }
  .steps li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .case { grid-template-columns: 1fr; gap: 32px; }
  .badge { left: -30px; width: 116px; height: 116px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }

  .hero { padding-top: 100px; }
  .hero__grid { grid-template-columns: 1fr; grid-template-areas: "name" "photo" "copy"; }
  .hero__name { margin-right: 0; font-size: clamp(64px, 20vw, 150px); margin-top: 10px; }
  .hero__photo { max-width: 460px; width: 100%; margin: 22px auto 0; justify-self: center; }
  .hero__copy { max-width: none; }
  .badge { left: -12px; top: auto; bottom: 90px; width: 104px; height: 104px; }
  .badge__logo { width: 38px; height: 38px; }
  .float-card--a { right: -6px; top: 14%; }

  .stats { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .stats li:nth-child(3) { border-left: 0; }
  .stats li:nth-child(n+3) { border-top: 1px solid var(--line); }

  .section { padding: 84px 0; }
  .section__head--row { grid-template-columns: 1fr; gap: 0; }
  .section__head--row .section__intro { margin-top: 18px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { position: relative; top: 0; max-width: 480px; }
  .about__tag { right: 16px; }
  .case__cols { grid-template-columns: 1fr; }
  .case__growth { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .toolkit__grid { grid-template-columns: 1fr; gap: 36px; }
  .cta__grid { grid-template-columns: 1fr; }
  .cta__photo { max-width: 360px; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 16px; }
  .brand__word { font-size: 12px; letter-spacing: 0.18em; }
  .hero__lead { font-size: 25px; }
  .btn { padding: 14px 22px; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .stats li { padding: 22px 18px; }
  .stats b { font-size: 34px; }
  .cards, .board, .quotes { grid-template-columns: 1fr; }
  .quote--big { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .steps li + li { border-left: 0; border-top: 1px solid var(--line); }
  .case { padding: 26px 20px; border-radius: 22px; }
  .case__big b { font-size: 52px; }
  .timeline li { grid-template-columns: 1fr; }
  .timeline__when { grid-row: auto; margin-bottom: 4px; }
  .float-card--b { left: 12px; bottom: 16px; }
  .float-card__k { font-size: 22px; }
  .about__tag { right: 12px; bottom: 16px; padding: 14px 16px; }
  .about__tag b { font-size: 30px; }
  .btn--lg { padding: 16px 22px; font-size: 15px; width: 100%; justify-content: center; }
  .cta { padding: 84px 0; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal .bar { height: var(--h); }
}
