*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #F59E28; --orange-d: #d4850f; --navy: #1e2a4a; --text: #2d3748;
  --text-m: #64748b; --bg-soft: #f8f9fb; --border: #e8ecf2;
  --font: 'Nunito', system-ui, sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;
}
html { -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
a { color: var(--orange); }
a, button { -webkit-tap-highlight-color: rgba(245,158,40,.22); touch-action: manipulation; }
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.topbar { background: var(--navy); padding: 10px 0; }
.topbar a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .85rem; font-weight: 700; }
.topbar a:hover { color: var(--orange); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.crumbs a { color: rgba(255,255,255,.7); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.page-hero { background: var(--navy); padding: 48px 0 52px; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.2; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.02rem; margin-top: .85rem; max-width: 640px; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 10px; font-weight: 800; font-size: .9rem; text-decoration: none; min-height: 48px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-d); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.content { padding: 52px 0 40px; }
.content h2 { font-family: var(--font-head); font-size: 1.45rem; color: var(--navy); margin: 2.1rem 0 .7rem; border-left: 4px solid var(--orange); padding-left: 14px; }
.content h2:first-child { margin-top: 0; }
.content p, .content li { color: var(--text-m); line-height: 1.8; font-size: .97rem; }
.content p { margin-bottom: .85rem; }
.content ul { margin: 0 0 1rem 1.2rem; }
.content li { margin-bottom: .35rem; }
.highlight-box {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 1.4rem 0;
}
.highlight-box p { margin: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.2rem 0 1.6rem; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }
.card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.card strong { display: block; color: var(--navy); margin-bottom: 4px; }
.related { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0 0; }
.related a {
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--navy);
  text-decoration: none; font-size: .82rem; font-weight: 700; padding: 8px 12px; border-radius: 8px;
}
.related a:hover { border-color: var(--orange); color: var(--orange); }
.cta-band { background: var(--navy); padding: 40px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-head); color: #fff; font-size: 1.7rem; margin-bottom: 8px; border: 0; padding: 0; }
.cta-band p { color: rgba(255,255,255,.65); margin-bottom: 18px; }
.cta-band .hero-cta { justify-content: center; }
footer { background: #0f172a; padding: 28px 0; text-align: center; }
footer p { color: rgba(255,255,255,.35); font-size: .8rem; }
footer p a { color: var(--orange); text-decoration: none; margin: 0 10px; }
.footer-credit {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: .55rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.32); text-decoration: none;
}
.footer-credit em { font-style: normal; font-weight: 800; color: rgba(255,255,255,.58); }
.footer-heart { width: 12px; height: 12px; color: var(--orange); flex-shrink: 0; transform-origin: center; }
.footer-credit:hover { color: rgba(255,255,255,.5); }
.footer-credit:hover em { color: var(--orange); }
.footer-credit:hover .footer-heart { animation: heartBeat .65s ease; }
@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  20% { transform: scale(1.28); }
  40% { transform: scale(.92); }
  60% { transform: scale(1.18); }
}

.m-cta { display: none; }

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .page-hero { padding: 32px 0 36px; }
  .page-hero h1 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .page-hero p { font-size: .95rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .content { padding: 36px 0 28px; }
  .content h2 { font-size: 1.25rem; }
  .cta-band { padding: 32px 16px 28px; }
  .cta-band h2 { font-size: 1.35rem; }
  .related a {
    min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px;
  }
  .m-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: #fff; border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 28px rgba(0,0,0,.1);
  }
  .m-cta a {
    display: flex; align-items: center; justify-content: center;
    min-height: 48px; border-radius: 10px; font-weight: 800; font-size: .9rem;
    text-decoration: none;
  }
  .m-cta .call { background: var(--navy); color: #fff; }
  .m-cta .ask { background: var(--orange); color: #fff; }
  footer { padding-bottom: 96px; }
}
@media (hover: none) {
  .btn-primary:hover { background: var(--orange); }
}
