/* ============================================================================
   FREE REELS OFFER — /free-reels/
   Base block (reset + shared header) is the one every exported page carries;
   everything under "FREE REELS" is written for this page.
   ============================================================================ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--surface-page); }
body { font-family: var(--font-body); }
a { color: var(--text-accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* Shared site header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-subtle); }
.site-header .bar { max-width: 1160px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.site-header .logo { display: flex; align-items: center; gap: 10px; }
.site-header .wordmark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--text-primary); }
.site-header .nav-desktop { display: flex; align-items: center; gap: 28px; }
.site-header .nav-desktop a { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--text-secondary); transition: color 0.2s ease; }
.site-header .nav-desktop a:hover { color: var(--blue-600); }
.site-header .nav-burger { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--border-subtle); background: var(--white); border-radius: 10px; cursor: pointer; color: var(--text-primary); }
@media (max-width: 720px) { .site-header .nav-desktop { display: none !important; } .site-header .nav-burger { display: inline-flex !important; } }

/* ============================================================================
   FREE REELS
   ============================================================================ */
[data-pe-fr] [hidden] { display: none !important; }

.fr-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ---- Hero: offer left, live counter right ------------------------------- */
.fr-hero { display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center; padding: 64px 0 32px; }
.fr-eyebrow { color: var(--text-accent); margin-bottom: 12px; }
.fr-hero h1 { margin: 0 0 18px; color: var(--text-primary); }
.fr-lede { color: var(--text-secondary); margin: 0 0 28px; max-width: 580px; }
.fr-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.fr-counter { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 28px 28px 22px; text-align: center; }
.fr-counter-label { font-size: 12px; letter-spacing: var(--tracking-wide); text-transform: uppercase; font-weight: 600; color: var(--text-accent); }
.fr-counter-big { font-family: var(--font-display); font-weight: 700; font-size: 104px; line-height: 1; letter-spacing: -0.04em; color: var(--text-primary); margin: 10px 0 6px; font-variant-numeric: tabular-nums; }
.fr-counter-big small { font-size: 30px; letter-spacing: -0.02em; color: var(--text-muted); font-weight: 600; }
.fr-counter-sub { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text-secondary); margin-bottom: 18px; }
.fr-bar { height: 8px; border-radius: 4px; background: var(--ink-100); overflow: hidden; }
.fr-bar span { display: block; height: 100%; background: var(--blue-500); border-radius: 4px; transition: width var(--duration-base, 0.3s) var(--ease-out, ease); }
.fr-counter-foot { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-muted); margin-top: 10px; }

/* ---- Sections ----------------------------------------------------------- */
.fr-section { padding: 56px 0; }
.fr-section-head { max-width: 720px; margin: 0 0 32px; }
.fr-section-head .text-eyebrow, .fr-terms .text-eyebrow { color: var(--text-accent); margin-bottom: 12px; }
.fr-section-head h2, .fr-terms h2 { color: var(--text-primary); margin: 0 0 14px; }

.fr-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fr-step { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-xs); }
.fr-step .num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--radius-full); background: var(--accent-soft); border: 1px solid var(--accent-soft-border); color: var(--text-accent); font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.fr-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: var(--tracking-tight); color: var(--text-primary); margin: 0 0 8px; }
.fr-step p { color: var(--text-secondary); margin: 0; }

/* ---- Terms + claim ------------------------------------------------------ */
.fr-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fr-list { list-style: none; margin: 0; padding: 0; }
.fr-list li { position: relative; padding: 12px 0 12px 30px; border-top: 1px solid var(--border-subtle); font-size: 16px; line-height: 1.55; color: var(--text-secondary); }
.fr-list li:last-child { border-bottom: 1px solid var(--border-subtle); }
.fr-list li::before { content: ""; position: absolute; left: 4px; top: 19px; width: 12px; height: 7px; border-left: 2px solid var(--blue-500); border-bottom: 2px solid var(--blue-500); transform: rotate(-45deg); }
.fr-list b { color: var(--text-primary); font-weight: 600; }

.fr-claim { scroll-margin-top: 90px; }
.fr-card { background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 30px; }
.fr-card-title { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: var(--tracking-tight); color: var(--text-primary); margin: 0 0 6px; }
.fr-card-sub { margin: 0 0 20px; color: var(--text-secondary); font-size: 15px; }
.fr-card-sub b { color: var(--text-accent); }
.fr-card p { color: var(--text-secondary); }

.fr-errors { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; border-radius: var(--radius-md, 10px); padding: 10px 14px; margin: 0 0 16px; }
.fr-errors p { margin: 4px 0; color: #991B1B !important; font-size: 14.5px; }

.fr-field { display: block; margin: 0 0 14px; }
.fr-field > span { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.fr-field em { font-style: normal; font-weight: 400; color: var(--text-muted); margin-left: 4px; }
.fr-field input, .fr-field textarea { display: block; width: 100%; font: inherit; font-size: 16px; color: var(--text-primary); background: var(--white); border: 1px solid var(--border-strong); border-radius: 10px; padding: 11px 13px; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.fr-field textarea { resize: vertical; min-height: 48px; }
.fr-field input:focus, .fr-field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--accent-soft); }
.fr-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-secondary); margin: 4px 0 20px; cursor: pointer; }
.fr-check input { width: 18px; height: 18px; margin: 2px 0 0; flex: 0 0 auto; accent-color: var(--blue-600); }
.fr-submit { width: 100%; justify-content: center; }
.fr-fine { font-size: 13px; color: var(--text-muted) !important; margin: 14px 0 0; }
.fr-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fr-done-icon { width: 44px; height: 44px; border-radius: 50%; background: #ECFDF5; color: #15803D; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.fr-next { margin: 0 0 22px; padding-left: 20px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.6; }
.fr-next li { margin-bottom: 8px; }
.fr-wl-form { margin-top: 16px; }

/* ---- FAQ ---------------------------------------------------------------- */
.fr-faq { max-width: 760px; }
.fr-faq details { border-top: 1px solid var(--border-subtle); padding: 6px 0; }
.fr-faq details:last-child { border-bottom: 1px solid var(--border-subtle); }
.fr-faq summary { cursor: pointer; list-style: none; padding: 14px 32px 14px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text-primary); }
.fr-faq summary::-webkit-details-marker { display: none; }
.fr-faq summary::after { content: "+"; position: absolute; right: 4px; top: 12px; font-size: 22px; color: var(--text-muted); transition: transform 0.2s ease; }
.fr-faq details[open] summary::after { transform: rotate(45deg); }
.fr-faq p { color: var(--text-secondary); margin: 0 0 16px; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .fr-hero { grid-template-columns: 1fr; gap: 32px; padding-top: 44px; }
  .fr-counter { max-width: 460px; }
  .fr-split { grid-template-columns: 1fr; gap: 36px; }
  .fr-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .fr-wrap { padding: 0 20px; }
  .fr-steps { grid-template-columns: 1fr; }
  .fr-section { padding: 40px 0; }
  .fr-counter { max-width: none; padding: 22px 20px 18px; }
  .fr-counter-big { font-size: 84px; }
  .fr-card { padding: 22px 18px; }
  .fr-cta .btn { flex: 1 1 auto; justify-content: center; }
}
