/* ═══════════════════════════════════════════════════════════
   PAGE MAISON CONNECTÉE SAINT-MALO — Page locale SEO
   Expert domotique Saint-Malo & Côte d'Émeraude
   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; }

/* ─── HERO ─── */
.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;
}

/* ─── 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 COLORS ─── */
.od-eyebrow--amber { color: var(--od-amber-500); }

/* ═══════════════════════════════════════════════════════════
   SECTION 1 — BÉNÉFICES (3 colonnes)
   ═══════════════════════════════════════════════════════════ */
.od-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.od-benefit-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 36px 28px;
  text-align: center;
  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(-4px);
}

.od-benefit-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--od-amber-050);
  border: 2px solid rgba(242,182,0,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--od-navy-900);
  flex-shrink: 0;
}

.od-benefit-card h3 {
  font-family: var(--od-font-display);
  font-size: 19px;
  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%;
  border-collapse: collapse;
  background: var(--od-white);
  border-radius: var(--od-radius-lg);
  overflow: hidden;
  font-size: 14px;
}

.od-compare-table thead tr {
  background: var(--od-navy-900);
}

.od-compare-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--od-white);
  line-height: 1.4;
  vertical-align: middle;
}

.od-compare-table thead th:first-child {
  width: 38%;
  color: rgba(255,255,255,0.60);
  font-weight: 400;
}

.od-compare-table__col--yes { width: 31%; }
.od-compare-table__col--no  { width: 31%; }

.od-compare-label {
  display: block;
  line-height: 1.4;
}
.od-compare-label small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.od-compare-label--ha   small { color: rgba(242,182,0,0.80); }
.od-compare-label--cloud small { color: rgba(255,255,255,0.45); }

.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: var(--od-amber-050); }
.od-compare-table tbody tr:hover { background: rgba(242,182,0,0.06); }

.od-compare-table tbody td {
  padding: 16px 24px;
  color: var(--od-ink-700);
  vertical-align: middle;
  line-height: 1.5;
}
.od-compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--od-navy-900);
}

.od-compare-ok  { color: #1a7a1a; font-weight: 600; }
.od-compare-mid { color: #8a6000; font-weight: 600; }
.od-compare-ko  { color: #a01414; font-weight: 600; }

.od-compare-icon {
  display: inline-block;
  margin-right: 4px;
  font-size: 15px;
  vertical-align: -1px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — HOME ASSISTANT (dark)
   ═══════════════════════════════════════════════════════════ */
.od-ha-encart {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(242,182,0,0.40);
  border-radius: var(--od-radius-lg);
  padding: 28px 32px;
  max-width: 820px;
  margin: 0 auto 52px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.od-ha-args {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.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: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: background var(--od-t-base) var(--od-ease),
              border-color var(--od-t-base) var(--od-ease);
}
.od-ha-arg:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(242,182,0,0.30);
}

.od-ha-arg__icon {
  width: 52px; height: 52px;
  border-radius: var(--od-radius-md);
  background: rgba(242,182,0,0.12);
  border: 1px solid rgba(242,182,0,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--od-amber-500);
  flex-shrink: 0;
}

.od-ha-arg__body h3 {
  font-family: var(--od-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--od-white);
  margin: 0 0 8px;
}
.od-ha-arg__body p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4 — FONCTIONNALITÉS (3x3 grid)
   ═══════════════════════════════════════════════════════════ */
.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;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--od-t-base) var(--od-ease),
              border-color var(--od-t-base) var(--od-ease),
              transform var(--od-t-base) var(--od-ease);
}
.od-feature-card:hover {
  box-shadow: var(--od-shadow-md);
  border-color: rgba(242,182,0,0.40);
  transform: translateY(-3px);
}

.od-feature-card__icon {
  width: 48px; height: 48px;
  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;
  color: var(--od-navy-900);
  flex-shrink: 0;
}

.od-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0;
}
.od-feature-card p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — SCÉNARIOS (2x3 grid)
   ═══════════════════════════════════════════════════════════ */
.od-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.od-scenario-card {
  background: var(--od-white);
  border: 1px solid var(--od-ink-100);
  border-radius: var(--od-radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  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: 52px;
  font-weight: 800;
  color: var(--od-amber-500);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  pointer-events: none;
  user-select: none;
}

.od-scenario-card h3 {
  font-family: var(--od-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 10px;
  position: relative;
}
.od-scenario-card p {
  font-size: 13px;
  color: var(--od-fg-muted);
  line-height: 1.75;
  margin: 0;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6 — MÉTHODE (4 étapes, dark)
   ═══════════════════════════════════════════════════════════ */
.od-method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.od-method-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-method-steps--dark::before {
  background: linear-gradient(to bottom, var(--od-amber-500), rgba(242,182,0,0.08));
}

.od-method-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}
.od-method-step:not(:last-child) {
  border-bottom: 1px solid var(--od-ink-100);
}

.od-method-step--dark:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.od-method-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--od-navy-900);
  color: var(--od-amber-500);
  font-family: var(--od-font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 2px solid var(--od-amber-500);
}

.od-method-num--dark {
  background: rgba(255,255,255,0.06);
  border-color: var(--od-amber-500);
}

.od-method-body { flex: 1; padding-top: 12px; }

.od-method-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 8px;
}
.od-method-body p {
  font-size: 14px;
  color: var(--od-fg-muted);
  line-height: 1.75;
  margin: 0;
}

.od-method-body__title--light {
  font-size: 17px;
  font-weight: 700;
  color: var(--od-white) !important;
  margin: 0 0 8px;
}
.od-method-body__text--light {
  font-size: 14px;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7 — ZONES (2x2 grid)
   ═══════════════════════════════════════════════════════════ */
.od-zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.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__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--od-navy-900);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--od-amber-500);
  display: inline-block;
}

.od-zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.od-zone-chip {
  display: inline-flex;
  align-items: center;
  background: var(--od-amber-050);
  border: 1px solid rgba(242,182,0,0.25);
  border-radius: var(--od-radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--od-navy-900);
  line-height: 1.2;
  transition: background var(--od-t-fast) var(--od-ease),
              border-color var(--od-t-fast) var(--od-ease);
}
.od-zone-chip:hover {
  background: rgba(242,182,0,0.18);
  border-color: rgba(242,182,0,0.50);
}

/* ═══════════════════════════════════════════════════════════
   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);
}
.od-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ─── 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;
}

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

@media (max-width: 768px) {
  .od-section              { padding: 60px 0; }
  .od-benefits-grid        { grid-template-columns: 1fr; }
  .od-features-grid        { grid-template-columns: repeat(2, 1fr); }
  .od-scenarios-grid       { grid-template-columns: 1fr; }
  .od-ha-args              { grid-template-columns: 1fr; }
  .od-zones-grid           { grid-template-columns: 1fr; }
  .od-method-steps::before { display: none; }
  .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-compare-table thead th { padding: 14px 16px; font-size: 12px; }
  .od-compare-table tbody td { padding: 12px 16px; font-size: 13px; }
  .od-ha-encart            { padding: 22px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
  .od-features-grid  { grid-template-columns: 1fr; }
  .od-scenarios-grid { grid-template-columns: 1fr; }
  .od-zones-grid     { grid-template-columns: 1fr; }
  .od-compare-table__col--yes,
  .od-compare-table__col--no { width: auto; }
  .od-benefit-card   { padding: 24px 20px; }
  .od-scenario-card__num { font-size: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   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; }
}


