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

:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --paper: #fafafa;
  --paper-2: #f3f4f6;
  --muted: #6b7280;
  --text: #374151;
  --accent: #0cc0df;
  --accent-hover: #0899b2;
  --accent-soft: rgba(12, 192, 223, 0.12);
  --line: rgba(17, 24, 39, 0.1);
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 8px;
  --pill: 999px;
  --shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--accent-hover); }

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay { transition-delay: 0.12s; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.footer .logo img {
  height: 32px;
  filter: none;
}

.nav { display: flex; gap: 2px; }

.nav a {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--pill);
  text-decoration: none;
}

.nav a:hover {
  background: var(--paper-2);
  color: var(--ink);
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn--accent:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--ink-2);
  color: #fff;
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--sm { padding: 9px 18px; font-size: 0.84rem; }
.btn--full { width: 100%; }

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: min(90vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 88px;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: slowZoom 22s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 14, 22, 0.88) 0%,
      rgba(10, 14, 22, 0.72) 38%,
      rgba(10, 14, 22, 0.28) 68%,
      rgba(10, 14, 22, 0.12) 100%
    ),
    linear-gradient(to top, rgba(10, 14, 22, 0.55) 0%, transparent 42%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.8vw, 3.85rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 440px;
  margin-bottom: 34px;
  line-height: 1.55;
}

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

/* Stats strip */
.stats-strip {
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
  margin-top: -1px;
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-strip .stat {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.stats-strip .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.stats-strip .stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Trust bar */
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding: 18px 24px;
}

.trust-bar__inner span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.trust-bar__inner span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
}

/* Sections */
.section { padding: 88px 0; }

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section--soft {
  background: var(--paper-2);
}

.section__intro {
  max-width: 560px;
  margin-bottom: 48px;
}

.section__intro--light h2,
.section__intro--light p { color: #fff; }

.section__intro--light p { opacity: 0.65; }

.section__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section--dark .section__label { color: var(--accent); }

.section__intro h2,
.faq-col h2,
.contact-col h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}

.section--dark .section__intro h2 { color: #fff; }

.section__intro p {
  margin-top: 12px;
  color: var(--muted);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.feature-card .step__num {
  display: block;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-card__subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.feature-card ul {
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.45;
}

.feature-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Dual cards */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dual-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}

.dual-card:hover {
  transform: translateY(-6px);
}

.dual-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dual-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.dual-card:hover .dual-card__img img {
  transform: scale(1.05);
}

.dual-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dual-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.85;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 14px;
}

.bento__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.25s, border-color 0.25s;
}

.bento__item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(12, 192, 223, 0.4);
}

.bento__item--lg {
  grid-column: span 2;
  grid-row: span 2;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(12, 192, 223, 0.3);
  padding: 32px;
  min-height: 280px;
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__count {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.bento__item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #fff;
}

.bento__item--lg h3 { font-size: 1.6rem; }

.bento__item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

/* AI strip */
.ai-strip {
  padding: 88px 0;
  background: var(--ink);
  color: #fff;
}

.ai-strip__intro {
  max-width: 560px;
  margin-bottom: 40px;
}

.ai-strip__intro .section__label {
  color: var(--accent);
}

.ai-strip__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 12px 0;
}

.ai-strip__intro p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}

.ai-gallery {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.ai-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  min-height: 220px;
}

.ai-gallery__item--main {
  min-height: 280px;
}

.ai-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.ai-gallery__item:hover img {
  transform: scale(1.05);
}

.ai-gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 14px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: rgba(17, 24, 39, 0.82);
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: none;
}

.step {
  padding: 28px 28px 28px 0;
  border-top: 2px solid var(--ink);
  display: flex;
  gap: 18px;
  position: relative;
}

.step:not(:last-child) {
  border-right: 1px solid var(--line);
  padding-right: 32px;
  margin-right: 32px;
}

.step__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Why strip */
.why-strip {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
}

.why-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* Quotes */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
}

.quote p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.65;
}

.quote footer {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* FAQ + Contact */
.split-end {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.faq-col h2,
.contact-col h2 {
  margin-bottom: 28px;
}

.contact-col__lead {
  color: var(--muted);
  margin: -16px 0 24px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.faq-item[open] { border-color: rgba(12, 192, 223, 0.35); }

.faq-item summary {
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 400;
}

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

.faq-item p {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact__form {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.form-group { margin-bottom: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--paper);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
}

.form-consent {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact__form.is-sent > :not(.form-success) {
  display: none;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 16px 20px;
  animation: formSuccessIn 0.45s var(--ease) both;
}

.form-success[hidden] {
  display: none;
}

@keyframes formSuccessIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.form-success__icon svg {
  width: 100%;
  height: 100%;
}

.form-success__ring {
  stroke: var(--accent);
  fill: var(--accent-soft);
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: formRing 0.55s ease forwards;
}

.form-success__check {
  stroke: var(--accent-hover);
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: formCheck 0.35s ease 0.35s forwards;
}

@keyframes formRing {
  to { stroke-dashoffset: 0; }
}

@keyframes formCheck {
  to { stroke-dashoffset: 0; }
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
  outline: none;
}

.form-success__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 340px;
  margin-bottom: 24px;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .form-success,
  .form-success__ring,
  .form-success__check {
    animation: none;
  }

  .form-success__ring,
  .form-success__check {
    stroke-dashoffset: 0;
  }
}

/* Bottom CTA form (advisly-style) */
.cta-form {
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
}

.cta-form__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.cta-form__intro .section__label {
  color: var(--accent);
}

.cta-form__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 12px 0 14px;
  color: #fff;
}

.cta-form__intro > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.02rem;
  max-width: 440px;
  margin-bottom: 24px;
}

.cta-form__meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-form__meta li,
.cta-form__meta a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.cta-form__meta a:hover {
  color: var(--accent);
}

.avatar-stack {
  display: flex;
  margin-bottom: 28px;
}

.avatar-stack img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
  margin-left: -12px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.cta-form__panel {
  background: var(--white);
  color: var(--text);
}

.cta-form__q {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.role-toggle__option {
  cursor: pointer;
}

.role-toggle__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-toggle__option span {
  display: block;
  text-align: center;
  padding: 12px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.role-toggle__option input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
}

.role-toggle__option:hover span {
  border-color: rgba(12, 192, 223, 0.5);
}

@media (max-width: 960px) {
  .cta-form__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .role-toggle {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: var(--ink);
  color: #9a928a;
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding-bottom: 48px;
}

.footer .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer__col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  color: #7a726a;
  font-size: 0.85rem;
  margin-bottom: 9px;
}

.footer__col a:hover { color: #fff; text-decoration: none; }

.footer__legal address {
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer__legal a { display: inline; color: #7a726a; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.76rem;
  color: #5a544e;
}

/* Responsive */
@media (max-width: 960px) {
  .feature-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .dual-grid,
  .steps,
  .why-strip__grid,
  .quote-row,
  .split-end { grid-template-columns: 1fr; }

  .step:not(:last-child) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .ai-gallery {
    grid-template-columns: 1fr;
  }

  .ai-gallery__item,
  .ai-gallery__item--main {
    min-height: 200px;
  }

  .bento__item--lg {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(243, 244, 246, 0.98);
    flex-direction: column;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open { display: flex; }

  .menu-toggle { display: flex; }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 70vh;
    padding-bottom: 48px;
  }

  .hero h1 { font-size: 2rem; }

  .stats-strip__inner,
  .bento,
  .form-row { grid-template-columns: 1fr; }

  .bento__item--lg,
  .bento__item--wide { grid-column: span 1; }

  .section { padding: 64px 0; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__media img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ========== Inner pages ========== */
.page-hero {
  padding: 72px 0 48px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.page-hero__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.page-section {
  padding: 64px 0 88px;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 36px 0 12px;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin: 24px 0 8px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.prose li { margin-bottom: 8px; }

.prose strong { color: var(--ink); }

.prose a { text-decoration: underline; text-underline-offset: 2px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-grid__img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}

.about-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.about-value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-band {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band .section__intro {
  margin-bottom: 36px;
}

.about-band .section__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.2;
}

.about-band .section__intro p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 560px;
}

.about-grid--reverse {
  direction: rtl;
}

.about-grid--reverse > * {
  direction: ltr;
}

.about-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-audience__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.about-audience__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-audience__card .check-list {
  flex: 1;
  margin-bottom: 24px;
}

.about-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-timeline li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
}

.about-timeline__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.about-timeline h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.about-timeline p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-trust {
  max-width: 720px;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-section + .page-section {
  padding-top: 64px;
}

.about-band.page-section {
  padding: 72px 0;
}

@media (max-width: 960px) {
  .about-grid,
  .contact-page,
  .about-values,
  .about-audience,
  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-grid--reverse {
    direction: ltr;
  }
}

.contact-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.contact-info__card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-info__card p,
.contact-info__card address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-info__card a {
  color: var(--ink);
}

.contact-info__card a:hover {
  color: var(--accent);
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

