/* MyHotelCare SEO landing pages — aligned with the main marketing site.
 * Loaded after /assets/css/app.css and /assets/css/site.css.
 */

.seo-page { background: var(--site-bone); color: var(--ink); }
.seo-page .container { max-width: var(--site-maxw); margin: 0 auto; padding: 0 24px; }
.seo-page a { color: var(--site-ground-2); }
.seo-page .breadcrumbs {
  max-width: var(--site-maxw);
  margin: 22px auto 0;
  padding: 0 24px;
  font-size: .86rem;
  color: var(--ink-soft);
}
.seo-page .breadcrumbs a { color: var(--ink-soft); }

.seo-page .hero {
  padding: 76px 0 64px;
  background: linear-gradient(180deg, var(--site-bone) 0%, var(--site-bone-2) 100%);
}
.seo-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.seo-page .kicker,
.seo-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--site-brass);
  font-weight: 600;
  margin: 0 0 12px;
}
.seo-page h1 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.seo-page h2 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.seo-page h3 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 8px;
}
.seo-page .lead,
.seo-page .hero p.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 1.4rem;
}
.seo-page .trust-line { font-size: .92rem; color: var(--ink-soft); margin-top: 18px; }
.seo-page .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.seo-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
  background: var(--site-ground-2);
  color: #fff;
  border: 1px solid var(--site-ground-2);
  box-shadow: none;
  line-height: 1.2;
}
.seo-page .button:hover { background: #16304F; color: #fff; text-decoration: none; }
.seo-page .button.secondary { background: transparent; color: var(--site-ground-2); border-color: var(--site-line); }
.seo-page .button.secondary:hover { background: var(--line-soft); color: var(--site-ground-2); }

.seo-page .panel,
.seo-page .card,
.seo-page .resource-template,
.seo-page .faq-item {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.seo-page .panel { padding: 28px; }
.seo-page .card,
.seo-page .resource-template,
.seo-page .faq-item { padding: 22px; }
.seo-page .case-card { position: relative; overflow: hidden; }
.seo-page .case-card:before { display: none; }
.seo-page .status-row { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 18px; }
.seo-page .case-id {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--site-ground);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.seo-page .case-id:before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: var(--site-brass); display: inline-block; }
.seo-page .badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--site-line);
  background: #F8F5F0;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .8rem;
  font-weight: 500;
}
.seo-page .case-title { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 10px 0 8px; }
.seo-page .muted { color: var(--ink-soft); }
.seo-page .meta-list { display: grid; gap: 0; margin-top: 16px; border-top: 1px solid var(--site-line); }
.seo-page .meta-item { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--site-line); }
.seo-page .meta-item span:first-child { color: var(--ink-soft); }
.seo-page .meta-item strong { font-weight: 600; color: var(--ink); text-align: right; }

.seo-page main section { padding: 70px 0; }
.seo-page main section + section { border-top: 1px solid var(--site-line); }
.seo-page section.soft { background: var(--site-bone-2); }
.seo-page .section-head { max-width: 760px; margin-bottom: 28px; }
.seo-page .section-head p { color: var(--ink-soft); }
.seo-page .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.seo-page .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.seo-page .grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.seo-page .grid-2 .card + .card,
.seo-page .grid-3 .card + .card,
.seo-page .grid-4 .card + .card { margin-top: 0; }
 .seo-page .card-number {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--site-ground-2), var(--primary-soft));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
}
.seo-page .check-list,
.seo-page .plain-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.seo-page .check-list li,
.seo-page .plain-list li { position: relative; padding-left: 24px; color: var(--ink-soft); }
.seo-page .check-list li:before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 999px; background: var(--site-brass); }
.seo-page .plain-list li:before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 999px; border: 2px solid var(--site-brass); }
.seo-page .table-wrap { overflow-x: auto; border: 1px solid var(--site-line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.seo-page table { border-collapse: collapse; width: 100%; min-width: 760px; }
.seo-page th,
.seo-page td { text-align: left; vertical-align: top; border-bottom: 1px solid var(--site-line); padding: 15px; }
.seo-page th { background: var(--site-ground); color: #fff; font-size: .88rem; font-weight: 600; }
.seo-page td { color: var(--ink-soft); font-size: .94rem; }
.seo-page tr:last-child td { border-bottom: 0; }
.seo-page .callout {
  background: linear-gradient(135deg, var(--site-ground-2), var(--site-ground));
  color: #fff;
  border-radius: 18px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.seo-page .callout h2,
.seo-page .callout h3 { color: #fff; margin: 0 0 8px; }
.seo-page .callout p { color: #C6D2DE; margin: 0; }
.seo-page .callout .button { background: #fff; color: var(--site-ground-2); border-color: #fff; }
.seo-page .callout .button:hover { background: var(--site-bone); color: var(--site-ground-2); }
.seo-page .note { border-left: 4px solid var(--site-brass); background: #fff; padding: 16px 18px; border-radius: 0 12px 12px 0; color: var(--ink-soft); box-shadow: var(--shadow); }
.seo-page .template-header { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--site-line); padding-bottom: 12px; margin-bottom: 12px; color: var(--ink-soft); font-size: .9rem; flex-wrap: wrap; }
.seo-page .faq-list { display: grid; gap: 14px; }
.seo-page .faq-item h2,
.seo-page .faq-item h3 { font-size: 1.15rem; margin: 0 0 8px; }
.seo-page .faq-item p { color: var(--ink-soft); }

@media (max-width: 860px) {
  .seo-page .hero-grid,
  .seo-page .grid-2,
  .seo-page .grid-3,
  .seo-page .grid-4,
  .seo-page .callout { grid-template-columns: 1fr; }
  .seo-page .hero { padding: 54px 0 44px; }
  .seo-page main section { padding: 52px 0; }
  .seo-page .container,
  .seo-page .breadcrumbs { padding-left: 18px; padding-right: 18px; }
}

@media print {
  .site-nav,
  .site-foot,
  .cookie-banner,
  .hero-actions { display: none !important; }
  .seo-page .hero,
  .seo-page main section { padding: 24px 0; }
  .seo-page .panel,
  .seo-page .card,
  .seo-page .resource-template { box-shadow: none; }
}
