/* ========================================================================
   rentcar/style.css
   오늘렌트 — 빠른 견적 전환형 렌터카 (white / deep blue / charcoal / orange point)
   ======================================================================== */

:root {
  /* ---- Brand palette ---- */
  --color-bg:          #ffffff;
  --color-bg-alt:      #f4f6fa;
  --color-paper:       #ffffff;
  --color-ink:         #1f2937;
  --color-ink-soft:    #374151;
  --color-ink-muted:   #6b7280;
  --color-grey-light:  #e5e7eb;
  --color-blue:        #1e40af;       /* primary accent */
  --color-blue-deep:   #1e3a8a;
  --color-blue-soft:   #eff3fb;
  --color-orange:      #f97316;       /* point — limited */
  --color-orange-deep: #c2410c;
  --color-charcoal:    #111827;
  --color-line:        rgba(31, 41, 55, 0.12);
  --color-line-soft:   rgba(31, 41, 55, 0.06);

  /* ---- Component overrides ---- */
  --color-primary:      var(--color-blue);
  --color-on-primary:   #ffffff;
  --color-secondary-fg: var(--color-blue);
  --color-on-accent:    #ffffff;

  --header-bg:     rgba(255, 255, 255, 0.95);
  --header-fg:     var(--color-ink);
  --header-border: rgba(31, 41, 55, 0.08);
  --nav-cta-bg:    var(--color-blue);
  --nav-cta-fg:    #ffffff;

  --footer-bg:        #111827;
  --footer-fg:        #9ca3af;
  --footer-fg-strong: var(--color-orange);

  --notice-bg:     var(--color-bg-alt);
  --notice-fg:     var(--color-ink-soft);
  --notice-border: rgba(31, 41, 55, 0.08);

  --mcta-bg:    var(--color-paper);
}

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: 'Apple SD Gothic Neo', 'Pretendard', 'Noto Sans KR',
    'Malgun Gothic', system-ui, sans-serif;
  word-break: keep-all;
}
::selection { background: var(--color-blue); color: #ffffff; }

.section { padding: 88px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }

/* ---------- Eyebrow modifiers ---------- */
.eyebrow--blue   { color: var(--color-blue-deep); }
.eyebrow--blue::before   { background: var(--color-blue); }
.eyebrow--orange { color: var(--color-orange-deep); }
.eyebrow--orange::before { background: var(--color-orange); }
.eyebrow--cream  { color: #d1d5db; }
.eyebrow--cream::before  { background: var(--color-orange); }

/* ---------- Section head ---------- */
.rt-head { margin-bottom: 44px; max-width: 640px; }
.rt-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.rt-head--center .eyebrow { justify-content: center; }
.rt-head--center .eyebrow::before { display: none; }
.rt-title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.018em;
  margin: 12px 0 14px;
  font-weight: 800;
}
@media (max-width: 768px) { .rt-title { font-size: 24px; } }
.rt-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-ink-soft);
  max-width: 560px;
}
.rt-head--center .rt-lead { margin-left: auto; margin-right: auto; }

.rt-notice {
  font-size: 12.5px;
  color: var(--color-ink-muted);
  line-height: 1.6;
  margin: 18px 0 0;
  padding: 12px 14px;
  background: var(--color-bg-alt);
  border-radius: 6px;
  border-left: 3px solid var(--color-orange);
}

/* =====================================================================
   1. HERO — full-bleed photo + overlay
   ===================================================================== */
.rt-hero {
  position: relative;
  height: 720px;
  max-height: 92vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}
.rt-hero__photo {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.rt-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.rt-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.30) 0%, transparent 30%, transparent 50%, rgba(17, 24, 39, 0.82) 100%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.55) 0%, transparent 65%);
}
.rt-hero__inner {
  width: 100%;
  padding: 0 0 76px;
  position: relative;
  z-index: 1;
}
.rt-hero__title {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 720px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.rt-hero__sub {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.rt-hero__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
}
.rt-hero__badges li {
  font-size: 13px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.rt-hero .btn-row { flex-direction: row; }
.rt-hero .btn-primary {
  background: var(--color-orange);
  color: #ffffff;
}
.rt-hero .btn-primary:hover { background: var(--color-orange-deep); }
.rt-hero .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(17, 24, 39, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.rt-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .rt-hero { height: 620px; min-height: 540px; max-height: 100vh; }
  .rt-hero__inner { padding: 0 0 52px; }
  .rt-hero__title { font-size: 34px; }
}

/* ----- Mobile Hero redesign (≤540px): stacked layout, no overlay ----- */
@media (max-width: 540px) {
  .rt-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    display: block;
    overflow: visible;
    color: var(--color-ink);
    background: var(--color-paper);
    isolation: auto;
  }
  .rt-hero__photo {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }
  .rt-hero__photo img,
  .rt-hero__photo picture,
  .rt-hero__photo picture > img {
    display: block; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .rt-hero__photo::after { display: none; }

  .rt-hero__inner {
    width: 100%;
    padding: 28px 20px 36px;
  }
  .rt-hero__title {
    font-size: 30px;
    line-height: 1.22;
    color: var(--color-ink);
    text-shadow: none;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .rt-hero__sub {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-ink-soft);
    text-shadow: none;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .rt-hero__badges li {
    background: var(--color-bg-alt);
    border-color: var(--color-line);
    color: var(--color-ink);
    backdrop-filter: none;
  }
  .rt-hero .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .rt-hero .btn-row > .btn {
    width: 100%; min-height: 52px; font-size: 15px;
  }
  .rt-hero .btn-primary {
    background: var(--color-orange);
    color: #ffffff;
  }
  .rt-hero .btn-secondary {
    background: transparent;
    color: var(--color-blue);
    border-color: var(--color-line);
    backdrop-filter: none;
  }
  .rt-hero .btn-secondary:hover {
    background: var(--color-blue-soft);
    border-color: var(--color-blue);
  }
}
@media (max-width: 380px) {
  .rt-hero__title { font-size: 26px; letter-spacing: -0.024em; }
}

/* =====================================================================
   2. SERVICE TYPES — 5 cards (icons only)
   ===================================================================== */
.rt-services { background: var(--color-bg-alt); }

.rt-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .rt-services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .rt-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .rt-services__grid { grid-template-columns: 1fr; gap: 14px; } }

.rt-service-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line-soft);
  border-radius: 10px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.rt-service-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 64, 175, 0.08);
}
.rt-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-blue-soft);
  color: var(--color-blue);
  margin-bottom: 14px;
}
.rt-service-card__icon svg { width: 24px; height: 24px; }
.rt-service-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}
.rt-service-card p {
  font-size: 13px;
  color: var(--color-ink-soft);
  line-height: 1.65;
}

/* =====================================================================
   3. VEHICLE LINEUP — image + list
   ===================================================================== */
.rt-vehicles { background: var(--color-bg); }
.rt-vehicles__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .rt-vehicles__inner { grid-template-columns: 1fr; gap: 32px; } }

.rt-vehicles__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-alt);
}
.rt-vehicles__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.rt-vehicles__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 0;
}
.rt-vehicles__list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  font-size: 14.5px;
  color: var(--color-ink-soft);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line-soft);
}
.rt-vehicles__list li:last-child { border-bottom: 0; }
.rt-vehicles__list li strong {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 15px;
}
.rt-vehicles__list li span { display: block; }

/* =====================================================================
   4. CONDITIONS — copy + image (reversed)
   ===================================================================== */
.rt-conditions { background: var(--color-bg-alt); }
.rt-conditions__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .rt-conditions__inner { grid-template-columns: 1fr; gap: 32px; }
  .rt-conditions__photo { order: -1; }
}

.rt-conditions__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-grey-light);
}
.rt-conditions__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.rt-conditions__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
@media (max-width: 480px) { .rt-conditions__list { grid-template-columns: 1fr; } }
.rt-conditions__list li {
  font-size: 14px;
  color: var(--color-ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}
.rt-conditions__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  background: var(--color-orange);
  border-radius: 2px;
}
.rt-conditions__list li strong {
  display: block;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
}

/* =====================================================================
   5. CAR DETAIL — image + copy
   ===================================================================== */
.rt-detail { background: var(--color-bg); }
.rt-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .rt-detail__inner { grid-template-columns: 1fr; gap: 32px; } }

.rt-detail__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
}
.rt-detail__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.rt-checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.rt-checklist li {
  font-size: 14.5px;
  color: var(--color-ink-soft);
  padding-left: 26px;
  position: relative;
  line-height: 1.65;
}
.rt-checklist li::before {
  content: '';
  position: absolute;
  left: 2px; top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: rotate(-45deg);
}

/* =====================================================================
   6. PICKUP — copy + image (reversed)
   ===================================================================== */
.rt-pickup { background: var(--color-bg-alt); }
.rt-pickup__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .rt-pickup__inner { grid-template-columns: 1fr; gap: 32px; }
  .rt-pickup__photo { order: -1; }
}

.rt-pickup__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-grey-light);
}
.rt-pickup__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.rt-pickup__bullets {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.rt-pickup__bullets li {
  font-size: 14px;
  color: var(--color-ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}
.rt-pickup__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--color-blue);
  border-radius: 50%;
}
.rt-pickup__bullets li strong {
  display: block;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
}

/* =====================================================================
   7. ACCIDENT REPLACEMENT — image + copy
   ===================================================================== */
.rt-accident { background: var(--color-bg); }
.rt-accident__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .rt-accident__inner { grid-template-columns: 1fr; gap: 32px; } }

.rt-accident__photo {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
}
.rt-accident__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.rt-accident__list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.rt-accident__list li {
  font-size: 14px;
  color: var(--color-ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}
.rt-accident__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
}
.rt-accident__list li strong {
  display: block;
  color: var(--color-ink);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 2px;
}

/* =====================================================================
   8. PROCESS — 4 steps
   ===================================================================== */
.rt-process { background: var(--color-bg-alt); }

.rt-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media (max-width: 860px) { .rt-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .rt-steps { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.rt-step {
  background: var(--color-paper);
  border-radius: 10px;
  padding: 26px 22px;
  border-top: 3px solid var(--color-blue);
  display: grid;
  gap: 12px;
}
.rt-step__no {
  font-size: 24px;
  color: var(--color-orange);
  font-weight: 800;
  line-height: 1;
}
.rt-step__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.rt-step__desc {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

/* =====================================================================
   9. PRICING — 3 cards
   ===================================================================== */
.rt-pricing { background: var(--color-bg); }

.rt-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .rt-pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.rt-price-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line-soft);
  border-radius: 12px;
  padding: 30px 26px;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
}
.rt-price-card--featured {
  background: var(--color-blue-deep);
  color: #ffffff;
  border-color: transparent;
}
.rt-price-card__badge {
  position: absolute;
  top: -10px;
  left: 26px;
  background: var(--color-orange);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 11px;
  border-radius: 3px;
}
.rt-price-card__tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-blue-deep);
}
.rt-price-card--featured .rt-price-card__tag { color: rgba(255, 255, 255, 0.75); }

.rt-price-card__amount {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}
.rt-price-card--featured .rt-price-card__amount { color: #ffffff; }

.rt-price-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.rt-price-card__list li {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.rt-price-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
}
.rt-price-card--featured .rt-price-card__list li { color: rgba(255, 255, 255, 0.85); }

.rt-price-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  align-self: end;
}
.rt-price-card--featured .rt-price-card__cta {
  color: var(--color-orange);
}

.rt-pricing__notice {
  text-align: center;
  font-size: 12.5px;
  color: var(--color-ink-muted);
  margin-top: 28px;
}

/* =====================================================================
   10. FAQ
   ===================================================================== */
.rt-faq { background: var(--color-bg-alt); }
.rt-faq .faq-list { max-width: 760px; margin: 0 auto; }

/* =====================================================================
   11. CONTACT FORM
   ===================================================================== */
.rt-contact { background: var(--color-bg); }
.rt-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .rt-contact__inner { grid-template-columns: 1fr; gap: 32px; } }

.rt-contact__notes {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.rt-contact__notes li {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.rt-contact__notes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--color-blue);
  border-radius: 50%;
}

.rt-form {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  padding: 30px 28px;
  border-radius: 12px;
}
.rt-form__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.rt-field { margin-bottom: 12px; }
.rt-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-ink-muted);
  letter-spacing: 0.04em;
}
.rt-field input,
.rt-field select,
.rt-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--color-line);
  background: #ffffff;
  border-radius: 6px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--color-ink);
  transition: border-color 0.2s;
}
.rt-field input:focus,
.rt-field select:focus,
.rt-field textarea:focus {
  border-color: var(--color-blue);
  outline: 2px solid rgba(30, 64, 175, 0.15);
  outline-offset: 0;
}
.rt-field textarea { resize: vertical; min-height: 90px; }
.rt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) { .rt-field-row { grid-template-columns: 1fr; } }

.rt-form__consent {
  font-size: 12.5px;
  color: var(--color-ink-muted);
  margin: 6px 0 14px;
  line-height: 1.5;
}
.rt-form__consent input { margin-right: 6px; vertical-align: middle; }

.rt-form__submit {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
  background: var(--color-orange);
  color: #ffffff;
}
.rt-form__submit:hover { background: var(--color-orange-deep); }

/* =====================================================================
   12. FINAL CTA — bg + overlay opacity 0.4
   ===================================================================== */
.rt-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  text-align: center;
  background: var(--color-charcoal);
  color: #ffffff;
}
@media (max-width: 768px) { .rt-cta { padding: 56px 0; } }

.rt-cta__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}
.rt-cta__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.rt-cta__inner { position: relative; z-index: 1; }

.rt-cta__title {
  font-size: 36px;
  line-height: 1.3;
  margin: 12px 0 14px;
  font-weight: 800;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) { .rt-cta__title { font-size: 24px; } }

.rt-cta__sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.rt-cta .btn-row { justify-content: center; }
.rt-cta .btn-primary {
  background: var(--color-orange);
  color: #ffffff;
}
.rt-cta .btn-primary:hover { background: var(--color-orange-deep); }
.rt-cta .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.rt-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

/* ----- Mobile sticky CTA hide-on-hero (O5) ----- */
.mobile-cta-bar {
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  will-change: opacity, transform;
}
.mobile-cta-bar.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
}
