@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* People Can — premium dark design (inspired by modern AI/SaaS landing pages) */
:root {
  --bg: #050506;
  --bg-elevated: #0e0e11;
  --surface: #131316;
  --surface-hover: #18181c;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f4f1;
  --muted: rgba(245, 244, 241, 0.62);
  --muted-soft: rgba(245, 244, 241, 0.4);
  --accent: #e8e4dc;
  --accent-warm: #d4c5a9;
  --accent-dim: rgba(232, 228, 220, 0.1);
  --accent-glow: rgba(212, 197, 169, 0.12);
  --ring: rgba(212, 197, 169, 0.35);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 72px;
  --container: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 197, 169, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(157, 142, 196, 0.04), transparent 50%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.03em;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1[id],
h2[id],
h3[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  z-index: 999;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.brand,
.header-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand:hover,
.header-brand:hover {
  color: var(--accent);
}

.brand-mark {
  display: none;
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav a:not(.nav-link):not(.nav-item__trigger),
.nav-creative__link {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav-creative__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav a[aria-current="page"],
.nav-creative__link[aria-current="page"] {
  color: var(--text);
}

.header-actions,
.header-util,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch__btn {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active,
.lang-switch__btn[aria-current="true"] {
  color: #0a0a0a;
  background: var(--accent);
}

.header-tel {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.header-tel:hover {
  color: var(--text);
}

.header-tel__icon {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Legacy creative nav — map to simple links */
.nav-creative {
  display: none;
}

.nav-creative__glow {
  display: none;
}

.nav-creative__label {
  display: inline;
}

.site-header__glass {
  background: transparent;
  border: none;
  box-shadow: none;
}

.hamburger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hamburger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.hamburger-lines {
  width: 18px;
  display: grid;
  gap: 4px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-menu.open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open .mobile-menu__drawer {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 24px 28px;
}

.mobile-menu__head {
  margin-bottom: 16px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mobile-menu__nav a,
.mobile-menu a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.mobile-menu__nav a:hover,
.mobile-menu a:hover {
  color: var(--text);
}

.mobile-menu__cta {
  margin-top: 20px;
}

.mobile-menu__close {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.header-tel--menu {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #d4ff6a;
  border-color: #d4ff6a;
  color: #0a0a0a;
  box-shadow: 0 0 32px var(--accent-glow);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-small {
  padding: 9px 16px;
  font-size: 13px;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero h1,
.hero-display {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.text-gradient,
.hero-display__highlight {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__lead,
.hero-kota__lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.hero__lead strong,
.hero-kota__lead strong {
  color: var(--text);
  font-weight: 500;
}

.hero__actions,
.hero-kota__mini-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__trust,
.hero-kota__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-soft);
}

.hero__trust li,
.hero-kota__trust span {
  display: inline;
}

.hero__trust-sep,
.hero-kota__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

.hero__panel {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 24px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero__panel-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.hero__panel-status {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-dim);
}

.hero__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero__panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  font-size: 13px;
}

.hero__panel-item span:first-child {
  color: var(--muted);
}

.hero__panel-item span:last-child {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.hero__panel-metric {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid rgba(212, 197, 169, 0.2);
}

.hero__panel-metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero__panel-metric-value {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent);
}

/* Hero (hero-kota) — see assets/css/hero-kota.css on the homepage */

/* —— Sections —— */
section,
.section-block {
  padding: clamp(64px, 10vw, 100px) 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin-bottom: clamp(32px, 5vw, 48px);
  max-width: 720px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-title p {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  line-height: 1.6;
}

.section-cta {
  margin-top: 32px;
  text-align: center;
}

/* —— About —— */
.about-showcase {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-showcase::before {
  display: none;
}

.about-showcase__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 72px);
}

.about-showcase__intro {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  align-items: start;
}

.about-showcase__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-showcase__heading {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.about-showcase__lead {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.about-showcase__pillars {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-showcase__pillars li {
  position: relative;
  padding: 12px 16px 12px 36px;
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.about-showcase__pillars li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--accent);
}

.about-showcase__closing {
  margin: 0;
  font-size: 15px;
  color: var(--muted-soft);
}

.about-showcase__visual,
.about-showcase__card-stage,
.about-showcase__logo-frame {
  display: none;
}

.about-showcase__results--section {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.about-showcase__results-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-showcase__subheading--results {
  margin: 0 0 24px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.about-showcase__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.about-showcase__stat {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.about-showcase__stat::before {
  display: none;
}

.about-showcase__stat-num {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.about-showcase__stat-num--accent {
  color: var(--accent);
}

.about-showcase__stat-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.about-showcase__stat--wide {
  grid-column: 1 / -1;
}

.smart-underline {
  background-image: linear-gradient(90deg, var(--accent), var(--accent));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.6s ease;
}

.smart-underline.is-line-drawn {
  background-size: 100% 1px;
}

/* —— Services —— */
.services-bento {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.services-bento__card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.services-bento__card:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.services-bento__media {
  display: none;
}

.services-bento__body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.services-bento__body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.services-bento__actions {
  margin-top: 16px;
}

.services-bento__card--feature {
  border-color: rgba(212, 197, 169, 0.25);
  background: linear-gradient(165deg, rgba(212, 197, 169, 0.06) 0%, var(--surface) 60%);
}

/* —— Cases —— */
.cases-showcase {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.cases-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.cases-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.cases-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.cases-pill {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.cases-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}

.cases-card__result {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.cases-card__metric {
  font-weight: 600;
  color: var(--accent);
}

.cases-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--muted-soft);
  line-height: 1.6;
}

/* —— Industries —— */
.industry-list {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.industry-link {
  display: block;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.industry-link:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.industry-link::before,
.industry-link::after {
  display: none;
}

.industry-link h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: unset;
}

.industry-link p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.industry-link__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 197, 169, 0.3);
  border-radius: 6px;
  background: var(--accent-dim);
}

.industry-link--featured {
  position: relative;
  border-color: rgba(212, 197, 169, 0.2);
}

/* —— Process —— */
.section-block--approach {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.section-block--approach::before,
.section-block--approach::after {
  display: none;
}

.approach-roadmap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.approach-roadmap__item {
  counter-increment: step;
}

.approach-roadmap__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease;
}

.approach-roadmap__card::before,
.approach-roadmap__card::after {
  display: none;
}

.approach-roadmap__card:hover {
  border-color: var(--border-strong);
  transform: none;
}

.approach-roadmap__visual {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid rgba(212, 197, 169, 0.2);
  color: var(--accent);
}

.approach-roadmap__visual::before {
  content: counter(step, decimal-leading-zero);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.approach-roadmap__icon {
  display: none;
}

.approach-roadmap__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.approach-roadmap__intro {
  color: var(--muted);
}

/* —— FAQ —— */
.faq-section {
  border-top: 1px solid var(--border);
}

.faq-section::before {
  display: none;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item[open] {
  border-color: rgba(212, 197, 169, 0.25);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::before {
  display: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--border);
}

.faq-answer::before {
  display: none;
}

.faq-answer > p {
  margin: 0 0 12px;
  padding-top: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-price-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.faq-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  font-size: 14px;
}

.faq-price-list__sum {
  font-weight: 600;
  color: var(--accent);
}

.faq-answer__note {
  font-size: 13px !important;
  color: var(--muted-soft) !important;
}

/* —— CTA band —— */
.cta-band {
  padding: clamp(48px, 8vw, 72px) 0;
  text-align: center;
}

.cta-band__inner {
  padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 197, 169, 0.08), transparent 60%),
    var(--surface);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
}

.cta-band p {
  margin: 0 auto 24px;
  max-width: 48ch;
  color: var(--muted);
}

/* —— Footer —— */
.site-footer {
  position: relative;
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.site-footer::before,
.site-footer::after {
  display: none;
}

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

.site-footer__cols {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer__logo {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.site-footer__tagline {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
}

.site-footer__meta {
  margin: 0 0 6px;
  font-size: 14px;
}

.site-footer__meta a {
  color: var(--muted);
}

.site-footer__meta a:hover {
  color: var(--text);
}

.site-footer__address {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted-soft);
}

.site-footer__slogan {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

.site-footer__form-block {
  display: grid;
  gap: 10px;
}

.site-footer__form-block input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.site-footer__form-block input::placeholder {
  color: var(--muted-soft);
}

.site-footer__form-block input:focus {
  outline: none;
  border-color: rgba(212, 197, 169, 0.4);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.site-footer__form-block button[type="submit"] {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-footer__form-block button[type="submit"]:hover {
  background: #d4ff6a;
}

.site-footer__form-status {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.site-footer__copy {
  margin: 20px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted-soft);
}

/* —— Subpages —— */
.page-main {
  padding: 32px 0 64px;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--text);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.card-link:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.content {
  display: grid;
  gap: 20px;
}

.service-block h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.service-block h3 {
  margin: 0 0 8px;
}

.service-block p,
.service-block .mini-list {
  color: var(--muted);
  font-size: 14px;
}

.service-block .mini-list a {
  color: var(--text);
  text-decoration: none;
}

.service-block .mini-list a:hover {
  color: var(--accent);
}

.service-block .mini-list__sub {
  margin-left: 14px;
  list-style: circle;
  color: var(--muted);
}

.cta {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 197, 169, 0.2);
  background: var(--accent-dim);
}

.cta h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.lead {
  color: var(--muted);
  margin: 0 0 16px;
}

.form,
.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212, 197, 169, 0.4);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.fineprint {
  font-size: 12px;
  color: var(--muted-soft);
}

.prose {
  max-width: 72ch;
  color: var(--muted);
}

/* —— Clients carousel (simplified) —— */
.section-block--clients {
  display: none !important;
}

.clients-logos--carousel {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
}

.clients-carousel__toolbar {
  margin-bottom: 16px;
}

.clients-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.clients-carousel__btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.clients-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.clients-carousel__dots {
  display: flex;
  gap: 6px;
}

.clients-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--border-strong);
  cursor: pointer;
}

.clients-carousel__dot.is-active {
  width: 24px;
  background: var(--accent);
}

.clients-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.clients-carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.clients-carousel__page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.clients-logos__item {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
}

.clients-logos__img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.clients-logos__item:hover .clients-logos__img {
  opacity: 1;
}

/* —— Modal —— */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 1000;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  max-height: 85vh;
  overflow: auto;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.modal__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal__subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
}

.modal__form {
  display: grid;
  gap: 10px;
}

.modal__status {
  font-size: 13px;
  color: var(--muted);
}

/* —— Sticky messengers —— */
body.has-sticky-messenger-bar {
  padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

.sticky-messenger-bar {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
}

.sticky-messenger-bar__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  border-radius: 50%;
}

.sticky-messenger-bar__btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sticky-messenger-bar__icon svg {
  width: 22px;
  height: 22px;
}

/* —— Scroll reveal —— */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
}

.magnetic-soft {
  transition: none;
}

/* —— Responsive —— */
@media (min-width: 640px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-carousel__page-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .hero__inner {
    display: flex !important;
    grid-template-columns: none !important;
  }

  .about-showcase__intro {
    grid-template-columns: 1fr 1fr;
  }

  .services-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-bento__card--feature {
    grid-column: span 2;
  }

  .cases-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-roadmap {
    grid-template-columns: repeat(5, 1fr);
  }

  .approach-roadmap__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 16px;
  }

  .approach-roadmap__visual {
    margin: 0 auto;
  }

  .site-footer__cols {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .site-footer__col--slogan {
    flex: 1;
    padding: 0 24px;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .content {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (min-width: 980px) {
  .nav,
  .nav-creative {
    display: flex;
  }

  .header-tel {
    display: inline-flex;
  }

  .hamburger,
  .hamburger--creative {
    display: none;
  }

  .mobile-menu,
  .mobile-menu--creative {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body::before,
  body::after {
    animation: none;
  }
}

@media print {
  .sticky-messenger-bar {
    display: none !important;
  }

  body.has-sticky-messenger-bar {
    padding-bottom: 0 !important;
  }
}
