:root {
  --bg: #050505;
  --bg-soft: #0d0d0c;
  --panel: #141414;
  --panel-2: #1b1b1a;
  --text: #fbfbf6;
  --muted: #aaa9a1;
  --line: rgba(255, 255, 255, 0.13);
  --orange: #ff4d16;
  --orange-2: #ff8a36;
  --white: #ffffff;
  --paper: #f3f2ed;
  --ink: #111111;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --carbon: linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 10%, transparent 10% 50%, rgba(255, 255, 255, 0.035) 50% 60%, transparent 60% 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 90, 31, 0.12), transparent 28rem),
    linear-gradient(180deg, #080808 0%, #101010 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand img {
  width: clamp(158px, 13vw, 220px);
  height: auto;
  border-radius: 2px;
}

.brand span span {
  color: var(--orange);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.brand-mark::before {
  width: 16px;
  height: 2px;
  left: 7px;
  top: 14px;
  transform: rotate(-22deg);
}

.brand-mark::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  right: 5px;
  top: 9px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d8d8d2;
  font-size: 0.92rem;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 750;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border-color: var(--line);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius);
  min-height: 40px;
  padding: 0 12px;
}

.hero {
  min-height: calc(92vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  align-items: center;
  gap: 28px;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px) 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 710px;
  position: relative;
  z-index: 2;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5.8vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 610px;
  color: #c7c7c0;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
}

.proof-row div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.proof-row strong {
  display: block;
  font-size: 1.45rem;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 520px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -8% -2% 10%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.9));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center right;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-product-card {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  width: min(320px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-product-card span,
.hero-product-card a {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-product-card strong {
  display: block;
  margin: 8px 0 14px;
  line-height: 1.25;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip article {
  padding: 28px clamp(18px, 3vw, 42px);
  background: #0d0d0d;
}

.trust-strip span,
.section-label,
.article-grid span {
  color: var(--orange);
  font-weight: 850;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-strip h2,
.trust-strip p {
  margin-bottom: 0;
}

.trust-strip h2 {
  margin-top: 10px;
  font-size: 1rem;
}

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

.testimonials,
.finder-section {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(54px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.finder-section {
  background: var(--paper);
  color: var(--ink);
}

.finder-section .section-heading p:not(.section-label) {
  color: #5c5c56;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.guide-card span {
  color: var(--orange);
  font-weight: 900;
}

.guide-card h3 {
  font-size: 1.55rem;
  margin: 0;
}

.guide-card p {
  color: #60605a;
  line-height: 1.6;
}

.guide-card button {
  align-self: end;
  justify-self: start;
  min-height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-grid p {
  color: #deded7;
  line-height: 1.65;
}

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

.testimonial-grid span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.88rem;
}

section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.split-layout h2,
.service-panel h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.section-heading p,
.split-layout > div > p,
.service-panel p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.filter-group {
  display: flex;
  gap: 8px;
}

.filter-btn,
.quick-actions button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #151515;
  color: var(--text);
  cursor: pointer;
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
}

.select-label,
.range-label,
form label {
  display: grid;
  gap: 8px;
  color: #d8d8d2;
  font-size: 0.86rem;
  font-weight: 700;
}

select,
input,
textarea {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101010;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

input[type="range"] {
  accent-color: var(--orange);
  width: 220px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #171717, #0f0f0f);
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.65);
}

.product-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: #0d0d0d;
  filter: brightness(1.1) contrast(1.04);
}

.product-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.product-image-button img {
  transition: transform 220ms ease;
}

.product-card:hover .product-image-button img {
  transform: scale(1.035);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.product-slogan-card {
  color: #f2f2ee;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

.product-card-copy {
  color: #c7c7c0;
  line-height: 1.55;
  min-height: 3.1em;
}

.spec-list {
  display: grid;
  gap: 8px;
  color: #c7c7c0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.compact-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.compact-specs span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.compact-specs strong {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.price-line strong {
  font-size: 1.5rem;
}

.price-line span {
  color: var(--muted);
  font-size: 0.78rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions .btn {
  min-height: 42px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.price-note {
  margin-top: 24px;
  border: 1px solid rgba(255, 90, 31, 0.34);
  background: rgba(255, 90, 31, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  color: #d8d8d2;
  line-height: 1.65;
}

.advantages,
.faq-section,
.service-section {
  background: var(--paper);
  color: var(--ink);
}

.advantages .section-label,
.faq-section .section-label,
.service-section .section-label {
  color: #d94a16;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.split-layout > div > p,
.service-panel p,
.contact-card p {
  color: #5c5c56;
}

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

.advantage-list article,
.process-grid article,
.article-grid article,
.faq-item,
.form-card,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: white;
  padding: 24px;
}

.advantage-list p,
.article-grid p,
.process-grid p,
.faq-answer {
  color: #62625c;
  line-height: 1.65;
}

.process-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article,
.article-grid article {
  background: #151515;
  border-color: var(--line);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 900;
  margin-bottom: 20px;
}

.service-panel,
.service-ai-shell,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-ai-shell {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  max-width: 100%;
}

.service-copy {
  align-self: start;
  min-width: 0;
  max-width: 100%;
}

.service-copy h2 {
  overflow-wrap: anywhere;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #30302d;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.form-card,
.contact-form,
.sav-ai-form {
  display: grid;
  gap: 14px;
}

.form-card {
  background: #111;
  color: var(--text);
  border-color: var(--line);
}

.form-card h3 {
  margin-bottom: 4px;
}

.sav-ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 14px;
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
}

.sav-ai-form,
.sav-ai-result {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  color: var(--text);
  padding: 22px;
}

.form-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.form-header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.form-header span,
.result-label {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sav-switches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sav-switches label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 10px;
  color: #d8d8d2;
  font-size: 0.84rem;
  font-weight: 800;
}

.sav-switches input {
  min-height: auto;
  accent-color: var(--orange);
}

.sav-ai-result {
  display: grid;
  align-content: start;
  gap: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.16), transparent 14rem),
    #101010;
}

.sav-ai-result h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.sav-ai-result p {
  color: #d8d8d2;
  line-height: 1.65;
}

.result-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.result-placeholder span,
.sav-ai-result small {
  color: var(--muted);
  font-size: 0.82rem;
}

.result-placeholder strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.sav-next-steps {
  display: grid;
  gap: 8px;
}

.sav-next-steps h4 {
  margin: 0 0 4px;
}

.sav-next-steps span {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  color: #ededed;
}

.sav-escalation {
  border-left: 3px solid var(--orange);
  padding-left: 12px;
}

.priority-urgent h3 {
  color: #ff3b1f;
}

.priority-prioritaire h3 {
  color: var(--orange);
}

.priority-standard h3 {
  color: #f8f8f5;
}

.form-status {
  min-height: 1.4em;
  color: var(--orange-2);
  margin: 0;
}

.blog-section .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 0;
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

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

.quote-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 14px;
  min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #f8f8f5;
  border-color: rgba(17, 17, 17, 0.15);
  color: var(--ink);
}

.quote-result {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.18), transparent 15rem),
    #101010;
  color: var(--text);
  padding: 22px;
}

.quote-result h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.quote-result p,
.quote-note {
  color: #d8d8d2;
  line-height: 1.6;
}

.quote-mini-card,
.quote-total {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.quote-mini-card span,
.quote-total span,
.quote-line small {
  color: var(--muted);
}

.quote-mini-card strong,
.quote-total strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.quote-lines {
  display: grid;
  gap: 8px;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
}

.quote-line span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.quote-line strong,
.quote-line small {
  overflow-wrap: anywhere;
}

.quote-line b {
  flex: 0 0 auto;
  color: var(--orange-2);
  white-space: nowrap;
}

.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-total strong {
  margin: 0;
  font-size: 1.35rem;
}

.quote-note {
  margin: 0;
  font-size: 0.9rem;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  padding: 0 14px;
  font-weight: 850;
}

.site-header {
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  box-shadow: 0 0 0 6px rgba(255, 77, 22, 0.08), 0 0 30px rgba(255, 77, 22, 0.28);
}

.conversion-bar {
  position: sticky;
  top: 75px;
  z-index: 45;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 9px 20px;
  border-bottom: 1px solid rgba(255, 77, 22, 0.28);
  background: linear-gradient(90deg, rgba(255, 77, 22, 0.2), rgba(12, 12, 12, 0.92), rgba(255, 77, 22, 0.12));
  color: #f2f2ee;
  backdrop-filter: blur(18px);
  font-size: 0.9rem;
}

.conversion-bar a {
  color: var(--orange-2);
  font-weight: 900;
}

.section-dark {
  background:
    linear-gradient(120deg, rgba(255, 77, 22, 0.1), transparent 32rem),
    var(--carbon),
    linear-gradient(180deg, #070707 0%, #10100f 100%);
  background-size: auto, 22px 22px, auto;
}

.hero {
  position: relative;
  min-height: calc(96vh - 112px);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 76px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 13% 0 auto 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 22, 0.9), transparent);
  transform: skewY(-10deg);
}

.hero-copy h1 {
  max-width: 820px;
  text-wrap: balance;
}

.hero-copy p {
  color: #dfdfd8;
}

.btn-primary,
.header-cta {
  box-shadow: 0 14px 30px rgba(255, 77, 22, 0.26);
}

.btn-primary:hover,
.header-cta:hover {
  background: #ff6a25;
}

.proof-row {
  gap: 10px;
}

.proof-row div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-media img {
  height: min(76vh, 760px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: perspective(900px) rotateY(-3deg);
}

.hero-product-card {
  right: auto;
  left: clamp(14px, 3vw, 34px);
  border-color: rgba(255, 77, 22, 0.42);
  background: rgba(10, 10, 10, 0.82);
}

.hero-safety-card {
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  top: clamp(14px, 4vw, 56px);
  width: min(300px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(16px);
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-safety-card strong,
.hero-safety-card span {
  display: block;
}

.hero-safety-card strong {
  color: var(--orange-2);
  margin-bottom: 6px;
}

.hero-safety-card span {
  color: #e5e5dd;
  line-height: 1.45;
  font-size: 0.9rem;
}

.trust-strip article {
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.08), transparent 44%),
    #0c0c0b;
}

.value-section,
.decision-section {
  background: var(--paper);
  color: var(--ink);
}

.value-section .section-label,
.decision-section .section-label {
  color: #d64612;
}

.value-grid,
.social-grid,
.decision-list {
  display: grid;
  gap: 14px;
}

.value-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.value-grid article,
.decision-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
}

.value-grid article::after,
.decision-list article::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 3px;
  background: var(--orange);
}

.value-grid span {
  color: var(--orange);
  font-weight: 900;
}

.value-grid h3,
.decision-list h3 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.value-grid p,
.decision-section p,
.decision-list p {
  color: #5c5c56;
  line-height: 1.7;
}

.finder-section {
  background:
    linear-gradient(90deg, rgba(255, 77, 22, 0.1), transparent 40%),
    #f2f1ec;
}

.guide-card {
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.1), transparent 46%),
    #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.guide-card button {
  background: linear-gradient(90deg, #111, #2a1a14);
}

.product-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 77, 22, 0.12), transparent 42%),
    linear-gradient(180deg, #181817, #0b0b0a);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(255, 77, 22, 0.8);
  pointer-events: none;
}

.product-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.product-fit {
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--orange);
  margin: 14px 0;
  padding: 10px 0 10px 12px;
  background: linear-gradient(90deg, rgba(255, 77, 22, 0.1), transparent);
}

.product-fit strong {
  color: var(--orange-2);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.product-fit span {
  display: -webkit-box;
  overflow: hidden;
  color: #e2e2dc;
  line-height: 1.45;
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-line em {
  border: 1px solid rgba(255, 77, 22, 0.38);
  border-radius: 999px;
  color: var(--orange-2);
  background: rgba(255, 77, 22, 0.1);
  padding: 7px 10px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.social-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.social-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 26px;
}

.social-grid strong {
  display: block;
  color: var(--orange-2);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1;
}

.social-grid span {
  display: block;
  margin: 8px 0 18px;
  color: #f4f4ed;
  font-weight: 900;
}

.social-grid p {
  color: #c8c8c0;
  line-height: 1.65;
}

.advantages,
.faq-section,
.service-section {
  background:
    linear-gradient(180deg, #f3f2ed, #ffffff 58%, #f3f2ed);
}

.advantage-list article,
.process-grid article,
.article-grid article,
.faq-item,
.form-card,
.contact-card,
.service-ai-shell {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.process-grid article,
.article-grid article {
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.1), transparent 44%),
    #111110;
}

.service-ai-shell,
.contact-card {
  border-color: rgba(255, 77, 22, 0.18);
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.decision-section h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
}

.decision-list {
  grid-template-columns: 1fr;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(255, 77, 22, 0.12), transparent 36rem),
    var(--carbon),
    #070707;
  background-size: auto, 22px 22px, auto;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(255, 77, 22, 0.07), transparent 42%),
    #ffffff;
}

.quote-result,
.sav-ai-result,
.sav-ai-form {
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.12), transparent 46%),
    #10100f;
}

.conversion-popup {
  width: min(760px, calc(100vw - 28px));
  border: 1px solid rgba(255, 77, 22, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.16), transparent 42%),
    #10100f;
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
}

.conversion-popup::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
}

.popup-close {
  position: absolute;
  right: 14px;
  top: 14px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.popup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 20px;
  padding: clamp(26px, 5vw, 46px);
}

.popup-layout h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 14px 0;
}

.popup-layout p {
  color: #d8d8d2;
  line-height: 1.7;
}

.popup-steps,
.popup-panel {
  display: grid;
  gap: 10px;
}

.popup-steps span,
.popup-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.popup-panel strong {
  color: var(--orange-2);
  font-size: 1.25rem;
}

.chat-toggle {
  background: linear-gradient(90deg, var(--orange), #ff7a24);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #070707;
  color: #d8d8d2;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.7;
  display: block;
  margin-bottom: 6px;
}

.site-footer h2 {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand img {
  width: min(230px, 70vw);
}

.product-dialog {
  width: min(1240px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: auto;
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 92px);
  z-index: 3;
  min-height: 38px;
  margin: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #191919;
  color: var(--text);
  cursor: pointer;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 0 28px 28px;
}

.product-story {
  display: block;
}

.product-story section {
  padding: 34px;
}

.product-hero-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 32px;
  align-items: center;
  padding-top: 0;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 65% 18%, rgba(255, 77, 22, 0.14), transparent 22rem),
    #0b0b0b;
}

.product-gallery > img,
.gallery-stage > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: var(--radius);
  filter: brightness(1.08) contrast(1.04);
}

.gallery-stage > img {
  padding: clamp(10px, 2vw, 24px);
}

.gallery-overlay,
.gallery-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gallery-overlay {
  top: 14px;
  pointer-events: none;
}

.gallery-overlay span,
.gallery-overlay strong {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  color: #fff;
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 900;
}

.gallery-overlay span {
  color: var(--orange-2);
  text-transform: uppercase;
}

.gallery-controls {
  bottom: 14px;
}

.gallery-controls button,
.gallery-thumb {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(10, 10, 10, 0.74);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gallery-controls button {
  min-height: 40px;
  padding: 0 14px;
  backdrop-filter: blur(12px);
}

.gallery-controls button:hover,
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--orange);
  background: rgba(255, 77, 22, 0.14);
}

.gallery-controls button:hover,
.gallery-thumb:hover {
  transform: translateY(-1px);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-strip figure,
.gallery-thumb {
  margin: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.gallery-strip img,
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  opacity: 0.88;
  filter: brightness(1.08) contrast(1.04);
  background: #f5f5f2;
}

.gallery-strip figcaption,
.gallery-thumb span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
}

.gallery-thumb.active img {
  opacity: 1;
}

.product-intro h2 {
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 0.94;
  margin-bottom: 16px;
}

.product-slogan {
  color: #f2f2ee;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.detail-price {
  display: grid;
  gap: 2px;
  margin: 24px 0;
}

.detail-price span {
  color: var(--muted);
  font-weight: 750;
}

.detail-price strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.option-configurator {
  display: grid;
  gap: 16px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(255, 77, 22, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 77, 22, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

.option-configurator > div:first-child {
  display: grid;
  gap: 4px;
}

.option-configurator > div:first-child span {
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.option-configurator > div:first-child strong {
  color: #fff;
  font-size: 1rem;
}

.option-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 8px;
  color: #d7d7d0;
  font-size: 0.82rem;
  font-weight: 900;
}

.option-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-chip {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.62);
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.option-chip:hover,
.option-chip.active {
  border-color: var(--orange);
  background: rgba(255, 77, 22, 0.18);
}

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

.option-configurator > p {
  margin: 0;
  color: #b9b9b2;
  font-size: 0.78rem;
  line-height: 1.5;
}

.product-intro > p:not(.section-label):not(.breadcrumb):not(.product-slogan) {
  color: #d0d0ca;
  line-height: 1.7;
}

.product-story .detail-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-band article {
  background: #151515;
  padding: 28px;
}

.detail-band span {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.detail-band p {
  margin: 12px 0 0;
  color: #d8d8d2;
  line-height: 1.6;
}

.detail-white {
  background: var(--paper);
  color: var(--ink);
}

.product-benefits,
.rider-section,
.detail-faq,
.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
}

.product-benefits h3,
.rider-section h3,
.detail-tech h3,
.detail-faq h3,
.detail-cta h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  margin-bottom: 14px;
}

.product-benefits p,
.rider-section p,
.detail-cta p {
  color: #5c5c56;
  line-height: 1.7;
}

.product-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-benefits li,
.included-box span {
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: white;
  padding: 14px;
  color: #262622;
  font-weight: 750;
}

.detail-tech {
  background: #0d0d0d;
}

.benefit-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.benefit-table div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #151515;
}

.benefit-table strong,
.benefit-table span {
  display: block;
}

.benefit-table strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.benefit-table span {
  margin: 8px 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit-table p {
  margin: 0;
  color: #c7c7c0;
  line-height: 1.55;
}

.included-box {
  display: grid;
  gap: 10px;
}

.included-box h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.detail-faq {
  background: #111;
}

.detail-faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.detail-faq summary {
  cursor: pointer;
  font-weight: 850;
}

.detail-faq details p {
  color: #c7c7c0;
  line-height: 1.65;
}

.detail-cta {
  align-items: center;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 90, 31, 0.22), transparent 22rem),
    #080808;
}

.detail-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.detail-table th,
.detail-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  color: var(--muted);
  width: 46%;
  font-weight: 700;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.chat-toggle {
  min-height: 48px;
  border-radius: var(--radius);
  border: 0;
  background: var(--orange);
  color: white;
  padding: 0 18px;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.chat-panel {
  width: min(360px, calc(100vw - 36px));
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  box-shadow: var(--shadow);
  padding: 16px;
}

.chat-panel h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.chat-messages {
  display: grid;
  gap: 8px;
  max-height: 240px;
  overflow: auto;
  margin-bottom: 12px;
}

.chat-message {
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #1b1b1b;
  color: #d8d8d2;
  line-height: 1.45;
  font-size: 0.9rem;
}

.chat-message.user {
  background: rgba(255, 90, 31, 0.18);
  color: var(--text);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

#chatForm {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

#chatForm button {
  border: 0;
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--orange);
  color: white;
  font-weight: 800;
}

html.js [data-reveal] {
  opacity: 1;
}

html.js [data-reveal].visible {
  animation: revealIn 520ms ease both;
}

@keyframes revealIn {
  from {
    opacity: 0.01;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn,
  .product-card {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .product-grid,
  .trust-strip,
  .finder-grid,
  .process-grid,
  .value-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-media {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-cta {
    display: flex;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .site-header.nav-open .header-cta {
    justify-content: center;
  }

  .hero {
    padding-top: 42px;
  }

  .proof-row,
  .split-layout,
  .service-panel,
  .service-ai-shell,
  .sav-ai-panel,
  .contact-card,
  .quote-workspace,
  .detail-layout,
  .product-hero-detail,
  .product-benefits,
  .rider-section,
  .detail-faq,
  .detail-cta,
  .decision-section,
  .popup-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .sav-switches {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .advantage-list,
  .blog-section .article-grid,
  .article-grid,
  .testimonial-grid,
  .finder-grid,
  .value-grid,
  .social-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-card,
  .hero-safety-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .conversion-bar {
    top: auto;
    bottom: 0;
    font-size: 0.78rem;
    justify-content: space-between;
  }

  .chat-widget {
    bottom: 54px;
  }

  .compact-specs {
    grid-template-columns: 1fr;
  }

  .product-dialog {
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }

  .product-intro {
    order: -1;
  }

  .product-intro h2 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .product-gallery > img {
    aspect-ratio: 4 / 3;
  }

  .gallery-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .gallery-controls button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .dialog-close {
    top: 8px;
    left: calc(100% - 88px);
  }

  .catalog-toolbar {
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
    overflow-x: auto;
  }

  input[type="range"] {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.62rem;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .trust-strip,
  .process-grid,
  .detail-band,
  .benefit-table,
  .product-benefits ul,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-overlay {
    left: 10px;
    right: 10px;
  }

  .gallery-overlay span,
  .gallery-overlay strong {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .product-story section {
    padding: 24px;
  }

  .chat-toggle {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .chat-widget {
    right: 12px;
    bottom: 18px;
  }

  .quote-line,
  .quote-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-line b {
    white-space: normal;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-copy h2 {
    font-size: 2rem;
  }
}

/* Reference-layout pass: compact motorsport ecommerce structure */
main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 1;
}

.trust-strip {
  order: 2;
}

.products-section {
  order: 3;
}

.value-section {
  order: 4;
}

.service-section {
  order: 5;
}

.process {
  order: 6;
}

.faq-section {
  order: 7;
}

.contact-section {
  order: 8;
}

.finder-section,
.advantages,
.social-section,
.blog-section,
.decision-section {
  display: none;
}

body {
  background: #030303;
  font-family: Inter, "Arial Black", Arial, sans-serif;
}

.site-header {
  padding: 15px clamp(24px, 5.4vw, 76px);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.brand img {
  width: clamp(164px, 12vw, 218px);
}

.main-nav {
  gap: 30px;
  font-size: 0.86rem;
  color: #f3f3ed;
}

.main-nav a:first-child {
  color: #fff;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 10px;
}

.header-icons {
  display: flex;
  gap: 14px;
  margin-left: auto;
  color: #f7f7f2;
  font-size: 0.78rem;
  font-weight: 850;
}

.header-icons a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.header-cta {
  min-height: 42px;
  box-shadow: none;
}

.conversion-bar {
  display: none;
}

.section-dark {
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 77, 22, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.hero {
  position: relative;
  min-height: 690px;
  grid-template-columns: minmax(500px, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 34px;
  padding: 58px clamp(24px, 5.4vw, 76px) 44px;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 39%, rgba(5, 5, 5, 0.4) 72%, #050505 100%),
    url("assets/hero-motorcycle.webp") center right / min(70vw, 980px) auto no-repeat,
    #050505;
}

.hero::before {
  content: none;
}

.hero-copy {
  max-width: 660px;
}

h1 {
  margin-bottom: 20px;
  max-width: 640px;
  font-size: clamp(3rem, 4.45vw, 4.85rem);
  line-height: 0.98;
  font-weight: 950;
  text-wrap: balance;
}

h1::first-line {
  color: #fff;
}

.hero-copy h1 {
  color: #fff;
}

.text-orange {
  color: var(--orange);
}

.hero-copy h1 strong,
.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy p {
  max-width: 510px;
  color: #b9b9b4;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  gap: 16px;
  margin: 30px 0;
}

.btn,
.header-cta {
  min-height: 52px;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 0.9rem;
  font-weight: 900;
}

.btn-primary {
  background: linear-gradient(180deg, #ff5722, #ff3f10);
  box-shadow: 0 14px 34px rgba(255, 77, 22, 0.23);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.035);
}

.proof-row {
  display: flex;
  gap: 28px;
  max-width: 640px;
  margin-top: 18px;
}

.proof-row div {
  min-width: 126px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  padding: 0 24px 0 0;
}

.proof-row div:last-child {
  border-right: 0;
}

.proof-row strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.proof-row span {
  color: #b7b7b1;
  font-size: 0.82rem;
}

.hero-media {
  min-height: 600px;
  pointer-events: none;
}

.hero-media img {
  display: none;
}

.hero-product-card,
.hero-safety-card {
  display: none;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}

.trust-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 8px;
  align-items: start;
  min-height: 118px;
  padding: 28px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, #111, #090909);
}

.trust-strip span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
}

.trust-strip h2 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.trust-strip p {
  grid-column: 2;
  font-size: 0.78rem;
}

section {
  padding: 64px clamp(24px, 5.4vw, 76px);
}

.products-section {
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 77, 22, 0.1), transparent 28rem),
    #050505;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.section-heading h2::first-line {
  color: #fff;
}

.products-section .section-heading h2 {
  max-width: 520px;
}

.products-section .section-heading h2::first-letter,
.products-section .section-heading h2 {
  color: #fff;
}

.products-section .section-heading h2 {
  text-wrap: balance;
}

.products-section .section-heading p {
  color: #aeadab;
}

.catalog-toolbar {
  justify-content: flex-end;
  margin-top: -84px;
  margin-bottom: 36px;
  padding: 0;
  border: 0;
  background: transparent;
}

.filter-group {
  gap: 14px;
}

.filter-btn {
  min-width: 138px;
  min-height: 58px;
  border-radius: 5px;
  background: #171717;
  font-weight: 900;
}

.filter-btn.active {
  box-shadow: 0 16px 30px rgba(255, 77, 22, 0.16);
}

.select-label {
  display: none;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 100%;
  padding: 18px;
  border-radius: 5px;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #171717, #090909);
  box-shadow: none;
}

.product-card::before {
  border-top: 0;
}

.product-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  border-radius: 3px;
  background: var(--orange);
  color: white;
  padding: 5px 8px;
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: radial-gradient(circle at 50% 50%, #242424, #101010 68%);
  filter: none;
}

.product-card h3 {
  margin: 16px 0 12px;
  font-size: 1.08rem;
}

.compact-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.compact-specs span {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #c2c2bc;
  font-size: 0.78rem;
}

.compact-specs strong {
  color: #8d8d87;
}

.card-options {
  min-height: 34px;
  margin: 12px 0 0;
  color: #d0d0c8;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.45;
}

.price-line {
  margin-top: 16px;
}

.price-line strong {
  font-size: 1.45rem;
}

.price-line span {
  display: none;
}

.card-actions {
  grid-template-columns: 1fr;
}

.card-actions .btn {
  width: 100%;
  min-height: 46px;
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.catalog-more .btn {
  width: min(360px, 100%);
  border-color: var(--orange);
  color: var(--orange);
}

.value-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 2.3fr);
  align-items: center;
  gap: 32px;
  background: #f5f5f3;
  color: #111;
  padding-top: 46px;
  padding-bottom: 46px;
}

.value-section .section-heading {
  margin-bottom: 0;
}

.value-section .section-heading h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.value-grid article {
  border: 0;
  box-shadow: none;
  text-align: center;
  background: transparent;
  padding: 10px;
}

.value-grid article::after {
  content: none;
}

.value-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.value-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.value-grid p {
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-section,
.process {
  background: #070707;
}

.service-ai-shell,
.process-grid {
  border-radius: 5px;
}

.service-ai-shell {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.98), rgba(6, 6, 6, 0.76)),
    url("assets/terraride-cb300f-03.webp") center right / 52% auto no-repeat,
    #0d0d0d;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-copy h2,
.process .section-heading h2 {
  color: #fff;
}

.service-copy p,
.service-copy li {
  color: #c8c8c0;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  min-height: 210px;
  background: #101010;
}

.faq-section,
.contact-section {
  background: #070707;
  color: var(--text);
  padding-top: 42px;
  padding-bottom: 42px;
}

.faq-section .split-layout,
.contact-card {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 36px;
}

.faq-section h2,
.contact-card h2 {
  color: #fff;
}

.contact-card {
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.quote-workspace {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
}

.faq-question {
  background: #141414;
  color: var(--text);
}

.faq-answer {
  background: #111;
  color: #c9c9c2;
}

.bottom-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
  color: #d7d7d0;
  padding: 16px clamp(24px, 5.4vw, 76px);
  font-size: 0.86rem;
}

.bottom-assurance span {
  text-align: center;
}

.site-footer {
  background: #050505;
  padding-top: 38px;
}

@media (max-width: 1180px) {
  .product-grid,
  .value-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-toolbar {
    margin-top: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .header-icons,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .header-cta {
    display: flex;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 52%, #050505 100%),
      url("assets/hero-motorcycle.webp") center bottom / 105% auto no-repeat,
      #050505;
  }

  .hero-media {
    min-height: 260px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-row div {
    border-right: 0;
    border-left: 3px solid var(--orange);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
  }

  .trust-strip,
  .product-grid,
  .value-section,
  .value-grid,
  .process-grid,
  .bottom-assurance,
  .faq-section .split-layout,
  .contact-card,
  .quote-workspace {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: auto;
  }

  .catalog-toolbar {
    margin-top: 0;
  }

  .filter-group {
    width: 100%;
  }

  .filter-btn {
    min-width: 0;
    flex: 1 0 auto;
  }
}

/* Premium polish pass: brand sections, guarantees, FAQ, contact and popup */
.about-section {
  order: 5;
}

.service-section {
  order: 6;
}

.process {
  order: 7;
}

.faq-section {
  order: 8;
}

.contact-section {
  order: 9;
}

.header-icons {
  display: none;
}

.site-header {
  gap: 28px;
}

.main-nav {
  margin-left: auto;
}

.btn,
.header-cta,
.filter-btn,
.quote-actions button,
.popup-close,
.dialog-close,
.gallery-controls button,
.option-chip {
  border-radius: 8px;
}

.btn,
.header-cta {
  min-height: 50px;
  box-shadow: none;
}

.btn-primary,
.header-cta {
  background: linear-gradient(180deg, #ff5a1f, #f04412);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.about-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 77, 22, 0.16), transparent 22rem),
    linear-gradient(180deg, #090909, #050505);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
}

.about-copy h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  line-height: 0.98;
}

.about-copy p:not(.section-label) {
  max-width: 580px;
  color: #c8c8c0;
  line-height: 1.75;
}

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

.about-proof article,
.guarantee-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.about-proof span,
.guarantee-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-proof h3,
.guarantee-grid strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.15;
}

.about-proof p,
.guarantee-grid p {
  margin: 10px 0 0;
  color: #bcbcB5;
  line-height: 1.6;
}

.process {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #050505, #0d0d0d),
    #070707;
}

.process .section-heading {
  max-width: 760px;
}

.process-grid {
  position: relative;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
}

.process-grid article {
  position: relative;
  min-height: 250px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.12), transparent 42%),
    #101010;
  padding: 30px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  width: 48px;
  height: 48px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: rgba(255, 77, 22, 0.08);
  color: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 77, 22, 0.05);
}

.process-grid h3 {
  color: #fff;
  font-size: 1.25rem;
}

.process-grid p {
  color: #bfbfb8;
  line-height: 1.65;
}

.service-section {
  background: #070707;
  color: var(--text);
}

.service-ai-shell {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.82)),
    url("assets/terraride-cb300f-03.webp") center right / 50% auto no-repeat,
    #0b0b0b;
  box-shadow: none;
  padding: clamp(24px, 4vw, 46px);
}

.service-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1;
}

.service-copy p {
  color: #d1d1ca;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.sav-ai-panel {
  align-self: stretch;
}

.sav-ai-form,
.sav-ai-result,
.contact-form,
.quote-result {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.13);
}

.sav-ai-panel,
.service-ai-shell,
.contact-card,
.quote-workspace {
  min-width: 0;
  max-width: 100%;
}

.sav-ai-form input,
.sav-ai-form select,
.sav-ai-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
}

.faq-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 77, 22, 0.12), transparent 20rem),
    #050505;
  color: var(--text);
  padding-top: 72px;
  padding-bottom: 72px;
}

.faq-section .split-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  border-top: 0;
  padding-top: 0;
}

.faq-section h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1;
}

.faq-section .split-layout > div > p:not(.section-label) {
  color: #c5c5bd;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #0d0d0d);
  padding: 0;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span {
  float: right;
  color: var(--orange);
}

.faq-answer {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #cfcfc8;
  padding: 18px;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 77, 22, 0.15), transparent 24rem),
    linear-gradient(180deg, #050505, #0b0b0b);
  color: var(--text);
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.09), transparent 40%),
    #101010;
  padding: clamp(24px, 4vw, 46px);
}

.contact-card h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1;
}

.contact-card p {
  color: #cacac3;
}

.brand-email {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid rgba(255, 77, 22, 0.26);
  border-radius: 8px;
  background: rgba(255, 77, 22, 0.08);
  padding: 12px 14px;
  font-weight: 850;
}

.brand-email a {
  color: var(--orange-2);
}

.quote-workspace {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: #f7f7f3;
  color: #111;
  padding: 22px;
}

.contact-form label,
.sav-ai-form label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-width: 0;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.quote-result {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 77, 22, 0.18), transparent 15rem),
    #080808;
}

.conversion-popup {
  width: min(840px, calc(100vw - 28px));
  border: 1px solid rgba(255, 77, 22, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 77, 22, 0.22), transparent 20rem),
    #0b0b0b;
}

.popup-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  padding: clamp(26px, 5vw, 48px);
}

.popup-layout h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.98;
}

.popup-steps span,
.popup-panel {
  border-radius: 8px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.popup-panel {
  align-content: center;
}

@media (max-width: 980px) {
  .about-panel,
  .service-ai-shell,
  .faq-section .split-layout,
  .contact-card,
  .quote-workspace {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .about-proof,
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .about-proof,
  .guarantee-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .popup-layout {
    grid-template-columns: 1fr;
  }

  .service-ai-shell,
  .contact-card {
    padding: 18px;
  }

  .sav-ai-form,
  .sav-ai-result,
  .contact-form,
  .quote-result {
    padding: 16px;
  }

  .form-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Legal pages */
.legal-page {
  background: #050505;
  color: var(--text);
}

.legal-page .site-header {
  position: sticky;
}

.legal-nav {
  margin-left: auto;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 76px) clamp(46px, 6vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 77, 22, 0.18), transparent 26rem),
    linear-gradient(180deg, #080808, #050505);
}

.legal-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  line-height: 0.98;
}

.legal-hero p:not(.section-label) {
  max-width: 780px;
  color: #c9c9c1;
  line-height: 1.75;
  font-size: 1.02rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(28px, 5vw, 76px);
}

.legal-grid a,
.legal-content article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.09), transparent 40%),
    #101010;
  padding: clamp(20px, 3vw, 30px);
}

.legal-grid a {
  display: grid;
  gap: 14px;
  min-height: 230px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.legal-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.legal-grid span,
.legal-steps span {
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-grid h2,
.legal-content h2 {
  margin: 0;
  color: #fff;
  line-height: 1.1;
}

.legal-grid p,
.legal-content p,
.legal-content li {
  color: #c8c8c0;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 76px);
}

.legal-content article {
  max-width: 980px;
}

.legal-content a {
  color: var(--orange-2);
  font-weight: 900;
}

.legal-content ol {
  margin: 0;
  padding-left: 20px;
}

.legal-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-checks span {
  border: 1px solid rgba(255, 77, 22, 0.28);
  border-radius: 999px;
  background: rgba(255, 77, 22, 0.09);
  color: #fff;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 850;
}

.legal-warning {
  border-color: rgba(255, 77, 22, 0.34);
}

.warranty-download-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  max-width: 1180px;
}

.warranty-download-card img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.legal-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-steps article {
  max-width: none;
}

.legal-footer {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .legal-grid,
  .legal-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .legal-page .site-header {
    align-items: flex-start;
  }

  .legal-nav {
    display: none;
  }

  .legal-grid,
  .legal-steps,
  .warranty-download-card {
    grid-template-columns: 1fr;
  }

  .legal-grid a {
    min-height: auto;
  }
}

/* Premium product detail redesign */
.product-dialog {
  width: min(1380px, calc(100vw - 24px));
  max-width: none;
  max-height: calc(100vh - 24px);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 77, 22, 0.14), transparent 28rem),
    #080808;
}

.dialog-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 98px);
  z-index: 8;
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
}

.product-story {
  animation: productSheetIn 360ms ease both;
}

@keyframes productSheetIn {
  from {
    opacity: 0.01;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-story section {
  padding: clamp(22px, 4vw, 46px);
}

.product-hero-detail {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: start;
  gap: clamp(22px, 4vw, 46px);
}

.product-buy-panel {
  position: sticky;
  top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.045);
  padding: clamp(20px, 3vw, 30px);
}

.product-buy-panel h2 {
  font-size: clamp(2.4rem, 4.4vw, 5.2rem);
}

.detail-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.detail-quick-specs span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  padding: 12px;
}

.detail-quick-specs strong {
  color: #fff;
  font-size: 1rem;
}

.detail-quick-specs small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-stage {
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 77, 22, 0.16), transparent 22rem),
    linear-gradient(180deg, #151515, #080808);
}

.gallery-stage > img {
  min-height: 460px;
  transition: transform 380ms ease, opacity 220ms ease;
}

.gallery-stage:hover > img {
  transform: scale(1.018);
}

.gallery-controls button {
  border-radius: 8px;
}

.gallery-thumb {
  border-radius: 8px;
}

.detail-sales-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-sales-grid article {
  min-height: 210px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.1), transparent 42%),
    #101010;
  padding: clamp(22px, 3vw, 32px);
}

.detail-sales-grid span {
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-sales-grid p {
  margin: 14px 0 0;
  color: #d2d2cb;
  line-height: 1.65;
}

.detail-tech {
  background: #f5f5f2;
  color: #111;
}

.detail-section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 24px;
}

.detail-section-head h3,
.detail-rider-panel h3,
.detail-warranty-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1;
}

.detail-section-head p:not(.section-label) {
  color: #5f5f58;
  line-height: 1.65;
}

.spec-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.spec-matrix article {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background: #fff;
}

.spec-matrix h4 {
  margin: 0;
  background: #111;
  color: #fff;
  padding: 16px;
  font-size: 1rem;
}

.spec-matrix article div {
  display: grid;
  grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.spec-matrix span {
  color: #6a6a63;
  font-size: 0.82rem;
  font-weight: 900;
}

.spec-matrix strong {
  color: #111;
  font-size: 0.92rem;
}

.detail-rider-panel,
.detail-warranty-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  background: #080808;
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.detail-rider-panel p,
.detail-warranty-panel p {
  color: #cfcfc8;
  line-height: 1.7;
}

.included-box {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.1), transparent 42%),
    #101010;
}

.included-box span {
  border-radius: 8px;
}

.detail-warranty-panel {
  background:
    linear-gradient(120deg, rgba(255, 77, 22, 0.12), transparent 38rem),
    #090909;
}

.warranty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.warranty-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.warranty-mini-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.warranty-mini-grid h4 {
  margin: 0;
  display: block;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.warranty-mini-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.55rem;
}

.warranty-mini-grid p {
  margin: 8px 0 0;
  color: #bfbfb8;
  font-size: 0.9rem;
}

.detail-faq {
  background: #f5f5f2;
  color: #111;
}

.detail-faq h3,
.detail-cta h3 {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1;
}

.detail-faq details {
  border-radius: 8px;
}

.detail-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 77, 22, 0.18), transparent 22rem),
    #080808;
}

@media (max-width: 980px) {
  .product-hero-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .product-buy-panel {
    min-width: 0;
  }

  .product-buy-panel {
    position: static;
  }

  .detail-sales-grid,
  .spec-matrix,
  .detail-rider-panel,
  .detail-warranty-panel {
    grid-template-columns: 1fr;
  }

  .warranty-mini-grid,
  .detail-quick-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-dialog {
    width: 100dvw;
    max-width: 100dvw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .product-story section {
    padding: 20px;
  }

  .gallery-stage > img {
    min-height: 270px;
  }

  .detail-quick-specs,
  .warranty-mini-grid {
    grid-template-columns: 1fr;
  }

  .spec-matrix article div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Final TerraRide conversion redesign */
:root {
  --radius: 22px;
  --radius-sm: 16px;
  --radius-pill: 999px;
}

body {
  overflow-x: hidden;
}

.btn,
.header-cta,
.filter-btn,
.nav-toggle,
.chat-toggle,
.chat-panel button,
.quote-actions button,
.dialog-close,
.popup-close,
.gallery-controls button {
  border-radius: var(--radius-pill);
}

.site-header {
  padding: 14px clamp(18px, 5vw, 70px);
}

.brand img {
  width: clamp(150px, 13vw, 210px);
}

.header-cta,
.btn {
  min-height: 48px;
  padding-inline: 24px;
}

.hero {
  min-height: min(780px, calc(100svh - 72px));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(0, 660px) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 68px);
  padding: clamp(38px, 7vw, 96px) clamp(18px, 5vw, 70px) clamp(34px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 52%, rgba(255, 77, 22, 0.2), transparent 30rem),
    linear-gradient(100deg, #050505 0%, #050505 42%, rgba(5, 5, 5, 0.86) 70%, #050505 100%),
    #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.8) 42%, rgba(5, 5, 5, 0.24) 68%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.12) 58%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/hero-motorcycle.webp") right center / cover no-repeat;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.72));
  opacity: 0.95;
  transform-origin: right center;
  animation: heroSceneFloat 8s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  line-height: 0.96;
}

.hero-copy p {
  max-width: 500px;
  color: #d5d5ce;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.55;
}

.hero-actions {
  margin: 26px 0 22px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row div {
  min-width: 138px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.055);
  padding: 12px 16px;
}

.proof-row strong {
  font-size: 1.22rem;
}

.proof-row span {
  font-size: 0.76rem;
}

.hero-media {
  display: none;
}

@keyframes heroSceneFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

.hero-product-card,
.hero-safety-card {
  display: none;
}

.benefit-bubbles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 34px) clamp(18px, 5vw, 70px);
  border: 0;
  background:
    linear-gradient(180deg, #050505, #090909),
    #050505;
}

.benefit-bubbles article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.13), transparent 46%),
    rgba(255, 255, 255, 0.045);
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.benefit-bubbles article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 22, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.2), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.benefit-bubbles .bubble-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 77, 22, 0.62);
  border-radius: 50%;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 950;
}

.benefit-bubbles h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.benefit-bubbles p {
  grid-column: 2;
  margin: -4px 0 0;
  color: #bdbdb6;
  font-size: 0.86rem;
  line-height: 1.45;
}

.products-section {
  padding-top: clamp(54px, 8vw, 92px);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border-radius: 26px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 77, 22, 0.15), transparent 18rem),
    linear-gradient(180deg, #171716, #090909);
}

.product-image-button,
.product-card img {
  border-radius: 20px;
}

.product-card h3 {
  font-size: 1.12rem;
}

.product-card-copy {
  min-height: auto;
  margin: 0;
  color: #c9c9c1;
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-card-tags span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.055);
  color: #e7e7df;
  padding: 8px 10px;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.1;
}

.card-actions .btn,
.catalog-more .btn {
  border-radius: var(--radius-pill);
}

.social-section {
  display: block;
  order: 4;
  padding-top: clamp(46px, 7vw, 82px);
  padding-bottom: clamp(46px, 7vw, 82px);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 77, 22, 0.14), transparent 22rem),
    #050505;
}

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

.social-grid article {
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 77, 22, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.social-grid strong {
  color: var(--orange-2);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.social-grid span {
  margin: 12px 0 12px;
}

.value-section {
  order: 5;
  border-radius: 0;
}

.about-section {
  order: 6;
}

.service-section {
  order: 7;
}

.process,
.blog-section,
.decision-section,
.finder-section {
  display: none;
}

.service-ai-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  border-radius: 30px;
  background:
    linear-gradient(100deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76)),
    url("assets/terraride-cb300f-03.webp") center right / 52% auto no-repeat,
    #080808;
}

.guarantee-grid article,
.about-proof article,
.faq-item,
.contact-card,
.contact-form,
.quote-result,
.sav-ai-form,
.sav-ai-result {
  border-radius: 24px;
}

.sav-compact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.sav-compact-panel summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: fit-content;
  border: 1px solid rgba(255, 77, 22, 0.38);
  border-radius: var(--radius-pill);
  background: rgba(255, 77, 22, 0.13);
  color: #fff;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 950;
}

.sav-compact-panel:not([open]) .sav-ai-form,
.sav-compact-panel:not([open]) .sav-ai-result {
  display: none;
}

.contact-section {
  order: 9;
}

.contact-card {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  border-radius: 30px;
}

.contact-card h2 {
  max-width: 570px;
}

.contact-card > div:first-child > p:not(.section-label):not(.brand-email) {
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 8px;
}

.contact-reassurance span {
  border: 1px solid rgba(255, 77, 22, 0.26);
  border-radius: var(--radius-pill);
  background: rgba(255, 77, 22, 0.09);
  color: #fff;
  padding: 9px 12px;
  font-size: 0.8rem;
  font-weight: 850;
}

.brand-email {
  max-width: 100%;
  overflow-wrap: anywhere;
  border-radius: 18px;
}

.quote-workspace {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
}

.contact-form {
  background: #f8f8f4;
}

.contact-form textarea {
  min-height: 136px;
}

.quote-result h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.quote-result p {
  font-size: 0.96rem;
}

.product-dialog {
  width: min(1280px, calc(100dvw - 20px));
  max-height: calc(100dvh - 20px);
  border-radius: 28px;
}

.dialog-close {
  min-height: 42px;
  padding: 0 16px;
}

.product-hero-detail {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.product-buy-panel {
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 77, 22, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.055);
}

.product-fit-badges,
.detail-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.product-fit-badges span,
.detail-trust-chips span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.055);
  color: #f0f0ea;
  padding: 8px 11px;
  font-size: 0.76rem;
  font-weight: 900;
}

.detail-trust-chips span {
  color: #cfcfc8;
}

.product-value-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
  background: #f5f5f2;
  color: #111;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-highlights article {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  background: #fff;
  padding: 16px;
}

.product-highlights article span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 77, 22, 0.12);
}

.product-highlights strong {
  color: #181815;
  line-height: 1.25;
}

.product-use-card {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-use-card div {
  border: 1px solid rgba(255, 77, 22, 0.22);
  border-radius: 22px;
  background: rgba(255, 77, 22, 0.08);
  padding: 18px;
}

.product-use-card span {
  display: block;
  color: #d94a16;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-use-card strong {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.3;
}

.tech-accordion {
  display: grid;
  gap: 12px;
}

.tech-group {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.11);
  border-radius: 22px;
  background: #fff;
}

.tech-group summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  color: #111;
  font-weight: 950;
}

.tech-group summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  color: #fff;
}

.tech-group[open] summary::after {
  content: "-";
  background: var(--orange);
}

.tech-group div {
  display: grid;
  grid-template-columns: minmax(130px, 0.46fr) minmax(0, 1fr);
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.tech-group span {
  color: #66665f;
  font-size: 0.84rem;
  font-weight: 900;
}

.tech-group strong {
  color: #111;
}

@media (max-width: 1180px) {
  .benefit-bubbles,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-workspace,
  .service-ai-shell,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 210px;
    background:
      radial-gradient(circle at 82% 66%, rgba(255, 77, 22, 0.18), transparent 18rem),
      linear-gradient(180deg, #050505, #080808);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.92) 47%, rgba(5, 5, 5, 0.36) 74%, #050505 100%);
  }

  .hero::after {
    background-position: center bottom;
    background-size: min(118vw, 540px) auto;
    opacity: 0.72;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin: 20px 0 16px;
  }

  .hero-media {
    min-height: 190px;
  }

  .hero-media img {
    max-height: 240px;
  }

  .proof-row,
  .benefit-bubbles,
  .product-grid,
  .social-grid,
  .product-value-panel,
  .product-highlights,
  .product-use-card,
  .product-hero-detail {
    grid-template-columns: 1fr;
  }

  .benefit-bubbles p,
  .product-use-card {
    grid-column: auto;
  }

  .benefit-bubbles article {
    min-height: auto;
  }

  .contact-card,
  .service-ai-shell {
    padding: 20px;
    border-radius: 26px;
  }

  .bottom-assurance {
    padding-bottom: 70px;
  }
}

@media (max-width: 560px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 190px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 2.85rem);
  }

  .hero::after {
    background-size: min(128vw, 500px) auto;
    opacity: 0.68;
  }

  .proof-row div {
    min-width: 0;
    width: 100%;
  }

  .hero-actions,
  .warranty-actions,
  .quote-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form,
  .quote-result,
  .sav-ai-form,
  .sav-ai-result {
    padding: 16px;
  }

  .product-dialog {
    width: 100dvw;
    max-width: 100dvw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }

  .gallery-stage > img {
    min-height: 250px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-group div {
    grid-template-columns: 1fr;
  }
}
