/* ============================================================
   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_orange-lt: #fed7aa;--cr_shadow:    0 4px 24px rgba(249,115,22,.12);--cr_dark2:     rgba(58,26,8,1);--cr_text:      #4a2a10;--cr_bg:        rgba(255,255,255,1);--cr_dark:      rgba(28,10,0,1);--cr_r-lg:      14px;--cr_cream:     #fffbf5;--cr_muted:     #8a6a50;--cr_border:    #f0d9c0;--cr_r:         8px;--cr_orange:    #f97316;--cr_surface:   #fef7ed;--cr_orange-dk: #ea6a0a}

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

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

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

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

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

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

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

/* ── Buttons ─────────────────────────────────────────────────── */
.cr-btn {align-items: center;border: none;padding: 14px 30px;gap: 8px;border-radius: 50px;text-decoration: none !important;font-size: .98rem;transition: all .2s;cursor: pointer;display: inline-flex;font-weight: 700;font-family: 'Source Sans 3', sans-serif}
.cr-btn--primary {color: rgba(28,10,0,1);box-shadow: 0 4px 18px rgba(249,115,22,.3);background: var(--cr_orange)}
.cr-btn--primary:hover {transform: translateY(-2px);box-shadow: 0 8px 24px rgba(249,115,22,.4);background: var(--cr_orange-dk)}
.cr-btn--outline {color: var(--cr_text);background: transparent;border: 2px solid var(--cr_border)}
.cr-btn--outline:hover {color: var(--cr_orange);border-color: var(--cr_orange)}
.cr-btn--sm {padding: 10px 20px;font-size: .88rem}
.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 {display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px}
.cr-feat-card {transition: box-shadow .2s, transform .2s;border-radius: var(--cr_r-lg);border: 1px solid var(--cr_border);padding: 30px 24px;background: var(--cr_surface)}
.cr-feat-card:hover {box-shadow: var(--cr_shadow);transform: translateY(-3px)}
.cr-feat-card__icon {border-radius: var(--cr_r);font-size: 2rem;margin-bottom: 18px;justify-content: center;height: 52px;width: 52px;align-items: center;background: rgba(249,115,22,.08);display: flex}
.cr-feat-card__title {font-weight: 700;margin-bottom: 10px;color: var(--cr_dark);font-family: 'Playfair Display', serif;font-size: 1.2rem}
.cr-feat-card__text {line-height: 1.65;font-size: .92rem;color: var(--cr_muted)}

/* ── Horizontal scroll reviews ──────────────────────────────── */
.cr-reviews {border-top: 1px solid var(--cr_border);background: var(--cr_surface);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 {scroll-snap-type: x mandatory;scrollbar-width: thin;-webkit-overflow-scrolling: touch;padding-bottom: 16px;gap: 18px;overflow-x: auto;display: flex;scrollbar-color: var(--cr_border) transparent}
.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 {scroll-snap-align: start;padding: 24px;flex: 0 0 300px;border-radius: var(--cr_r-lg);border: 1px solid var(--cr_border);background: var(--cr_bg);display: flex;flex-direction: column;gap: 12px}
.cr-review-card__stars {font-size: .9rem;letter-spacing: 2px;color: var(--cr_orange)}
.cr-review-card__text {font-size: .95rem;font-family: 'Playfair Display', serif;color: var(--cr_text);font-style: italic;line-height: 1.6;flex: 1}
.cr-review-card__author {display: flex;align-items: center;gap: 10px;padding-top: 10px;border-top: 1px solid var(--cr_border)}
.cr-review-card__avatar {display: flex;height: 38px;background: linear-gradient(135deg, var(--cr_orange), var(--cr_orange-lt));align-items: center;width: 38px;border-radius: 50%;flex-shrink: 0;justify-content: center;font-size: 1rem}
.cr-review-card__name {color: var(--cr_dark);font-weight: 700;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 {display: grid;gap: 16px;grid-template-columns: repeat(5, 1fr)}
.cr-pay-card {transition: border-color .2s, box-shadow .2s;border-radius: var(--cr_r-lg);text-align: center;border: 2px solid var(--cr_border);background: var(--cr_surface);padding: 24px 16px}
.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 {font-size: .88rem;font-weight: 700;color: var(--cr_dark)}
.cr-pay-card__time {color: var(--cr_muted);font-size: .75rem;margin-top: 4px}
.cr-pay-card__instant {background: var(--cr_orange);margin-top: 6px;font-size: .65rem;color: rgba(255,255,255,1);border-radius: 10px;text-transform: uppercase;font-weight: 700;display: inline-block;letter-spacing: .08em;padding: 2px 8px}

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

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

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

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

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

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

/* ── 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;flex-direction: column;border-top: 1px solid var(--cr_border);gap: 12px;background: var(--cr_cream);padding: 16px 24px}
  .cr-nav__mobile.is-open { display: flex; }
  .cr-nav__mobile a {border-bottom: 1px solid var(--cr_border);color: var(--cr_text);padding: 8px 0;font-size: .95rem}
}
@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']){position:relative;z-index:1;overflow:visible}
: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']){grid-template-columns:1fr !important;gap:16px !important;align-items:start !important;display:grid !important}
  :where([class*='footer__summary'],[class*='footer__bottom']){display:flex;gap:10px;flex-direction:column;align-items:flex-start;text-align:left}
  :where([class*='footer__brand']){float:none !important;max-height:110px;margin-bottom:12px;max-width:110px;clear:both}
}
