/* ============================================================
   CORAL THEME — cr- prefix
   Palette: Orange #f97316, Cream #fffbf5 | Playfair Display + Source Sans 3
   Signature: centered editorial hero, horizontal scroll reviews, large icon payment
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {--cr_bg:        #ffffff;--cr_muted:     #8a6a50;--cr_text:      #4a2a10;--cr_r:         8px;--cr_surface:   #fef7ed;--cr_border:    #f0d9c0;--cr_dark2:     rgba(58,26,8,1);--cr_cream:     rgba(255,251,245,1);--cr_r-lg:      14px;--cr_shadow:    0 4px 24px rgba(249,115,22,.12);--cr_orange-lt: #fed7aa;--cr_orange:    #f97316;--cr_orange-dk: #ea6a0a;--cr_dark:      #1c0a00}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {box-sizing: border-box;padding: 0;margin: 0}
html { scroll-behavior: smooth; }
body {font-family: 'Source Sans 3', sans-serif;background: var(--cr_bg);min-height: 100vh;line-height: 1.65;font-size: 16px;color: var(--cr_text);pointer-events:auto;visibility:visible;isolation:auto}
img {max-width: 100%;display: block;height: auto}
a {color: var(--cr_orange);text-decoration: none}
a:hover { text-decoration: underline; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 {color: var(--cr_dark);font-family: 'Playfair Display', serif;line-height: 1.18}
h4, h5, h6 {color: var(--cr_dark);font-family: 'Source Sans 3', sans-serif;font-weight: 700}
h1 {font-weight: 800;font-size: clamp(2.2rem, 5vw, 3.8rem)}
h2 {font-size: clamp(1.7rem, 3.5vw, 2.8rem);font-weight: 700}
h3 {font-size: clamp(1.2rem, 2.5vw, 1.75rem);font-weight: 600}
p  { color: var(--cr_text); }

/* ── Layout ─────────────────────────────────────────────────── */
.cr-container {width: 100%;padding: 0 24px;margin: 0 auto;max-width: 1120px}
.cr-section   { padding: 72px 0; }

/* ── Nav ────────────────────────────────────────────────────── */
.cr-nav {position: sticky;background: var(--cr_cream);top: 0;border-bottom: 1px solid var(--cr_border);z-index: 100}
.cr-nav__inner {display: flex;justify-content: space-between;height: 64px;margin: 0 auto;max-width: 1120px;align-items: center;padding: 0 24px}
.cr-nav__logo {font-size: 1.6rem;font-family: 'Playfair Display', serif;color: var(--cr_dark);font-weight: 800}
.cr-nav__logo span { color: var(--cr_orange); }
.cr-nav__links {list-style: none;gap: 28px;display: flex}
.cr-nav__links a {font-size: .9rem;font-weight: 600;transition: color .2s;color: var(--cr_muted)}
.cr-nav__links a:hover {text-decoration: none;color: var(--cr_orange)}
.cr-nav__cta {font-size: .88rem;font-weight: 700;padding: 9px 22px;color: rgba(255,255,255,1) !important;border-radius: 50px;background: var(--cr_orange);transition: background .2s, transform .2s}
.cr-nav__cta:hover {text-decoration: none;background: var(--cr_orange-dk);transform: translateY(-1px)}
.cr-burger {gap: 5px;border: none;cursor: pointer;padding: 4px;display: none;flex-direction: column;background: none}
.cr-burger span {display: block;height: 2px;transition: all .3s;background: var(--cr_dark);width: 24px}

/* ── Hero: centered editorial ─────────────────────────────── */
.cr-hero {background: var(--cr_surface);text-align: center;border-bottom: 1px solid var(--cr_border);padding: 80px 0 70px}
.cr-hero__eyebrow {padding: 6px 18px;align-items: center;color: var(--cr_orange);border: 1px solid rgba(249,115,22,.2);font-size: .78rem;font-weight: 700;letter-spacing: .08em;margin-bottom: 22px;gap: 8px;display: inline-flex;border-radius: 50px;background: rgba(249,115,22,.1);text-transform: uppercase}
.cr-hero__h1 {max-width: 720px;margin-right: auto;margin-left: auto;margin-bottom: 20px}
.cr-hero__h1 em {font-style: italic;color: var(--cr_orange)}
.cr-hero__lead {margin: 0 auto 32px;max-width: 560px;color: var(--cr_muted);font-size: 1.1rem}
.cr-hero__actions {gap: 14px;display: flex;margin-bottom: 44px;justify-content: center;flex-wrap: wrap}

/* Hero meta (trust signals) */
.cr-hero__meta {display: flex;border-top: 1px solid var(--cr_border);max-width: 700px;padding-top: 32px;justify-content: center;flex-wrap: wrap;gap: 32px;margin: 0 auto}
.cr-hero__meta-item {flex-direction: column;display: flex;align-items: center;gap: 4px}
.cr-hero__meta-num {font-family: 'Playfair Display', serif;line-height: 1;font-size: 1.8rem;color: var(--cr_orange);font-weight: 800}
.cr-hero__meta-label {color: var(--cr_muted);font-weight: 600;font-size: .75rem;letter-spacing: .06em;text-transform: uppercase}

/* Review badge in hero */
.cr-hero__review {display: inline-flex;gap: 10px;margin-bottom: 28px;align-items: center;border: 1px solid var(--cr_border);box-shadow: var(--cr_shadow);border-radius: var(--cr_r);background: var(--cr_bg);padding: 10px 18px}
.cr-hero__review-stars {font-size: 1rem;letter-spacing: 3px;color: var(--cr_orange)}
.cr-hero__review-text {color: var(--cr_muted);font-size: .85rem}
.cr-hero__review-text strong { color: var(--cr_dark); }

/* ── Buttons ─────────────────────────────────────────────────── */
.cr-btn {font-size: .98rem;font-family: 'Source Sans 3', sans-serif;align-items: center;display: inline-flex;cursor: pointer;font-weight: 700;text-decoration: none !important;padding: 14px 30px;gap: 8px;border-radius: 50px;transition: all .2s;border: none}
.cr-btn--primary {background: var(--cr_orange);color: rgb(28,10,0);box-shadow: 0 4px 18px rgba(249,115,22,.3)}
.cr-btn--primary:hover {background: var(--cr_orange-dk);box-shadow: 0 8px 24px rgba(249,115,22,.4);transform: translateY(-2px)}
.cr-btn--outline {background: transparent;border: 2px solid var(--cr_border);color: var(--cr_text)}
.cr-btn--outline:hover {color: var(--cr_orange);border-color: var(--cr_orange)}
.cr-btn--sm {font-size: .88rem;padding: 10px 20px}
.cr-btn--full {justify-content: center;width: 100%}

/* ── Features ────────────────────────────────────────────────── */
.cr-features { background: var(--cr_bg); }
.cr-features__head {margin-bottom: 48px;text-align: center}
.cr-features__head p {color: var(--cr_muted);margin-top: 10px}
.cr-features__grid {gap: 24px;display: grid;grid-template-columns: repeat(3, 1fr)}
.cr-feat-card {padding: 30px 24px;border: 1px solid var(--cr_border);border-radius: var(--cr_r-lg);transition: box-shadow .2s, transform .2s;background: var(--cr_surface)}
.cr-feat-card:hover {transform: translateY(-3px);box-shadow: var(--cr_shadow)}
.cr-feat-card__icon {align-items: center;margin-bottom: 18px;height: 52px;background: rgba(249,115,22,.08);display: flex;border-radius: var(--cr_r);justify-content: center;font-size: 2rem;width: 52px}
.cr-feat-card__title {font-size: 1.2rem;color: var(--cr_dark);font-weight: 700;margin-bottom: 10px;font-family: 'Playfair Display', serif}
.cr-feat-card__text {font-size: .92rem;line-height: 1.65;color: var(--cr_muted)}

/* ── Horizontal scroll reviews ──────────────────────────────── */
.cr-reviews {background: var(--cr_surface);border-top: 1px solid var(--cr_border);border-bottom: 1px solid var(--cr_border)}
.cr-reviews__head {margin-bottom: 36px;text-align: center}
.cr-reviews__head p {margin-top: 8px;color: var(--cr_muted)}
.cr-reviews-scroll {-webkit-overflow-scrolling: touch;scrollbar-width: thin;overflow-x: auto;display: flex;padding-bottom: 16px;scrollbar-color: var(--cr_border) transparent;gap: 18px;scroll-snap-type: x mandatory}
.cr-reviews-scroll::-webkit-scrollbar { height: 4px; }
.cr-reviews-scroll::-webkit-scrollbar-track { background: transparent; }
.cr-reviews-scroll::-webkit-scrollbar-thumb {background: var(--cr_border);border-radius: 4px}
.cr-review-card {gap: 12px;scroll-snap-align: start;flex-direction: column;background: var(--cr_bg);display: flex;border: 1px solid var(--cr_border);padding: 24px;border-radius: var(--cr_r-lg);flex: 0 0 300px}
.cr-review-card__stars {letter-spacing: 2px;font-size: .9rem;color: var(--cr_orange)}
.cr-review-card__text {font-family: 'Playfair Display', serif;font-style: italic;font-size: .95rem;color: var(--cr_text);line-height: 1.6;flex: 1}
.cr-review-card__author {align-items: center;gap: 10px;border-top: 1px solid var(--cr_border);padding-top: 10px;display: flex}
.cr-review-card__avatar {display: flex;align-items: center;border-radius: 50%;font-size: 1rem;width: 38px;flex-shrink: 0;height: 38px;background: linear-gradient(135deg, var(--cr_orange), var(--cr_orange-lt));justify-content: center}
.cr-review-card__name {font-weight: 700;color: var(--cr_dark);font-size: .85rem}
.cr-review-card__date {font-size: .75rem;color: var(--cr_muted)}

/* ── Payments (large icon) ────────────────────────────────── */
.cr-payments { background: var(--cr_bg); }
.cr-payments__head {text-align: center;margin-bottom: 40px}
.cr-payments__head p {margin-top: 8px;color: var(--cr_muted)}
.cr-pay-grid {grid-template-columns: repeat(5, 1fr);gap: 16px;display: grid}
.cr-pay-card {text-align: center;border-radius: var(--cr_r-lg);border: 2px solid var(--cr_border);padding: 24px 16px;transition: border-color .2s, box-shadow .2s;background: var(--cr_surface)}
.cr-pay-card:hover {box-shadow: var(--cr_shadow);border-color: var(--cr_orange)}
.cr-pay-card__icon {margin-bottom: 10px;font-size: 2.6rem}
.cr-pay-card__name {color: var(--cr_dark);font-weight: 700;font-size: .88rem}
.cr-pay-card__time {margin-top: 4px;color: var(--cr_muted);font-size: .75rem}
.cr-pay-card__instant {display: inline-block;padding: 2px 8px;color: #fff;text-transform: uppercase;font-weight: 700;letter-spacing: .08em;font-size: .65rem;margin-top: 6px;border-radius: 10px;background: var(--cr_orange)}

/* ── FAQ ─────────────────────────────────────────────────────── */
.cr-faq { background: var(--cr_surface); }
.cr-faq__head {margin-bottom: 48px;text-align: center}
.cr-faq__head p {margin-top: 10px;color: var(--cr_muted)}
.cr-faq__list {flex-direction: column;max-width: 760px;gap: 10px;display: flex;margin: 0 auto}
.cr-faq-item {border-radius: var(--cr_r);background: var(--cr_bg);overflow: hidden;transition: border-color .2s;border: 1px solid var(--cr_border)}
.cr-faq-item:focus-within { border-color: var(--cr_orange); }
.cr-faq-item__q {align-items: center;border: none;padding: 18px 22px;background: none;font-weight: 600;font-size: .98rem;gap: 16px;justify-content: space-between;font-family: 'Source Sans 3', sans-serif;text-align: left;width: 100%;cursor: pointer;color: var(--cr_dark);display: flex}
.cr-faq-item__q:hover { color: var(--cr_orange); }
.cr-faq-item__arr {font-size: .8rem;transition: transform .3s;flex-shrink: 0;color: var(--cr_orange)}
.cr-faq-item[data-open] .cr-faq-item__arr { transform: rotate(180deg); }
.cr-faq-item__a {transition: max-height .35s ease, padding .35s;padding: 0 22px;overflow: hidden;max-height: 0}
.cr-faq-item[data-open] .cr-faq-item__a {max-height: 400px;padding: 0 22px 18px}
.cr-faq-item__a p {color: var(--cr_muted);line-height: 1.7;font-size: .9rem}

/* ── CTA ─────────────────────────────────────────────────────── */
.cr-cta-section {background: linear-gradient(135deg, var(--cr_orange) 0%, #c2410c 100%);padding: 72px 0;text-align: center}
.cr-cta-section h2 {margin-bottom: 14px;color: rgb(255,255,255);font-family: 'Playfair Display', serif}
.cr-cta-section p {margin-bottom: 28px;font-size: 1.05rem;color: rgba(255,255,255,.85)}
.cr-cta-section .cr-btn--outline {border-color: rgba(255,255,255,.5);color: #fff}
.cr-cta-section .cr-btn--outline:hover {background: rgba(255,255,255,.1);border-color: #fff}

/* ── Footer ─────────────────────────────────────────────────── */
.cr-footer {background: var(--cr_dark);padding: 56px 0 28px}
.cr-footer__grid {display: grid;grid-template-columns: 1.5fr 1fr 1fr 1fr;gap: 40px;margin-bottom: 44px}
.cr-footer__brand {font-size: 1.6rem;font-weight: 800;color: #fff;font-family: 'Playfair Display', serif;margin-bottom: 14px}
.cr-footer__brand span { color: var(--cr_orange); }
.cr-footer__desc {font-size: .85rem;line-height: 1.65;color: rgba(255,255,255,.5)}
.cr-footer__col h4 {color: rgba(255,255,255,.4);text-transform: uppercase;letter-spacing: .1em;margin-bottom: 14px;font-weight: 700;font-size: .72rem}
.cr-footer__col ul {gap: 8px;list-style: none;flex-direction: column;display: flex}
.cr-footer__col ul a {transition: color .2s;font-size: .88rem;color: rgba(255,255,255,.5)}
.cr-footer__col ul a:hover {color: var(--cr_orange-lt);text-decoration: none}
.cr-footer__bottom {gap: 12px;align-items: center;padding-top: 22px;justify-content: space-between;display: flex;border-top: 1px solid rgba(255,255,255,.1);flex-wrap: wrap}
.cr-footer__copy {color: rgba(255,255,255,.4);font-size: .8rem}
.cr-footer__warn {max-width: 500px;text-align: right;font-size: .75rem;color: rgba(255,255,255,.4)}

/* ── Sticky CTA ─────────────────────────────────────────────── */
.sf-sticky-cta {transform: translateY(100%);left: 0;transition: transform .4s cubic-bezier(.22,1,.36,1);background: var(--cr_orange);box-shadow: 0 -4px 20px rgba(0,0,0,.2);right: 0;bottom: 0;z-index: 200;position: fixed}
.sf-sticky-cta.is-visible { transform: translateY(0); }
.sf-sticky-cta__inner {justify-content: space-between;margin: 0 auto;display: flex;gap: 16px;align-items: center;max-width: 1120px;padding: 12px 24px}
.sf-sticky-cta__text {font-size: .92rem;color: rgb(255,255,255);font-weight: 700}
.sf-sticky-cta__text span { text-decoration: underline; }
.sf-sticky-cta__actions {display: flex;align-items: center;gap: 12px}
.sf-sticky-cta__close {padding: 4px;border: none;font-size: 1.1rem;color: rgba(255,255,255,.8);cursor: pointer;background: none}
.sf-sticky-cta__close:hover { color: rgba(255,255,255,1); }

/* ── Legal / inner pages ─────────────────────────────────────── */
.cr-page-hero {border-bottom: 1px solid var(--cr_border);background: var(--cr_surface);padding: 50px 0 40px}
.cr-page-hero__tag {text-transform: uppercase;letter-spacing: .1em;color: var(--cr_orange);font-weight: 700;font-size: .75rem;margin-bottom: 10px}
.cr-content {margin: 0 auto;max-width: 780px}
.cr-content h2 {font-size: 1.6rem;margin: 36px 0 12px}
.cr-content p  {margin-bottom: 16px;color: var(--cr_muted)}
.cr-content ul, .cr-content ol { margin: 0 0 16px 22px; }
.cr-content li {margin-bottom: 8px;color: var(--cr_muted)}
.cr-content a  { color: var(--cr_orange); }

/* ── Login ───────────────────────────────────────────────────── */
.cr-login-wrap {padding: 60px 24px;display: flex;min-height: 80vh;background: var(--cr_surface);justify-content: center;align-items: center}
.cr-login-card {width: 100%;max-width: 440px;padding: 44px 40px;background: var(--cr_bg);border-radius: var(--cr_r-lg);border: 1px solid var(--cr_border);box-shadow: var(--cr_shadow)}
.cr-login-card h2 {text-align: center;margin-bottom: 8px}
.cr-login-card__sub {margin-bottom: 28px;color: var(--cr_muted);text-align: center;font-size: .92rem}
.cr-form {display: flex;gap: 16px;flex-direction: column}
.cr-form label {color: var(--cr_text);font-size: .85rem;font-weight: 600;display: block;margin-bottom: 6px}
.cr-form input {font-family: 'Source Sans 3', sans-serif;color: var(--cr_dark);border-radius: var(--cr_r);font-size: .95rem;transition: border-color .2s;width: 100%;background: var(--cr_surface);padding: 12px 16px;border: 1.5px solid var(--cr_border)}
.cr-form input:focus {outline: none;border-color: var(--cr_orange)}
.cr-form__hint {color: var(--cr_muted);text-align: center;font-size: .78rem;margin-top: 4px}

/* ── Mobile ──────────────────────────────────────────────────── */
.cr-nav__mobile { display: none; }
@media (max-width: 900px) {
  .cr-features__grid { grid-template-columns: repeat(2, 1fr); }
  .cr-pay-grid { grid-template-columns: repeat(3, 1fr); }
  .cr-footer__grid { grid-template-columns: 1fr 1fr; }
  .cr-nav__links { display: none; }
  .cr-nav__cta { display: none; }
  .cr-burger { display: flex; }
  .cr-nav__mobile {display: none;gap: 12px;border-top: 1px solid var(--cr_border);flex-direction: column;padding: 16px 24px;background: var(--cr_cream)}
  .cr-nav__mobile.is-open { display: flex; }
  .cr-nav__mobile a {font-size: .95rem;border-bottom: 1px solid var(--cr_border);color: var(--cr_text);padding: 8px 0}
}
@media (max-width: 540px) {
  .cr-features__grid { grid-template-columns: 1fr; }
  .cr-pay-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-footer__grid { grid-template-columns: 1fr; }
  .cr-hero__meta { gap: 20px; }
  .cr-login-card { padding: 28px 22px; }
}

/* siteforge-footer-overlap-guard: stable mobile footer layout + sticky CTA clearance */
:where(footer,[class*='-footer']){z-index:1;overflow:visible;position:relative}
:where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar']){min-width:0}
:where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar'])>*{max-width:100%;min-width:0}
:where([class*='footer__brandblock'],[class*='footer__summary'],[class*='footer__meta'],[class*='footer__copy'],[class*='footer__warn'],[class*='linkstack']){word-break:break-word;overflow-wrap:anywhere}
@media(max-width:760px){
  .sf-has-sticky-cta :where([class*='-shell']),.sf-has-sticky-cta main{padding-bottom:calc(140px + env(safe-area-inset-bottom,0px)) !important}
  .sf-has-sticky-cta main~footer,.sf-has-sticky-cta :where(footer,[class$='-footer']){padding-bottom:calc(112px + env(safe-area-inset-bottom,0px)) !important}
  :where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar']){gap:16px !important;grid-template-columns:1fr !important;align-items:start !important;display:grid !important}
  :where([class*='footer__summary'],[class*='footer__bottom']){align-items:flex-start;gap:10px;display:flex;flex-direction:column;text-align:left}
  :where([class*='footer__brand']){float:none !important;max-height:110px;margin-bottom:12px;max-width:110px;clear:both}
}


.sf-related-articles{border-radius:24px;background:rgba(255,255,255,.06);max-width:1120px;border:1px solid rgba(148,163,184,.24);margin:clamp(28px,5vw,56px) auto;box-shadow:0 16px 45px rgba(15,23,42,.08);padding:clamp(18px,3vw,28px)}
.sf-related-articles h2{line-height:1.2;font-size:clamp(1.35rem,2.5vw,2rem);margin:0 0 8px}
.sf-related-articles>p{opacity:.78;line-height:1.65;margin:0 0 18px}
.sf-related-articles__list{gap:14px;padding:0;list-style:none;margin:0;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));display:grid}
.sf-related-articles__link{color:inherit;border:1px solid rgba(148,163,184,.18);background:rgba(255,255,255,.08);flex-direction:column;gap:7px;transition:transform .18s ease,border-color .18s ease,background .18s ease;display:flex;text-decoration:none;border-radius:18px;min-height:100%;padding:16px}
.sf-related-articles__link:hover{background:rgba(255,255,255,.13);transform:translateY(-2px);border-color:rgba(59,130,246,.45)}
.sf-related-articles__type{color:inherit;opacity:.88;background:rgba(59,130,246,.14);padding:3px 9px;font-size:.72rem;border-radius:999px;width:max-content;letter-spacing:.04em;font-weight:700;text-transform:uppercase}
.sf-related-articles strong{font-size:1rem;line-height:1.35}
.sf-related-articles small{font-size:.88rem;line-height:1.45;opacity:.72}
@media(max-width:640px){.sf-related-articles{padding:16px;border-radius:18px;margin:28px 12px}.sf-related-articles__list{grid-template-columns:1fr}.sf-related-articles__link{padding:14px}}
