/* =============================================
   HEARDWORX — Main Stylesheet
   Dark industrial. Orange accent. Clean.
   ============================================= */

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

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0A0A0A;
  --surface:      #141414;
  --surface-2:    #1C1C1C;
  --border:       #262626;
  --border-2:     #333;
  --text:         #F0EDE8;
  --text-muted:   #888;
  --accent:       #E8620A;
  --accent-hover: #F07328;
  --accent-dim:   rgba(232, 98, 10, 0.12);
  --accent-dim2:  rgba(232, 98, 10, 0.25);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:        1100px;
  --r:            6px;
  --t:            200ms ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

a { color: inherit; }
img { display: block; max-width: 100%; }


/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { line-height: 1.75; color: var(--text-muted); }

.text-accent   { color: var(--accent); }
.text-muted    { color: var(--text-muted); }
.text-white    { color: var(--text); }
.text-center   { text-align: center; }


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

.section       { padding: 96px 0; }
.section--sm   { padding: 64px 0; }
.section--lg   { padding: 120px 0; }

.divider { height: 1px; background: var(--border); }


/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav__links a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--t);
}
.nav__links a:hover,
.nav__links a.active { color: var(--accent); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid #e8e8e8;
  background: #ffffff;
  padding: 16px 0;
}
.nav__mobile-menu a {
  display: block;
  padding: 12px 24px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color var(--t);
}
.nav__mobile-menu a:hover { color: var(--accent); }
.nav__mobile-menu.open { display: flex; }


/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  border: 1.5px solid transparent;
  font-family: var(--font);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 98, 10, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--text); }

.btn--lg { padding: 14px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }

.btn--full { width: 100%; }


/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
}

.card--hover {
  transition: border-color var(--t), transform var(--t);
  cursor: pointer;
}
.card--hover:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card--accent {
  border-color: var(--accent);
  background: var(--surface);
}


/* =============================================
   SECTION HEADERS
   ============================================= */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center { text-align: center; }
.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}


/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 130px 0 110px;
  position: relative;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

/* Dark gradient overlay so text stays readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.82) 0%,
    rgba(8, 8, 8, 0.72) 55%,
    rgba(8, 8, 8, 0.40) 100%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero__title {
  margin-bottom: 24px;
  max-width: 760px;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(240, 237, 232, 0.85);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}


/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--surface);
}

.trust-bar__items {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0 24px;
  white-space: nowrap;
}

.trust-bar__item + .trust-bar__item {
  border-left: 1px solid var(--border-2);
}

.trust-bar__icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}


/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.step {
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.step:not(:last-child) { border-right: none; }
.step:first-child { border-radius: var(--r) 0 0 var(--r); }
.step:last-child { border-radius: 0 var(--r) var(--r) 0; }

.step__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.step__desc {
  font-size: 0.875rem;
  line-height: 1.65;
}


/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}

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

.service-card--featured {
  border-color: var(--accent);
}

.service-card--featured:hover {
  border-color: var(--accent-hover);
}

.service-card__badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.service-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}

.service-card__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.service-card__meta {
  list-style: none;
  margin-bottom: 28px;
}

.service-card__meta li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-card__meta li:last-child { border-bottom: none; }
.service-card__meta li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}


/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 22px 0;
  font-size: 0.975rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font);
  line-height: 1.5;
  transition: color var(--t);
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 300ms ease;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 400px; }


/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-header__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-header__title { margin-bottom: 16px; }

.page-header__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}


/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.015em;
}

.form-label span {
  color: var(--accent);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--r);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 98, 10, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: #555; }

.form-textarea { min-height: 120px; resize: vertical; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 7px;
  line-height: 1.5;
}

.form-file-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  border: 2px dashed var(--border-2);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  text-align: center;
  position: relative;
}

.form-file-input:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.form-file-input input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-file-input__icon { color: var(--accent); }
.form-file-input__label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.form-file-input__sub { font-size: 0.8rem; color: var(--text-muted); }


/* =============================================
   ORDER PAGE
   ============================================= */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.order-steps-indicator {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.order-step-indicator {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.order-step-indicator:last-child { border-right: none; }

.order-step-indicator.active {
  background: var(--accent-dim);
  color: var(--accent);
}

.order-step-indicator.done {
  color: var(--accent);
}

.order-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.order-step-indicator.active .order-step-num,
.order-step-indicator.done .order-step-num {
  background: var(--accent);
  color: #fff;
}

.order-sidebar {
  position: sticky;
  top: 88px;
}

.order-sidebar__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.trust-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.trust-item:last-child { border-bottom: none; }

.trust-item__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.trust-item__desc {
  font-size: 0.8rem;
  line-height: 1.55;
}


/* =============================================
   HIGHLIGHT BOX
   ============================================= */
.highlight-box {
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim2);
  border-radius: var(--r);
  padding: 20px 24px;
}

.highlight-box p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
}

.highlight-box strong { color: var(--accent); }

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
}

.info-box p {
  font-size: 0.875rem;
  line-height: 1.65;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.footer__logo span { color: var(--accent); }

.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__ai {
  font-size: 0.78rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
}

.footer__links li { margin-bottom: 12px; }

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--t);
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p { font-size: 0.8rem; }

.footer__cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 48px;
  text-align: center;
  margin-bottom: 64px;
}

.footer__cta h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.footer__cta p {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
}


/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
  max-width: 740px;
  padding: 64px 0 96px;
}

.legal-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 18px 20px;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  margin-top: 48px;
  font-size: 0.9rem;
}

.legal-contact-box a {
  color: var(--accent);
  text-decoration: none;
}

.legal-contact-box a:hover { text-decoration: underline; }


/* =============================================
   ABOUT PAGE
   ============================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.about-photo {
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
}

.about-photo svg { color: var(--border-2); }

.about-stat {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.about-stat:first-child { border-top: 1px solid var(--border); }

.about-stat__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
}


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-method {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:first-child { border-top: 1px solid var(--border); }
.contact-method__icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-method__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-method__value { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-method__sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }


/* =============================================
   404 PAGE
   ============================================= */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.not-found__num {
  font-size: 7rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}

.not-found__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.not-found__sub {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto 36px;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .order-layout       { grid-template-columns: 1fr; }
  .order-sidebar      { position: static; }
  .about-layout       { grid-template-columns: 1fr; }
  .contact-layout     { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero               { padding: 80px 0 72px; background-position: 70% center; }
  .section            { padding: 64px 0; }
  .section--lg        { padding: 80px 0; }
  .page-header        { padding: 56px 0 48px; }
  .nav__links           { display: none; }
  .nav__right .btn      { display: none; }
  .nav__mobile-toggle   { display: block; }
  .nav__inner           { height: 100px; }
  .nav__logo-img        { height: 75px; }
  .steps              { grid-template-columns: 1fr; }
  .step               { border-right: 1px solid var(--border) !important; border-radius: 0 !important; }
  .step:first-child   { border-radius: var(--r) var(--r) 0 0 !important; }
  .step:last-child    { border-radius: 0 0 var(--r) var(--r) !important; }
  .services-grid      { grid-template-columns: 1fr; }
  .footer__grid       { grid-template-columns: 1fr; }
  .footer__cta        { padding: 36px 24px; }
  .order-steps-indicator { display: none; }
  .trust-bar__items   { flex-wrap: wrap; justify-content: center; }
  .trust-bar__item    { padding: 6px 16px; white-space: normal; }
  .trust-bar__item + .trust-bar__item { border-left: none; border-top: 1px solid var(--border-2); width: 100%; justify-content: center; }
}
