:root {
  --paper: #EBEAE6;
  --ink: #1B1C1E;
  --ink-soft: #5B5D60;
  --ink-faint: #999A99;
  --ink-ghost: #C6C6C2;
  --line: #DFDED9;
  --line-mid: #D2D1CB;
  --surface-2: #DCDBD5;
  --accent: #3C5F7C;
  --accent-dk: #8FB0CC;
  --paper-on-dark: #E9E8E3;
  --muted-on-dark: #A0A09A;
  --faint-on-dark: #76766F;
  --line-dark: #2C2D2F;
  --row-hover: rgba(60, 95, 124, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

a {
  color: inherit;
}

/* ── Utilities ── */

.t7-mono {
  font-family: 'JetBrains Mono', monospace;
}

.t7-accent {
  color: var(--accent);
}

.t7-accent-dk {
  color: var(--accent-dk);
}

.t7-text-soft {
  color: var(--ink-soft);
}

.t7-text-faint {
  color: var(--ink-faint);
}

.t7-text-ghost {
  color: var(--ink-ghost);
}

.t7-text-muted-dark {
  color: var(--muted-on-dark);
}

.t7-text-faint-dark {
  color: var(--faint-on-dark);
}

.t7-text-white {
  color: #fff;
}

.t7-strong {
  font-weight: 500;
  color: var(--ink);
}

/* ── Layout ── */

.t7-pagepad {
  width: 100%;
  overflow-x: hidden;
}

.t7-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.t7-wrap--hero {
  padding: clamp(56px, 9vw, 120px) 32px clamp(40px, 5vw, 72px);
}

.t7-wrap--section {
  padding: clamp(64px, 9vw, 128px) 32px;
}

.t7-wrap--dark {
  padding: clamp(72px, 10vw, 148px) 32px;
}

.t7-section {
  border-top: 1px solid var(--ink);
}

.t7-section--surface {
  background: var(--surface-2);
}

.t7-section--dark {
  background: var(--ink);
  color: var(--paper-on-dark);
}

/* ── Header ── */

.t7-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.t7-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.t7-logo {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.t7-logo__name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: 0;
}

.t7-logo__name::before {
  content: '–';
  margin-right: 8px;
  color: var(--ink-ghost);
}

.t7-navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
}

.t7-navlink {
  font-size: 13px;
  color: var(--ink-soft);
}

.t7-navlink--cta {
  color: var(--ink);
  font-weight: 500;
}

.t7-link {
  position: relative;
  text-decoration: none;
}

.t7-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}

.t7-link:hover::after {
  transform: scaleX(1);
}

/* ── Typography ── */

.t7-eyebrow {
  flex: 0 0 auto;
  font-size: 13px;
  color: var(--ink-faint);
  padding-top: 10px;
}

.t7-eyebrow--dark {
  color: var(--faint-on-dark);
}

.t7-eyebrow--mb {
  margin-bottom: 28px;
}

.t7-eyebrow--faq {
  margin-bottom: 18px;
}

.t7-hero-eyebrow {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: clamp(36px, 6vw, 68px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.t7-h1 {
  font-size: clamp(38px, 6.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
  max-width: 17ch;
}

.t7-h2 {
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
}

.t7-h2--section {
  flex: 1 1 480px;
  max-width: 18ch;
}

.t7-h2--wide {
  max-width: 20ch;
}

.t7-h2--narrow {
  max-width: 16ch;
}

.t7-h2--with-lead {
  margin-bottom: 18px;
}

.t7-h2--sm {
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
}

.t7-h2--about {
  margin-bottom: 26px;
  max-width: 17ch;
}

.t7-h2--contact {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 24px;
  color: #fff;
  max-width: 13ch;
}

.t7-h3 {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.t7-h3--tile {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.25;
}

.t7-h3--service {
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}

.t7-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 26px;
}

.t7-body {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}

.t7-body--loose {
  line-height: 1.62;
  margin-bottom: 18px;
}

.t7-body--wide {
  max-width: 52ch;
}

.t7-body--section {
  max-width: 48ch;
}

.t7-body--examples {
  max-width: 50ch;
}

.t7-body--proof {
  max-width: 50ch;
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.t7-body--about {
  max-width: 54ch;
}

.t7-body--audyt {
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 46ch;
}

.t7-body--contact {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted-on-dark);
  margin: 0 0 40px;
  max-width: 42ch;
}

.t7-body--sm {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.t7-body--tile {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1 1 auto;
}

.t7-body--callout {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 14px 0 0;
  max-width: 42ch;
}

.t7-body--faq {
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 64ch;
}

.t7-body--price {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 12px 0 0;
  max-width: 38ch;
}

.t7-body--dark-sm {
  font-size: 14.5px;
  color: var(--faint-on-dark);
  margin: 12px 0 0;
  line-height: 1.45;
  max-width: 28ch;
}

.t7-body--dark-md {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: var(--muted-on-dark);
  margin: 0;
  max-width: 36ch;
}

.t7-body--dark-case {
  flex: 1 1 360px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--faint-on-dark);
  margin: 0;
  max-width: 52ch;
}

.t7-caption {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 14px;
}

.t7-caption--mono {
  font-size: 11.5px;
  margin-top: 14px;
}

.t7-caption--mono-mt20 {
  font-size: 11.5px;
  margin-top: 20px;
}

.t7-cite {
  font-size: 11.5px;
  color: var(--ink-faint);
}

.t7-label {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.t7-tag {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 18px;
}

.t7-tag--faint {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.t7-tag--price {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 10px;
}

.t7-tag--dark {
  font-size: 12px;
  color: var(--faint-on-dark);
  margin-bottom: 18px;
}

.t7-tag--contact {
  font-size: 13px;
  color: var(--accent-dk);
  margin-bottom: 28px;
}

.t7-stat {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.t7-stat--lg {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.t7-stat--hero {
  font-size: clamp(64px, 13vw, 176px);
  line-height: 0.82;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
}

.t7-stat--dark {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}

.t7-price {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.t7-roi {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .3s ease;
}

.t7-roi-note {
  font-size: 10.5px;
  color: var(--ink-faint);
  text-align: right;
}

.t7-arrow {
  font-size: 13px;
}


.t7-footnote--photo {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 10px;
}

.t7-footnote--footer {
  font-size: 12px;
  line-height: 1.7;
}

.t7-footnote--copy {
  font-size: 12px;
}

.t7-comment {
  font-size: 12px;
  color: var(--accent-dk);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.t7-comment--dark {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--faint-on-dark);
}

/* ── Grids & flex ── */

.t7-flex-end {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  align-items: flex-end;
}

.t7-flex-start {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 5vw, 80px);
  align-items: flex-start;
}

.t7-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 72px);
}

.t7-section-head--md {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.t7-section-head--sm {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.t7-section-head--dark {
  margin-bottom: clamp(48px, 6vw, 88px);
}

.t7-col-main {
  flex: 1 1 640px;
  min-width: 300px;
}

.t7-col-aside {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 430px;
  border-left: 1px solid var(--line-mid);
  padding-left: 24px;
}

.t7-col-content {
  flex: 1 1 480px;
}

.t7-col-audyt {
  flex: 1 1 380px;
  min-width: 280px;
}

.t7-col-deliverables {
  flex: 1 1 420px;
  min-width: 300px;
}

.t7-col-service {
  flex: 1 1 460px;
}

.t7-col-photo {
  flex: 0 1 360px;
  min-width: 240px;
}

.t7-col-about {
  flex: 1 1 460px;
  min-width: 300px;
}

.t7-col-faq-side {
  flex: 0 0 auto;
  max-width: 300px;
}

.t7-col-faq {
  flex: 1 1 520px;
  border-top: 1px solid var(--line-mid);
}

.t7-col-contact {
  flex: 1 1 420px;
  min-width: 300px;
}

.t7-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 5vw, 88px);
  align-items: flex-start;
}

.t7-proof-strip {
  margin-top: clamp(48px, 7vw, 96px);
  border-top: 1px solid var(--line-mid);
  display: flex;
  flex-wrap: wrap;
}

.t7-stat-cell {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.t7-stat-cell:first-child {
  padding-left: 0;
}

.t7-stat-cell:last-child {
  padding-right: 0;
  border-right: none;
}

.t7-stat-cell__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.t7-stat-cell .t7-body--proof {
  flex: 1;
  min-height: calc(14.5px * 1.5 * 5);
  margin-top: 12px;
  margin-bottom: 0;
}

.t7-stat-cell.is-swapping .t7-stat-cell__inner {
  opacity: 0;
  transform: translateY(8px);
}

.t7-callouts {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-mid);
  margin-top: clamp(36px, 4vw, 52px);
}

.t7-callout {
  flex: 1 1 300px;
  padding: clamp(28px, 3vw, 40px) 40px clamp(28px, 3vw, 40px) 0;
  border-right: 1px solid var(--line);
}

.t7-callout--right {
  padding: clamp(28px, 3vw, 40px) 0 clamp(28px, 3vw, 40px) 40px;
  border-right: none;
}

.t7-pricing {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-mid);
  display: flex;
  flex-wrap: wrap;
}

.t7-price-col {
  flex: 1 1 280px;
  padding: 28px 36px 28px 0;
  border-right: 1px solid var(--line);
}

.t7-price-col--right {
  padding: 28px 0 28px 36px;
  border-right: none;
}

.t7-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.t7-process-line {
  margin-top: clamp(36px, 5vw, 56px);
  font-size: 13px;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.t7-tile-grid--spaced {
  margin-bottom: clamp(40px, 5vw, 56px);
}

@media (min-width: 1024px) {
  .t7-tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.t7-volvo-case {
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(28px, 4vw, 40px);
}

.t7-volvo-case__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(24px, 4vw, 48px);
  row-gap: 16px;
  align-items: start;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.t7-volvo-case__tag {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.t7-volvo-case__brand {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  color: #fff;
  padding-block: clamp(10px, 1.8vw, 18px);
}

.t7-volvo-case__logo {
  height: clamp(12px, 1.6vw, 18px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.t7-volvo-case__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(20px, 3vw, 36px) 0 clamp(28px, 4vw, 40px);
  padding-left: clamp(16px, 2.5vw, 28px);
  margin-left: 2px;
  border-left: 2px solid var(--accent-dk);
  border-bottom: 1px solid var(--line-dark);
}

.t7-volvo-case__caption {
  flex: 1 1 280px;
  padding-bottom: 10px;
}

.t7-dark-stats--volvo {
  border-top: none;
}

.t7-dark-stats {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
}

.t7-dark-stat {
  flex: 1 1 240px;
  padding: 32px;
  border-right: 1px solid var(--line-dark);
}

.t7-dark-stat:first-child {
  padding-left: 0;
}

.t7-dark-stat:last-child {
  padding-right: 0;
  border-right: none;
}

.t7-products {
  border-top: 1px solid var(--line-dark);
  padding-top: 32px;
  margin-top: 8px;
}

.t7-products__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: baseline;
}

.t7-product {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
}

.t7-product__desc {
  font-size: 13px;
  color: var(--faint-on-dark);
  font-weight: 400;
}

.t7-case-study {
  border-top: 1px solid var(--line-dark);
  margin-top: 8px;
  padding-top: 32px;
}

.t7-case-study__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(24px, 4vw, 48px);
  row-gap: 16px;
  align-items: start;
}

.t7-case-study__tag {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.t7-case-study__lead {
  grid-column: 1;
  grid-row: 2;
  max-width: 56ch;
}

.t7-case-study__logo {
  grid-column: 2;
  grid-row: 1;
  width: min(220px, 34vw);
  height: auto;
  opacity: 0.95;
  mix-blend-mode: screen;
}

.t7-dark-stats--case {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(24px, 3vw, 32px);
}

.t7-dark-stats--case .t7-dark-stat {
  flex: none;
  padding: 28px 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.t7-dark-stats--case .t7-dark-stat:nth-child(odd) {
  padding-left: 0;
}

.t7-dark-stats--case .t7-dark-stat:nth-child(even) {
  border-right: none;
  padding-right: 0;
}

.t7-dark-stats--case .t7-dark-stat:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.t7-case-placeholder {
  border-top: 1px solid var(--line-dark);
  margin-top: 32px;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: baseline;
}

.t7-faq-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
}

/* ── Lists & rows ── */

.t7-divider-top {
  border-top: 1px solid var(--line-mid);
}

.t7-list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
  padding: 30px 16px 30px 0;
  border-bottom: 1px solid var(--line);
}

.t7-list-row--lg {
  padding: 32px 16px 32px 0;
}

.t7-list-row__num {
  flex: 0 0 70px;
  font-size: 13px;
  color: var(--ink-ghost);
}

.t7-list-row__title {
  flex: 0 0 280px;
}

.t7-list-row__body {
  flex: 1 1 320px;
  max-width: 48ch;
}

.t7-list-row__tag {
  flex: 0 0 240px;
  font-size: 13px;
  color: var(--accent);
}

.t7-list-row__content {
  flex: 1 1 460px;
}

.t7-list-row__body--wide {
  max-width: 60ch;
}

.t7-checklist {
  border-top: 1px solid var(--line-mid);
  margin-bottom: 30px;
}

.t7-checklist__item {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.t7-checklist__mark {
  color: var(--accent);
  font-size: 13px;
  flex: none;
}

.t7-checklist__text {
  font-size: 15.5px;
  color: var(--ink);
}

.t7-deliverable {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.t7-deliverable__num {
  flex: 0 0 40px;
  font-size: 13px;
  color: var(--ink-ghost);
}

.t7-deliverable__content {
  flex: 1 1 220px;
}

.t7-deliverable__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.t7-deliverable__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ── Bars chart ── */

.t7-bars {
  border-top: 1px solid var(--line-mid);
  padding-top: clamp(24px, 3vw, 36px);
}

.t7-bar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.t7-bar-label {
  flex: 0 0 120px;
  font-size: 15px;
  color: var(--ink-soft);
}

.t7-bar-label--highlight {
  color: var(--ink);
  font-weight: 500;
}

.t7-bar-track {
  flex: 1 1 auto;
  height: 12px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.t7-bar-fill {
  height: 100%;
  background: var(--ink);
}

.t7-bar-fill--93 {
  width: 93%;
}

.t7-bar-fill--44 {
  width: 44%;
}

.t7-bar-fill--19 {
  width: 19%;
  background: var(--accent);
}

.t7-bar-value {
  flex: 0 0 64px;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
}

.t7-bar-value--accent {
  font-weight: 600;
  color: var(--accent);
}

/* ── Tiles ── */

.t7-row {
  transition: background .3s ease;
}

.t7-row:hover {
  background: var(--row-hover);
}

.t7-row:hover .t7-rowtitle {
  color: var(--accent);
}

.t7-rowtitle {
  transition: color .3s ease;
}

.t7-tile {
  background: var(--paper);
  border: 1px solid var(--line-mid);
  border-radius: 2px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), border-color .3s ease, background .3s ease;
}

.t7-tile:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--row-hover);
}

.t7-ico {
  margin-bottom: 18px;
  color: var(--ink-faint);
  transition: color .3s ease, transform .35s cubic-bezier(.2, .7, .2, 1);
}

.t7-tile:hover .t7-ico {
  color: var(--accent);
  transform: translateY(-2px) scale(1.06);
}

.t7-tile:hover .t7-roi {
  color: var(--accent);
}

.t7-tile__footer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

/* ── CTA ── */

.t7-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .3s ease;
}

.t7-cta:hover {
  background: var(--accent);
}

.t7-cta--block {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  width: 100%;
  font-size: 16px;
  padding: 16px;
}

.t7-sticky-cta {
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 22px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Photo ── */

.t7-photo-wrap {
  aspect-ratio: 4/5;
  background: var(--surface-2);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 18px 44px rgba(0, 0, 0, 0.14);
}

.t7-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* ── FAQ ── */

details.t7-faq {
  border-bottom: 1px solid var(--line);
}

details.t7-faq summary {
  list-style: none;
  cursor: pointer;
  font-size: clamp(18px, 1.9vw, 23px);
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

details.t7-faq summary .t7-pm {
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  flex: none;
  transition: transform .3s ease;
}

details.t7-faq[open] summary .t7-pm {
  transform: rotate(45deg);
}

/* ── Contact ── */

.t7-contact-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line-dark);
}

.t7-contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--paper-on-dark);
  text-decoration: none;
  font-size: 15px;
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid var(--line-dark);
}

.t7-contact-link__icon {
  color: var(--faint-on-dark);
  width: 24px;
}

/* ── Footer & sticky bar ── */

.t7-footer {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  color: var(--faint-on-dark);
}

.t7-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: space-between;
  align-items: center;
}

.t7-stickybar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-mid);
  padding: 12px 18px;
  align-items: center;
  gap: 14px;
}

.t7-stickybar__text {
  flex: 1;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.t7-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

.t7-footer-link {
  color: var(--muted-on-dark);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease;
}

.t7-footer-link:hover {
  color: var(--paper-on-dark);
}

.t7-footer-link--btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ── Cookie banner ── */

.t7-cookie-banner {
  position: fixed;
  z-index: 70;
  left: 24px;
  bottom: 24px;
  width: min(400px, calc(100vw - 48px));
  background: var(--ink);
  color: var(--muted-on-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.t7-cookie-banner.is-hidden {
  display: none;
}

.t7-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t7-cookie-banner__label {
  font-size: 11px;
  color: var(--accent-dk);
  letter-spacing: 0.02em;
}

.t7-cookie-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted-on-dark);
}

.t7-cookie-banner__link {
  color: var(--accent-dk);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.t7-cookie-banner__link:hover {
  color: var(--paper-on-dark);
}

.t7-cookie-banner__text-short {
  display: none;
}

.t7-cookie-banner__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.t7-cookie-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.t7-cookie-btn--accept {
  flex: 1;
  background: var(--accent-dk);
  color: var(--ink);
  border: 1px solid var(--accent-dk);
}

.t7-cookie-btn--accept:hover {
  background: var(--paper-on-dark);
  border-color: var(--paper-on-dark);
}

.t7-cookie-btn--ghost {
  background: transparent;
  color: var(--faint-on-dark);
  border: 1px solid var(--line-dark);
}

.t7-cookie-btn--ghost:hover {
  color: var(--paper-on-dark);
  border-color: var(--faint-on-dark);
}

/* ── Legal / privacy page ── */

.t7-legal {
  max-width: 720px;
}

.t7-legal h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
}

.t7-legal h2:first-of-type {
  margin-top: 32px;
}

.t7-legal p,
.t7-legal li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.t7-legal ul {
  margin: 12px 0;
  padding-left: 1.25em;
}

.t7-legal li {
  margin-bottom: 8px;
}

.t7-legal a {
  color: var(--accent);
}

.t7-legal code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 2px;
}

.t7-legal__updated {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 48px;
}

.t7-legal__btn {
  margin-top: 8px;
}

/* ── Reveal ── */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

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

/* ── Responsive ── */

/* Pricing: below ~1012px viewport the third column wraps alone */
@media (max-width: 1011px) and (min-width: 761px) {
  .t7-price-col--right {
    flex: 1 1 100%;
    padding-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .t7-navlinks {
    display: none;
  }

  .t7-stickybar {
    display: flex !important;
  }

  .t7-pagepad {
    padding-bottom: 84px !important;
  }

  .t7-wrap--hero {
    padding: clamp(40px, 8vw, 72px) 20px clamp(32px, 6vw, 56px);
  }

  .t7-wrap--section,
  .t7-wrap--dark {
    padding: clamp(48px, 10vw, 80px) 20px;
  }

  .t7-header__inner,
  .t7-footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .t7-section-head,
  .t7-section-head--md,
  .t7-section-head--sm,
  .t7-section-head--dark {
    margin-bottom: clamp(28px, 6vw, 48px);
  }

  .t7-col-aside {
    border-left: none;
    border-top: 1px solid var(--line-mid);
    padding-left: 0;
    padding-top: 24px;
    max-width: none;
  }

  .t7-h1,
  .t7-h2,
  .t7-h2--section,
  .t7-h2--wide,
  .t7-h2--narrow,
  .t7-h2--sm,
  .t7-h2--about,
  .t7-h2--contact {
    max-width: none;
  }

  .t7-stat-cell {
    flex: 1 1 100%;
    min-height: 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .t7-stat-cell .t7-body--proof {
    min-height: calc(14.5px * 1.5 * 3);
  }

  #o-mnie .t7-col-photo {
    flex: 1 1 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .t7-stat-cell:last-child {
    border-bottom: none;
  }

  .t7-callout,
  .t7-callout--right {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .t7-callout:last-child {
    border-bottom: none;
  }

  .t7-price-col,
  .t7-price-col--right {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .t7-price-col--right {
    border-bottom: none;
  }

  .t7-dark-stat {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
    padding: 24px 0;
  }

  .t7-dark-stat:first-child {
    padding-left: 0;
  }

  .t7-dark-stat:last-child {
    border-bottom: none;
    padding-right: 0;
  }

  .t7-dark-stats--case {
    grid-template-columns: 1fr;
  }

  .t7-dark-stats--case .t7-dark-stat {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .t7-dark-stats--case .t7-dark-stat:nth-child(odd) {
    padding-left: 0;
  }

  .t7-dark-stats--case .t7-dark-stat:nth-child(even) {
    padding-right: 0;
  }

  .t7-dark-stats--case .t7-dark-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .t7-volvo-case__head {
    grid-template-columns: 1fr;
  }

  .t7-volvo-case__brand {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-start;
    width: min(200px, 75vw);
    padding-block: clamp(14px, 3vw, 22px);
  }

  .t7-case-study__head {
    grid-template-columns: 1fr;
  }

  .t7-case-study__lead {
    grid-row: 3;
  }

  .t7-case-study__logo {
    grid-column: 1;
    grid-row: 2;
    width: min(200px, 75vw);
  }

  .t7-list-row,
  .t7-list-row--lg {
    padding-right: 0;
    gap: 12px;
  }

  .t7-list-row__num,
  .t7-list-row__tag {
    flex: 0 0 auto;
  }

  .t7-list-row__title {
    flex: 1 1 100%;
  }

  .t7-list-row__body,
  .t7-list-row__body--wide {
    flex: 1 1 100%;
    max-width: none;
  }

  .t7-bar-label {
    flex: 0 0 72px;
    font-size: 14px;
  }

  .t7-bar-value {
    flex: 0 0 52px;
    font-size: 14px;
  }

  .t7-col-faq-side {
    max-width: none;
  }

  .t7-tile-grid {
    grid-template-columns: 1fr;
  }

  .t7-cookie-banner {
    left: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 16px 18px;
  }

  html.t7-cookie-banner-visible:has(.t7-stickybar) .t7-cookie-banner {
    bottom: 68px;
  }

  html.t7-cookie-banner-visible:has(.t7-stickybar) .t7-pagepad {
    padding-bottom: calc(84px + 128px) !important;
  }

  .t7-cookie-banner__text {
    font-size: 12px;
  }

  .t7-cookie-banner__text-full {
    display: none;
  }

  .t7-cookie-banner__text-short {
    display: inline;
  }

  .t7-cookie-btn {
    padding: 9px 12px;
    font-size: 11px;
  }
}
