/* ═══════════════════════════════════════════════════════════
   PAGE MAISON CONNECTÉE RENNES — Page locale SEO
   Habitat intelligent Home Assistant · Rennes & Ille-et-Vilaine
   Repose sur tokens.css + styles.css
   ═══════════════════════════════════════════════════════════ */

/* ─── SECTION LAYOUT ─── */
.od-section          { padding: 84px 0; }
.od-section--white   { background: var(--od-white); }
.od-section--cream   { background: var(--od-amber-050); }
.od-section--dark    { background: var(--od-navy-900); }
.od-section__inner   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.od-section__head    { text-align: center; margin-bottom: 52px; }
.od-section__head .od-lead { margin: 16px auto 0; max-width: 680px; }

.od-title--light  { color: var(--od-white); }
.od-lead--muted   { color: rgba(255,255,255,0.65); }

/* ─── HERO ─── */
.od-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--od-navy-900);
}
.od-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.od-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(21,22,52,0.88) 0%,
    rgba(21,22,52,0.72) 50%,
    rgba(21,22,52,0.40) 100%
  );
  z-index: 1;
}
.od-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.od-hero__body {
  max-width: 660px;
}
.od-hero__title {
  font-family: var(--od-font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--od-white);
  line-height: 1.1;
  margin: 12px 0 20px;
  text-wrap: balance;
}
.od-highlight {
  color: var(--od-amber-500);
}
.od-hero__desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}
.od-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.od-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--od-radius-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--od-white);
  line-height: 1.2;
}
.od-hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--od-amber-500);
  flex-shrink: 0;
}
.od-btn-row--left {
  justify-content: flex-start;
}

/* ─── TRUST BADGE ─── */
.od-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--od-radius-pill);
  padding: 10px 22px;
  font-size: 13px;
  color: var(--od-white);
  margin-top: 24px;
}
.od-trust-badge .od-stars { color: var(--od-amber-500); font-size: 14px; }
.od-trust-badge strong   { color: var(--od-amber-500); }

/* ─── EYEBROW ─── */
.od-eyebrow--amber { color: var(--od-amber-500); }

/* ─── BTN ROW ─── */
.od-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.od-btn-row--left { justify-content: flex-start; margin-top: 0; }

/* ─── SECTION 1 — BÉNÉFICES 3 COLS ─── */
.od-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.od-benefit-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease);
}
.od-benefit-card:hover {
  box-shadow: var(--od-shadow-md);
  transform: translateY(-3px);
}
.od-benefit-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--od-radius-md);
  background: var(--od-amber-050);
  border: 1px solid rgba(242,182,0,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--od-amber-600);
}
.od-benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 12px;
}
.od-benefit-card p {
  font-size: 14px;
  color: var(--od-fg-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── SECTION 2 — TABLEAU COMPARATIF ─── */
.od-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--od-radius-lg);
  box-shadow: var(--od-shadow-sm);
}
.od-compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}
.od-compare-table thead tr {
  background: var(--od-navy-900);
  color: var(--od-white);
}
.od-compare-table th {
  padding: 18px 20px;
  font-family: var(--od-font-display);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}
.od-compare-table th.od-compare-table__criterion {
  text-align: left;
  width: 34%;
}
.od-compare-table th em {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 2px;
}
.od-compare-table__badge {
  display: inline-block;
  background: var(--od-amber-500);
  color: var(--od-navy-900);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  border-radius: var(--od-radius-pill);
  margin-bottom: 6px;
}
.od-compare-table tbody tr {
  border-bottom: 1px solid var(--od-ink-100);
  transition: background var(--od-t-fast) var(--od-ease);
}
.od-compare-table tbody tr:last-child { border-bottom: none; }
.od-compare-table tbody tr:nth-child(even) {
  background: rgba(242,182,0,0.03);
}
.od-compare-table tbody tr:hover {
  background: rgba(242,182,0,0.06);
}
.od-compare-table td {
  padding: 14px 20px;
  color: var(--od-ink-700);
  vertical-align: middle;
  line-height: 1.5;
}
.od-compare-table td:first-child {
  font-weight: 600;
  color: var(--od-navy-900);
}
.od-compare-table td.od-compare-table__local {
  background: rgba(242,182,0,0.05);
  font-weight: 600;
  color: var(--od-navy-900);
  text-align: center;
}
.od-compare-table td:last-child {
  text-align: center;
  color: var(--od-fg-muted);
}
.od-check { margin-right: 4px; }

/* ─── SECTION 3 — HOME ASSISTANT DARK ─── */
.od-ha-encart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--od-radius-xl, 20px);
  padding: 48px;
}
.od-ha-encart__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.od-ha-logo {
  height: 36px;
  width: auto;
  display: block;
}
.od-ha-encart__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
}
.od-ha-args {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.od-ha-arg {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--od-radius-lg);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--od-t-base) var(--od-ease);
}
.od-ha-arg:hover {
  background: rgba(255,255,255,0.08);
}
.od-ha-arg__num {
  font-family: var(--od-font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--od-amber-500);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.od-ha-arg__body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--od-white);
  margin: 0 0 6px;
}
.od-ha-arg__body p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ─── SECTION 4 — FONCTIONNALITÉS 3×3 ─── */
.od-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.od-feature-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease),
              border-color var(--od-t-base) var(--od-ease);
}
.od-feature-card:hover {
  box-shadow: var(--od-shadow-md);
  transform: translateY(-3px);
  border-color: rgba(242,182,0,0.3);
}
.od-feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--od-radius-md);
  background: var(--od-navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--od-amber-500);
  flex-shrink: 0;
}
.od-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 10px;
}
.od-feature-card p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── SECTION 5 — SCÉNARIOS 2×3 ─── */
.od-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.od-scenario-card {
  background: var(--od-amber-050);
  border: 1px solid rgba(242,182,0,0.20);
  border-radius: var(--od-radius-lg);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease);
}
.od-scenario-card:hover {
  box-shadow: var(--od-shadow-md);
  transform: translateY(-3px);
}
.od-scenario-card__num {
  font-family: var(--od-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--od-amber-600);
}
.od-scenario-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0;
}
.od-scenario-card p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── SECTION 6 — ÉTAPES (dark) ─── */
.od-steps {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.od-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--od-amber-500), rgba(242,182,0,0.1));
}
.od-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.od-step:last-child { border-bottom: none; }
.od-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--od-amber-500);
  color: var(--od-amber-500);
  font-family: var(--od-font-display);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.od-step__body { flex: 1; padding-top: 10px; }
.od-step__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--od-white);
  margin: 0 0 10px;
}
.od-step__body p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0;
}

/* ─── SECTION 7 — ZONES 2×2 (cream) ─── */
.od-zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.od-zone-group {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 28px 24px;
}
.od-zone-group h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--od-amber-500);
  display: inline-block;
}
.od-zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.od-zone-list li {
  font-size: 14px;
  color: var(--od-ink-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--od-ink-100);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.od-zone-list li:last-child { border-bottom: none; }
.od-zone-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--od-amber-500);
  flex-shrink: 0;
}

/* ─── CTA FINAL (dark) ─── */
.od-cta-section {
  background: var(--od-navy-900);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.od-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%,
    rgba(242,182,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.od-cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.od-cta-mention {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ─── MOBILE STICKY ─── */
.od-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--od-navy-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  gap: 10px;
}
.od-btn--full { flex: 1; justify-content: center; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .od-benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .od-features-grid   { grid-template-columns: repeat(2, 1fr); }
  .od-zones-grid      { grid-template-columns: repeat(2, 1fr); }
  .od-ha-args         { grid-template-columns: 1fr; }
  .od-ha-encart       { padding: 36px; }
}

@media (max-width: 768px) {
  .od-section            { padding: 60px 0; }
  .od-hero               { min-height: 520px; }
  .od-hero__content      { padding: 100px 20px 60px; }
  .od-hero__title        { font-size: clamp(30px, 8vw, 44px); }

  .od-benefits-grid      { grid-template-columns: 1fr; }
  .od-features-grid      { grid-template-columns: 1fr; }
  .od-scenarios-grid     { grid-template-columns: 1fr; }
  .od-zones-grid         { grid-template-columns: 1fr 1fr; gap: 16px; }
  .od-ha-encart          { padding: 28px 20px; }
  .od-ha-args            { grid-template-columns: 1fr; gap: 14px; }

  .od-steps::before      { display: none; }
  .od-step               { gap: 18px; }

  .od-compare-table th,
  .od-compare-table td   { padding: 11px 14px; font-size: 13px; }

  .od-mobile-cta         { display: flex; }
  body                   { padding-bottom: 76px; }
  .od-nav,
  .od-btn.od-btn--sm:not(.od-btn--mobile-visible) { display: none; }
  .od-burger             { display: flex; }
  .od-hero__badges       { gap: 7px; }
  .od-hero__badge        { font-size: 12px; padding: 6px 12px; }
  .od-btn-row--left      { flex-direction: column; gap: 10px; }
  .od-btn-row--left .od-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .od-zones-grid         { grid-template-columns: 1fr; }
  .od-hero__title        { font-size: clamp(26px, 9vw, 36px); }
  .od-ha-encart          { padding: 20px 16px; }
  .od-features-grid      { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   DOMT HERO — Hero domotique avec photo bg, topbar catégories,
   titre condensed blanc/amber, checks, scénarios & CTAs
   ═══════════════════════════════════════════════════════════ */

/* ─── STRUCTURE ─── */
.od-domt-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--od-navy-900);
}
.od-domt-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.od-domt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,17,40,0.93) 0%, rgba(15,17,40,0.75) 100%);
}

/* ─── TOPBAR ─── */
.od-domt-hero__topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  gap: 20px;
}
.od-domt-hero__brand {
  font-family: var(--od-font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--od-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.od-domt-hero__brand-accent { color: var(--od-amber-500); }
.od-domt-hero__cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.od-domt-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px;
  border-radius: var(--od-radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.od-domt-cat:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.38);
  color: var(--od-white);
}
.od-domt-cat--active {
  background: var(--od-amber-500);
  border-color: var(--od-amber-500);
  color: var(--od-navy-900);
}
.od-domt-cat--active:hover {
  background: #F5C430;
  border-color: #F5C430;
  color: var(--od-navy-900);
}

/* ─── INNER ─── */
.od-domt-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6% 40px;
  gap: 28px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ─── EYEBROW ─── */
.od-domt-hero__eyebrow {
  font-family: var(--od-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--od-amber-500);
  margin: 0 0 14px;
}

/* ─── TITRE ─── */
.od-domt-hero__title {
  font-family: var(--od-font-display);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--od-white);
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}
.od-domt-hero__title-accent {
  color: var(--od-amber-500);
}

/* ─── CHECKS ─── */
.od-domt-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 28px;
}
.od-domt-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--od-white);
}
.od-domt-check::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--od-amber-500);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L3.8 7.5L10 1' stroke='%23151634' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── BOTTOM ROW ─── */
.od-domt-hero__bottom {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.od-domt-hero__scenarios-wrap { flex: 1; min-width: 0; }
.od-domt-hero__scenarios-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 10px;
}
.od-domt-scenarios {
  display: flex;
  gap: 8px;
}
.od-domt-scenario {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--od-radius-md);
  padding: 12px 16px;
  min-width: 136px;
  transition: background 0.18s;
}
.od-domt-scenario__num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.40);
  margin-bottom: 4px;
  font-family: var(--od-font-display);
}
.od-domt-scenario strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--od-white);
  margin-bottom: 4px;
}
.od-domt-scenario p {
  font-size: 11px;
  color: rgba(255,255,255,0.56);
  margin: 0;
  line-height: 1.45;
}
.od-domt-scenario--active {
  background: var(--od-amber-500);
  border-color: var(--od-amber-500);
}
.od-domt-scenario--active .od-domt-scenario__num { color: rgba(21,22,52,0.55); }
.od-domt-scenario--active strong { color: var(--od-navy-900); }
.od-domt-scenario--active p { color: rgba(21,22,52,0.72); }

/* ─── RIGHT: RATING + CTA ─── */
.od-domt-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.od-domt-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--od-radius-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--od-white);
  white-space: nowrap;
}
.od-domt-rating .od-stars { color: var(--od-amber-500); font-size: 13px; }
.od-domt-hero__ctas {
  display: flex;
  gap: 10px;
}
.od-domt-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: var(--od-amber-500);
  color: var(--od-navy-900);
  font-family: var(--od-font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: var(--od-radius-md);
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.od-domt-cta-primary:hover { background: #F5C430; }
.od-domt-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--od-white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--od-radius-md);
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.od-domt-cta-secondary:hover { background: rgba(255,255,255,0.16); }

/* ═══ RESPONSIVE DOMT HERO ═══ */
@media (max-width: 1024px) {
  .od-domt-hero__cats { display: none; }
  .od-domt-scenarios { flex-wrap: wrap; }
  .od-domt-scenario { min-width: 120px; }
}
@media (max-width: 768px) {
  .od-domt-hero { min-height: 560px; }
  .od-domt-hero__topbar { padding: 16px 20px; }
  .od-domt-hero__inner { padding: 0 20px 28px; }
  .od-domt-hero__title { font-size: 44px; }
  .od-domt-hero__bottom { flex-direction: column; align-items: flex-start; }
  .od-domt-hero__right { align-items: flex-start; }
  .od-domt-scenarios { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .od-domt-hero__title { font-size: 36px; }
  .od-domt-scenario { min-width: 140px; flex: 1; }
}


