:root {
  --ink: #141414;
  --muted: #66635f;
  --line: #e7e1d8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --red: #c7271a;
  --red-dark: #971b13;
  --gold: #c89535;
  --green: #2f6f5e;
  --coal: #22201e;
  --shadow: 0 22px 70px rgba(24, 20, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.topbar.is-scrolled,
.topbar--solid {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 12px 35px rgba(34, 32, 30, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.topbar.is-scrolled .brand__mark,
.topbar--solid .brand__mark {
  border-color: transparent;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  font-size: 14px;
  color: currentColor;
}

.nav a,
.topbar__phone,
.topbar__cta {
  opacity: 0.86;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover,
.topbar__phone:hover,
.topbar__cta:hover {
  opacity: 1;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.topbar__phone {
  font-size: 14px;
  font-weight: 800;
}

.topbar__cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.hero__image img,
.hero__shade,
.hero__content {
  grid-area: 1 / 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  min-height: 94vh;
  object-fit: cover;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.88) 0%, rgba(11, 10, 9, 0.7) 34%, rgba(11, 10, 9, 0.2) 72%, rgba(11, 10, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.4), rgba(11, 10, 9, 0.1) 48%, rgba(11, 10, 9, 0.72));
}

.hero__content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 148px;
  padding-bottom: 54px;
  align-self: end;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

p,
li,
summary,
dd {
  text-wrap: pretty;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.7vw, 20px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(199, 39, 26, 0.28);
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button--call {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  background: var(--white);
}

.hero__trust {
  display: flex;
  max-width: 920px;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 42px;
}

.hero__trust span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero__stats {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero__stats div {
  padding: 22px;
  background: rgba(20, 20, 20, 0.58);
  backdrop-filter: blur(10px);
}

.hero__stats dt {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 850;
}

.hero__stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 110px;
}

.section__head {
  max-width: 850px;
  margin-bottom: 34px;
}

.section__head h2,
.proof__content h2,
.request__copy h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4.7vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.strip {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--white);
  background: var(--coal);
  overflow: hidden;
}

.strip__track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: move 26s linear infinite;
}

.strip span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

@keyframes move {
  to {
    transform: translateX(-38%);
  }
}

.intro {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 90px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.triggers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.credibility__item {
  min-height: 180px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
}

.credibility__item strong,
.credibility__item span {
  display: block;
}

.credibility__item strong {
  margin-bottom: 12px;
  color: var(--red);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.credibility__item span {
  color: var(--muted);
}

.directions {
  background: var(--white);
}

.directions > .section__head,
.titanium-stock > .section__head,
.titanium-process > .section__head {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.direction-grid,
.stock-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.direction-grid a,
.stock-grid article {
  display: block;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.direction-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 39, 26, 0.35);
  box-shadow: 0 18px 45px rgba(24, 20, 16, 0.1);
}

.direction-grid span,
.stock-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 850;
}

.direction-grid h3,
.stock-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.direction-grid p,
.stock-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.trigger {
  min-height: 190px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.trigger strong,
.trigger span {
  display: block;
}

.trigger strong {
  margin-bottom: 12px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.08;
}

.trigger span {
  color: var(--muted);
  font-size: 17px;
}

.media-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.media-proof__image {
  justify-self: end;
  width: min(620px, 100%);
}

.media-proof__image img,
.delivery-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-proof__copy {
  width: min(590px, 100%);
}

.media-proof__copy h2,
.delivery-shot__copy h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

.media-proof__copy p:not(.eyebrow),
.delivery-shot__copy p {
  color: var(--muted);
  font-size: 18px;
}

.auto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(43, 40, 37, 0.96)),
    radial-gradient(circle at 78% 20%, rgba(199, 39, 26, 0.34), transparent 36%);
  color: var(--white);
}

.auto__content {
  justify-self: end;
  width: min(720px, 100%);
}

.auto__content h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
}

.auto__content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.auto__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.auto__steps span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.auto__panel {
  align-self: stretch;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.auto__panel strong {
  display: block;
  margin-bottom: 22px;
  font-size: 25px;
}

.auto__panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auto__panel li {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.titanium-page {
  background: var(--paper);
}

.titanium-hero h1 {
  max-width: 760px;
}

.titanium-intro {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 7vw, 90px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.titanium-stock {
  background: var(--white);
}

.titanium-process {
  background: #f3efe8;
}

.titanium-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  background: var(--coal);
  color: var(--white);
}

.intro__text {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 19px;
}

.intro__text p {
  margin-bottom: 0;
}

.services {
  background: var(--white);
}

.services > .section__head,
.process > .section__head,
.calculator > .section__head,
.objections > .section__head,
.seo-hub > .section__head,
.faq > .section__head {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.service {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service__icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 850;
}

.service h3,
.step h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.16;
}

.service p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  background: #f3efe8;
}

.timeline {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--line);
  box-shadow: var(--shadow);
}

.step {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  background: var(--coal);
  color: var(--white);
}

.proof__content,
.proof__points {
  width: min(560px, 100%);
}

.proof__content {
  justify-self: end;
}

.proof__content p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.proof__points {
  display: grid;
  gap: 1px;
  align-self: start;
  background: rgba(255, 255, 255, 0.16);
}

.proof__points div {
  padding: 24px;
  background: #2b2825;
}

.proof__points strong,
.proof__points span {
  display: block;
}

.proof__points strong {
  margin-bottom: 7px;
  font-size: 20px;
}

.proof__points span {
  color: rgba(255, 255, 255, 0.7);
}

.reviews {
  background: #f3efe8;
}

.review-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.review-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(24, 20, 16, 0.08);
}

.review-grid p {
  margin-bottom: 28px;
  color: var(--coal);
  font-size: 18px;
}

.review-grid strong {
  color: var(--red);
}

.objections {
  background: var(--white);
}

.objection-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.objection-grid article {
  min-height: 210px;
  padding: 24px;
  border-top: 4px solid var(--red);
  background: var(--paper);
}

.objection-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.14;
}

.objection-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.calculator {
  background: var(--paper);
}

.picker {
  display: flex;
  width: min(1180px, 100%);
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 18px;
}

.picker__item {
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.picker__item.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.calculator__result {
  width: min(1180px, 100%);
  min-height: 92px;
  margin: 0 auto;
  padding: 25px;
  border-left: 5px solid var(--green);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(24, 20, 16, 0.08);
  color: var(--muted);
  font-size: 18px;
}

.delivery-shot {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: #f3efe8;
}

.delivery-shot__copy {
  justify-self: end;
  width: min(560px, 100%);
}

.delivery-shot img {
  width: min(620px, 100%);
}

.seo-hub {
  background: var(--white);
}

.article-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.article-card {
  display: block;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 39, 26, 0.35);
  box-shadow: 0 18px 45px rgba(24, 20, 16, 0.1);
}

.article-card span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  width: min(1180px, 100%);
  gap: 10px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 17px;
}

.request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--white);
}

.request__copy {
  justify-self: end;
  width: min(610px, 100%);
}

.request__copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

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

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--coal);
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--green);
}

.lead-form {
  width: min(680px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lead-form label,
.lead-form span {
  display: block;
}

.lead-form label {
  margin-bottom: 16px;
}

.lead-form span {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d9d1c6;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 14px 13px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(199, 39, 26, 0.12);
}

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

.form-grid--contacts {
  grid-template-columns: 1fr 1fr;
}

.form-grid--contacts label:first-child {
  grid-column: 1 / -1;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 700;
}

.form-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: var(--coal);
  color: var(--white);
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

.article-page {
  background: var(--white);
}

.article-hero {
  padding: clamp(82px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(62px, 8vw, 92px);
  background: var(--coal);
  color: var(--white);
}

.article-hero > * {
  width: min(1050px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.article-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
}

.article-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
}

.article-hero--post h1 {
  max-width: 1060px;
}

.article-layout {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.article-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-toc strong {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.article-toc a {
  color: var(--coal);
  font-weight: 750;
}

.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin: 48px 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 19px;
}

.article-lead {
  color: var(--coal) !important;
  font-size: clamp(20px, 2.3vw, 25px) !important;
  line-height: 1.38;
}

.article-note {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 24px;
  border-left: 5px solid var(--green);
  background: var(--paper);
}

.article-note strong,
.article-note span {
  display: block;
}

.article-note span {
  color: var(--muted);
  font-size: 18px;
}

.article-steps,
.article-checklist {
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.article-steps strong {
  color: var(--coal);
}

.article-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.article-grid-simple div {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-grid-simple strong,
.article-grid-simple span {
  display: block;
}

.article-grid-simple strong {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 20px;
  line-height: 1.12;
}

.article-grid-simple span {
  color: var(--muted);
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 48px 0;
  padding: clamp(24px, 4vw, 36px);
  background: var(--coal);
  color: var(--white);
}

.article-cta h2 {
  margin: 0 0 14px;
  color: var(--white);
}

.article-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.article-faq {
  margin-top: 54px;
}

.article-faq details {
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-faq details + details {
  margin-top: 10px;
}

.article-faq summary {
  cursor: pointer;
  padding: 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.article-faq p {
  margin: 0;
  padding: 0 20px 20px;
}

.article-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.article-next a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--red);
  font-weight: 800;
}

.content-plan {
  background: var(--paper);
}

.featured-article {
  width: min(1180px, 100%);
  margin: 0 auto 20px;
}

.featured-article a {
  display: block;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(199, 39, 26, 0.24);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(24, 20, 16, 0.08);
}

.featured-article span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.featured-article h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.featured-article p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.topic-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.topic-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.topic-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 850;
}

.topic-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.14;
}

.topic-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-roadmap {
  background: var(--white);
}

.roadmap-list {
  display: grid;
  width: min(900px, 100%);
  gap: 10px;
  margin: 0 auto 28px;
  padding-left: 22px;
  color: var(--coal);
  font-size: 19px;
}

.article-roadmap .button {
  display: flex;
  width: min(320px, 100%);
  margin: 0 auto;
}

.breadcrumbs {
  position: absolute;
  z-index: 3;
  top: 86px;
  left: clamp(18px, 4vw, 56px);
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.42);
}

.seo-intent,
.titanium-industries {
  background: var(--white);
}

.seo-intent > .section__head,
.titanium-industries > .section__head {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.intent-grid,
.industry-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}

.intent-grid a,
.industry-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.intent-grid strong,
.intent-grid span {
  display: block;
}

.intent-grid strong,
.industry-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
}

.intent-grid strong {
  color: var(--red);
}

.intent-grid span,
.industry-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.titanium-docs {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  background: #f3efe8;
}

.titanium-docs .proof__content {
  color: var(--ink);
}

.titanium-docs .proof__content p:not(.eyebrow) {
  color: var(--muted);
}

.titanium-docs .proof__points {
  background: var(--line);
}

.titanium-docs .proof__points div {
  background: var(--white);
}

.titanium-docs .proof__points span {
  color: var(--muted);
}

.titanium-docs .proof__points strong {
  color: var(--ink);
}

@media (max-width: 920px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding-bottom: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 4px;
    font-size: 13px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    padding: 8px 10px;
    border: 1px solid rgba(20, 20, 20, 0.1);
    background: rgba(255, 255, 255, 0.72);
  }

  .topbar__actions {
    margin-left: auto;
  }

  .hero {
    min-height: 880px;
  }

  .hero__image img {
    min-height: 880px;
  }

  .hero__content {
    padding-top: 212px;
  }

  .article-hero {
    padding-top: 212px;
  }

  .hero__stats,
  .intro,
  .titanium-intro,
  .triggers,
  .credibility,
  .media-proof,
  .auto,
  .proof,
  .titanium-proof,
  .titanium-docs,
  .article-layout,
  .delivery-shot,
  .request {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .proof__content,
  .proof__points,
  .request__copy,
  .media-proof__image,
  .delivery-shot__copy {
    justify-self: stretch;
    width: 100%;
  }

  .service-grid,
  .objection-grid,
  .article-grid,
  .topic-grid,
  .direction-grid,
  .stock-grid,
  .review-grid,
  .intent-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid-simple,
  .article-cta {
    grid-template-columns: 1fr;
  }

  .delivery-shot img {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .topbar__phone {
    font-size: 13px;
  }

  .topbar__cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .nav {
    margin-right: -14px;
    padding-right: 14px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(20, 20, 20, 0.08);
    background: rgba(251, 250, 247, 0.94);
    box-shadow: 0 18px 48px rgba(24, 20, 16, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-cta__call {
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--white);
  }

  .mobile-cta__request {
    color: var(--white);
    background: var(--red);
  }

  .hero {
    min-height: 960px;
  }

  .hero__image img {
    min-height: 960px;
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(11, 10, 9, 0.9), rgba(11, 10, 9, 0.42)),
      linear-gradient(180deg, rgba(11, 10, 9, 0.48), rgba(11, 10, 9, 0.22) 42%, rgba(11, 10, 9, 0.86));
  }

  .hero__stats {
    gap: 1px;
  }

  .hero__stats div {
    padding: 18px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .objection-grid,
  .article-grid,
  .review-grid,
  .direction-grid,
    .stock-grid,
    .intent-grid,
    .industry-grid,
    .article-grid-simple,
    .topic-grid,
    .form-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    width: min(100% - 36px, 1180px);
  }

  .article-cta .button {
    width: 100%;
  }

  .breadcrumbs {
    display: none;
  }

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

  .service {
    min-height: 220px;
  }

  .timeline {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .step {
    min-height: auto;
  }

  .step span {
    margin-bottom: 24px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
