/* ============================================================
   OVI Holdings Inc. — Danil Ovechkin
   Design system + components
   ============================================================ */

:root {
  /* palette */
  --ink:        #060812;
  --ink-2:      #0a0e1c;
  --ink-3:      #0f1526;
  --line:       rgba(255,255,255,0.08);
  --line-2:     rgba(255,255,255,0.15);
  --fg:         #f4f6fb;
  --fg-dim:     #a6adc2;
  --fg-faint:   #696f86;

  /* accent — Chelsea FC blue */
  --acc:        #2f6fe6;   /* electric royal — interactive + accents */
  --acc-2:      #7aa2ff;   /* light tint — dots, small highlights */
  --acc-deep:   #034694;   /* true Chelsea FC blue — depth + CTA base */
  --violet:     #2a3ca0;   /* deep indigo — ambient depth */
  --cyan:       #56b8ff;   /* light blue — sparkle */

  /* type */
  --display: "Space Grotesk", system-ui, sans-serif;
  --serif:   "Instrument Serif", Georgia, serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;

  /* spacing / motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --radius:  20px;
  --container: 1200px;
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--acc); color: #fff; }

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

/* ---------- ambient layers ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; z-index: 0;
  pointer-events: none; border-radius: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(47,111,230,0.14), transparent 60%);
  transition: opacity .4s; opacity: 0;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--acc), var(--cyan));
  box-shadow: 0 0 12px var(--acc);
}

/* ---------- buttons ---------- */
.btn {
  --pad: 14px 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: .98rem;
  padding: var(--pad); border-radius: 100px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--acc), var(--acc-deep)); color: #fff; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  will-change: transform; white-space: nowrap;
}
.btn:hover { box-shadow: 0 14px 40px -8px rgba(47,111,230,.5); }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--sm { --pad: 10px 18px; font-size: .9rem; }
.btn--lg { --pad: 17px 30px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--ghost {
  background: transparent; color: var(--fg); border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.04); box-shadow: none; border-color: var(--fg-faint); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,8,11,.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  font-family: var(--display); font-weight: 600; font-size: 1.15rem;
  display: flex; align-items: center; gap: 9px; letter-spacing: -.02em;
}
.nav__mark { color: var(--acc); font-size: .7em; animation: pulseMark 3s infinite var(--ease); }
@keyframes pulseMark { 0%,100%{opacity:1} 50%{opacity:.4} }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: .95rem; color: var(--fg-dim); position: relative; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--acc); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--fg); transition: .3s; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  padding: 112px 0 60px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  animation: float 18s infinite var(--ease);
}
.orb--1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(47,111,230,.45), transparent 70%); top: -8%; right: 4%; }
.orb--2 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(3,70,148,.5), transparent 70%); bottom: -14%; left: -6%; animation-delay: -6s; }
.orb--3 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(86,184,255,.22), transparent 70%); top: 40%; left: 42%; animation-delay: -11s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-30px,25px) scale(.95); }
}
.hero__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 28px; width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: .82rem; letter-spacing: .02em;
  color: var(--fg-dim); padding: 8px 16px; border: 1px solid var(--line);
  border-radius: 100px; background: rgba(255,255,255,.02); margin-bottom: 30px;
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--acc-2); box-shadow: 0 0 0 0 rgba(122,162,255,.6); animation: ring 2.2s infinite; }
@keyframes ring { 0%{box-shadow:0 0 0 0 rgba(122,162,255,.55)} 70%{box-shadow:0 0 0 10px rgba(122,162,255,0)} 100%{box-shadow:0 0 0 0 rgba(122,162,255,0)} }

.hero__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.3rem, 5.6vw, 4.6rem); line-height: 1.03;
  letter-spacing: -.03em; margin-bottom: 22px; max-width: 16ch;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--acc); }

.hero__sub {
  font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--fg-dim);
  max-width: 56ch; line-height: 1.6; margin-bottom: 30px;
}
.hero__sub strong { color: var(--fg); font-weight: 600; }

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

.hero__proof { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__proof-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--fg-faint); }
.hero__proof-logos { display: flex; align-items: center; gap: 14px; font-family: var(--display); font-weight: 500; color: var(--fg-dim); font-size: 1.05rem; }
.hero__proof-logos i { color: var(--fg-faint); font-style: normal; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1px solid var(--line-2); border-radius: 100px;
  display: flex; justify-content: center; padding-top: 8px;
}
.hero__scroll span { width: 3px; height: 8px; background: var(--acc); border-radius: 2px; animation: scrolly 1.8s infinite var(--ease); }
@keyframes scrolly { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(14px)} 100%{opacity:0} }

/* ---------- marquee ---------- */
.marquee-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; background: var(--ink-2); position: relative; z-index: 2; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee__track span { font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: var(--fg-faint); letter-spacing: -.01em; transition: color .3s; white-space: nowrap; }
.marquee__track span:hover { color: var(--fg); }
.marquee__track .dot { color: var(--acc); font-size: .8rem; }
.marquee__track .more { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--fg-dim); }
.marquee__track .more:hover { color: var(--fg-dim); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- sections shared ---------- */
section { position: relative; z-index: 2; }
.section-head { max-width: 940px; margin-bottom: 48px; }
.section-tag {
  font-family: var(--display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--acc); display: inline-block; margin-bottom: 18px;
}
.section-title {
  font-family: var(--display); font-weight: 600; letter-spacing: -.025em;
  font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.08; text-wrap: balance;
}
.section-lead { color: var(--fg-dim); font-size: 1.15rem; margin-top: 18px; max-width: 56ch; }

/* ---------- metrics ---------- */
.metrics { padding: 100px 0; }
.metrics__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.metric { border-top: 1px solid var(--line); padding-top: 26px; }
.metric__num {
  font-family: var(--display); font-weight: 600; letter-spacing: -.03em;
  font-size: clamp(2.6rem, 4.4vw, 3.8rem); line-height: 1;
  background: linear-gradient(180deg, #fff, #9db8ec); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.metric__label { color: var(--fg-dim); font-size: .98rem; line-height: 1.5; max-width: 26ch; }

/* ---------- work / cases ---------- */
.work { padding: 60px 0 110px; }
.cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.case {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
  position: relative; overflow: hidden;
}
.case::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(500px circle at var(--mx,50%) var(--my,0%), rgba(47,111,230,.14), transparent 45%);
}
.case:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.case:hover::before { opacity: 1; }
.case--wide { grid-column: span 3; min-height: auto; flex-direction: row; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
.case--wide .case__desc { max-width: 62ch; }
.case__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: auto; width: 100%; }
.case__sector { font-size: .82rem; color: var(--fg-faint); letter-spacing: .04em; }
.case__pill { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--acc); border: 1px solid var(--line-2); padding: 4px 12px; border-radius: 100px; }
.case__metric { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem,2.6vw,2.1rem); letter-spacing: -.02em; margin: 28px 0 14px; line-height: 1.1; }
.case__metric .hl { color: var(--acc); }
.case__desc { color: var(--fg-dim); font-size: 1rem; }
.case__foot { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-family: var(--display); font-size: .9rem; color: var(--fg-faint); }
.case--wide .case__foot { border: 0; padding: 0; margin: 0; white-space: nowrap; }

/* ---------- bento ---------- */
.services { padding: 60px 0 110px; }
.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bento__card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .45s var(--ease), border-color .4s, background .4s;
  position: relative; overflow: hidden;
}
.bento__card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--ink-3); }
.bento__card--lg { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bento__card--accent { background: linear-gradient(150deg, rgba(47,111,230,.16), rgba(3,70,148,.12)); border-color: rgba(47,111,230,.28); }
.bento__icon { font-size: 1.6rem; color: var(--acc); margin-bottom: 20px; }
.bento__card h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.02em; margin-bottom: 12px; }
.bento__card--lg h3 { font-size: 1.7rem; }
.bento__card p { color: var(--fg-dim); font-size: .98rem; }
.bento__list { list-style: none; margin-top: auto; padding-top: 24px; display: grid; gap: 10px; }
.bento__list li { display: flex; align-items: center; gap: 10px; color: var(--fg-dim); font-size: .96rem; }
.bento__list li::before { content: "→"; color: var(--acc); }

/* ---------- approach ---------- */
.approach { padding: 60px 0 110px; }
.approach__rows { display: grid; gap: 0; }
.approach__row {
  display: grid; grid-template-columns: 120px 1fr; gap: 30px; align-items: start;
  padding: 40px 0; border-top: 1px solid var(--line);
  transition: padding-left .4s var(--ease);
}
.approach__row:last-child { border-bottom: 1px solid var(--line); }
.approach__row:hover { padding-left: 16px; }
.approach__no { font-family: var(--display); font-size: 1.4rem; color: var(--acc); font-weight: 500; }
.approach__body h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem,2.4vw,2rem); letter-spacing: -.02em; margin-bottom: 12px; }
.approach__body p { color: var(--fg-dim); font-size: 1.08rem; max-width: 62ch; }

/* ---------- about ---------- */
.about { padding: 60px 0 110px; }
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__photo {
  aspect-ratio: 4/5; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--ink-3), #1a1f1a);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  position: relative; overflow: hidden;
}
.about__photo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(47,111,230,.16), transparent 60%); }
.about__mono { font-family: var(--display); font-weight: 700; font-size: 5rem; color: var(--fg); letter-spacing: -.04em; opacity: .9; }
.about__photo-note { font-size: .78rem; color: var(--fg-faint); z-index: 1; }
.about__badge {
  position: absolute; bottom: -22px; right: -16px;
  background: linear-gradient(135deg, var(--acc), var(--acc-deep)); color: #fff;
  padding: 18px 22px; border-radius: 16px; display: flex; flex-direction: column; line-height: 1.2;
  box-shadow: 0 20px 40px -15px rgba(47,111,230,.5);
}
.about__badge strong { font-family: var(--display); font-size: 1.5rem; }
.about__badge span { font-size: .8rem; }
.about__content .section-title { margin-bottom: 22px; }
.about__content p { color: var(--fg-dim); font-size: 1.08rem; margin-bottom: 18px; max-width: 58ch; }
.about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.about__tags span { font-size: .86rem; color: var(--fg-dim); border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; }
.about__link { font-family: var(--display); color: var(--acc); display: inline-flex; gap: 8px; align-items: center; transition: gap .3s; }
.about__link:hover { gap: 14px; }

/* ---------- feature ---------- */
.feature { padding: 60px 0 110px; }
.feature__card {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
}
.feature__meta { padding: 54px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.feature__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem,2.6vw,2.2rem); letter-spacing: -.025em; line-height: 1.15; }
.feature__meta p { color: var(--fg-dim); font-size: 1.05rem; }
.feature__visual {
  position: relative; background: linear-gradient(150deg, rgba(3,70,148,.4), rgba(47,111,230,.18)); min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.feature__visual { overflow: hidden; }
.feature__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feature__visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(3,70,148,.45), rgba(6,8,18,.55));
}
.feature__play {
  position: relative; z-index: 2;
  width: 80px; height: 80px; border-radius: 50%; background: var(--fg); color: #000;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; padding-left: 5px;
  transition: transform .4s var(--ease); cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.6);
}
.feature__visual:hover .feature__play { transform: scale(1.1); }

/* ---------- contact ---------- */
.contact { padding: 60px 0 120px; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  border: 1px solid var(--line); border-radius: 28px; padding: 56px;
  background: radial-gradient(800px circle at 0% 0%, rgba(3,70,148,.18), transparent 50%), var(--ink-2);
}
.contact__title { font-family: var(--display); font-weight: 600; font-size: clamp(2rem,3.6vw,3rem); letter-spacing: -.025em; line-height: 1.05; margin: 18px 0 20px; }
.contact__lead { color: var(--fg-dim); font-size: 1.1rem; max-width: 42ch; margin-bottom: 30px; }
.contact__direct { display: flex; flex-direction: column; gap: 10px; }
.contact__direct a { font-family: var(--display); color: var(--fg); font-size: 1.05rem; width: fit-content; border-bottom: 1px solid var(--line-2); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.contact__direct a:hover { color: var(--acc); border-color: var(--acc); }

.contact__form { display: flex; flex-direction: column; gap: 18px; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 18px 10px; color: var(--fg); font-family: var(--body); font-size: 1rem; resize: vertical;
  transition: border-color .25s, background .25s;
}
.field textarea { padding-top: 24px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--acc); background: var(--ink-3); }
.field label {
  position: absolute; left: 18px; top: 16px; color: var(--fg-faint); font-size: 1rem;
  pointer-events: none; transition: .2s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 7px; font-size: .72rem; color: var(--acc); letter-spacing: .03em;
}
.contact__note { font-size: .85rem; color: var(--fg-faint); text-align: center; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 60px 0 50px; background: var(--ink-2); }
.footer__inner { display: grid; gap: 18px; }
.footer__brand { font-family: var(--display); font-weight: 600; font-size: 1.2rem; display: flex; align-items: center; gap: 9px; }
.footer__tag { color: var(--fg-dim); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { color: var(--fg-dim); font-size: .95rem; transition: color .25s; }
.footer__links a:hover { color: var(--acc); }
.footer__meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--fg-faint); font-size: .85rem; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 8px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: .05s; }
.hero__title .line.reveal { transform: translateY(100%); opacity: 1; }
.hero__title .line.in { transform: translateY(0); }

/* ---------- industries ---------- */
.industries { padding: 60px 0 110px; }
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ind-card {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
}
.ind-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.ind-card__head { display: flex; align-items: center; gap: 14px; }
.ind-card__icon { font-size: 1.5rem; color: var(--acc); }
.ind-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.02em; }
.ind-card p { color: var(--fg-dim); font-size: 1rem; }
.ind-card__proof {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--display); font-size: .9rem; color: var(--acc-2); letter-spacing: .01em;
}

/* ---------- testimonials ---------- */
.quotes { padding: 60px 0 110px; }
.quotes__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 22px;
}
.quote blockquote {
  font-family: var(--display); font-weight: 500; font-size: 1.12rem; line-height: 1.5;
  letter-spacing: -.01em; color: var(--fg);
}
.quote figcaption { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
.quote figcaption strong { font-family: var(--display); font-size: .98rem; }
.quote figcaption span { color: var(--fg-faint); font-size: .88rem; }
.quote.is-placeholder { border-style: dashed; opacity: .65; }
.quote.is-placeholder blockquote { color: var(--fg-faint); font-weight: 400; }

/* ---------- faq ---------- */
.faq { padding: 60px 0 110px; }
.faq__list { display: grid; gap: 0; max-width: 880px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 28px 0;
  font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem,1.8vw,1.35rem);
  letter-spacing: -.02em; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--acc); font-weight: 400; font-size: 1.6rem; line-height: 1; transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--acc); }
.faq__item p { color: var(--fg-dim); font-size: 1.05rem; line-height: 1.65; max-width: 72ch; padding: 0 0 28px; }

/* ---------- about photo (real image) ---------- */
.about__img { aspect-ratio: 4/5; width: 100%; border-radius: var(--radius); border: 1px solid var(--line); object-fit: cover; }

/* ---------- contact: booking button + form label ---------- */
.contact__book { margin-bottom: 28px; }
.contact__form-label { font-family: var(--display); font-size: .9rem; color: var(--fg-faint); margin-bottom: -2px; }

/* ---------- ways (engagement types) ---------- */
.ways { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.way {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px;
  display: flex; flex-direction: column; gap: 14px; min-height: 300px;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
}
.way:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.way__num { font-family: var(--display); font-weight: 500; font-size: 1.05rem; color: var(--acc); }
.way h3 { font-family: var(--display); font-weight: 600; font-size: 1.45rem; letter-spacing: -.02em; }
.way p { color: var(--fg-dim); font-size: 1rem; }
.way__tag { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--fg-faint); }
.way--accent { background: linear-gradient(150deg, rgba(47,111,230,.16), rgba(3,70,148,.12)); border-color: rgba(47,111,230,.28); }

/* ---------- getting started steps ---------- */
.steps { padding: 60px 0 110px; }
.steps__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--display); font-weight: 600; font-size: 2.4rem; line-height: 1;
  background: linear-gradient(180deg, #fff, #9db8ec); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: -.02em; }
.step p { color: var(--fg-dim); font-size: 1rem; max-width: 34ch; }

/* ---------- faq two-column ---------- */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq__grid .section-head { margin-bottom: 0; position: sticky; top: 110px; }

/* ---------- case desc emphasis ---------- */
.case__desc strong { color: var(--fg); font-weight: 600; }

/* ---------- section banding for vertical rhythm ---------- */
.industries, .services, .faq { background: var(--ink-2); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .ind-grid { grid-template-columns: 1fr; }
  .quotes__grid { grid-template-columns: 1fr; }
  .ways { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; gap: 8px; }
  .step { padding-top: 20px; }
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .faq__grid .section-head { position: static; }
  .metrics__grid { grid-template-columns: repeat(2,1fr); gap: 36px 28px; }
  .cases { grid-template-columns: repeat(2,1fr); }
  .case--wide { grid-column: span 2; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bento__card--lg { grid-column: span 2; grid-row: auto; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__media { max-width: 380px; }
  .feature__card { grid-template-columns: 1fr; }
  .feature__visual { min-height: 200px; order: -1; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}
@media (max-width: 680px) {
  .container, .hero__inner, .nav__inner { padding-left: 20px; padding-right: 20px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,8,11,.96); backdrop-filter: blur(16px); padding: 24px 20px; gap: 18px; border-bottom: 1px solid var(--line);
  }
  .nav .btn--sm { display: none; }
  .hero { padding-top: 120px; min-height: auto; }
  .metrics__grid { grid-template-columns: 1fr 1fr; }
  .cases, .bento { grid-template-columns: 1fr; }
  .case--wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .bento__card--lg { grid-column: span 1; }
  .approach__row { grid-template-columns: 60px 1fr; gap: 16px; }
  .feature__meta { padding: 36px 28px; }
  .section-head { margin-bottom: 44px; }
  .metrics, .work, .services, .approach, .about, .feature, .contact,
  .industries, .quotes, .faq, .steps { padding-top: 56px; padding-bottom: 64px; }
}
