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

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 {line-height: 1.18;font-family: 'Playfair Display', serif;color: var(--cr_dark)}
h4, h5, h6 {font-family: 'Source Sans 3', sans-serif;color: var(--cr_dark);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-weight: 600;font-size: clamp(1.2rem, 2.5vw, 1.75rem)}
p  { color: var(--cr_text); }

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Legal / inner pages ─────────────────────────────────────── */
.cr-page-hero {background: var(--cr_surface);padding: 50px 0 40px;border-bottom: 1px solid var(--cr_border)}
.cr-page-hero__tag {letter-spacing: .1em;font-weight: 700;font-size: .75rem;text-transform: uppercase;color: var(--cr_orange);margin-bottom: 10px}
.cr-content {max-width: 780px;margin: 0 auto}
.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 {color: var(--cr_muted);margin-bottom: 8px}
.cr-content a  { color: var(--cr_orange); }

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

/* ── 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 {gap: 12px;display: none;background: var(--cr_cream);border-top: 1px solid var(--cr_border);padding: 16px 24px;flex-direction: column}
  .cr-nav__mobile.is-open { display: flex; }
  .cr-nav__mobile a {padding: 8px 0;border-bottom: 1px solid var(--cr_border);color: var(--cr_text);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']){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']){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;clear:both;max-height:110px;margin-bottom:12px;max-width:110px}
}
