/* ============================================================
   WB7 Winner's Circle — Landing Theme (self-contained, light)
   Scoped under .wc so it never touches the rest of the app.
   Bootstrap is used only for its grid.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* Native smooth scrolling + offset so the sticky header doesn't cover anchors */
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

.wc {
    --red: #c1272d;
    --red-dark: #9e1b21;
    --red-soft: rgba(193, 39, 45, .08);
    --ink: #1c1c1e;
    --muted: #6c6c72;
    --bg: #ffffff;
    --bg-soft: #f5f5f6;
    --pink: #f6dadb;
    --gold: #f5b301;
    --line: #e9e9ec;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 18px rgba(20, 20, 25, .06);
    --shadow: 0 18px 50px rgba(20, 20, 25, .12);
    --ease: cubic-bezier(.22, 1, .36, 1);

    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

.wc *, .wc *::before, .wc *::after { box-sizing: border-box; }
.wc h1, .wc h2, .wc h3, .wc h4, .wc h5, .wc p, .wc ul, .wc ol { margin: 0; padding: 0; }
.wc h1, .wc h2, .wc h3, .wc h4, .wc h5 { font-family: 'Poppins', sans-serif; }
.wc ul { list-style: none; }
.wc a { text-decoration: none; color: inherit; }
.wc img { max-width: 100%; height: auto; display: block; }
.wc ::selection { background: var(--red); color: #fff; }

.wc-container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.wc-section { padding: 80px 0; position: relative; z-index: 1; }
.wc-soft { background: var(--bg-soft); }
.wc .g { color: var(--red); }

/* Decorative blobs / dice */
.wc-blob { position: absolute; border-radius: 50%; background: var(--pink); z-index: 0; filter: blur(1px); opacity: .8; pointer-events: none; }
.wc-blob.l { left: -120px; width: 220px; height: 220px; }
.wc-blob.r { right: -140px; width: 260px; height: 260px; }
.wc-dice { position: absolute; left: -10px; width: 68px; opacity: .9; z-index: 0; pointer-events: none; }

/* Eyebrow */
.wc-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    text-transform: uppercase; letter-spacing: .22em; font-size: 11.5px; font-weight: 700;
    color: var(--muted); margin-bottom: 16px;
}
.wc-eyebrow::before, .wc-eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--muted); opacity: .5; }

/* Headings */
.wc-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.wc-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; }
.wc-head p { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin-top: 14px; }

/* Buttons */
.wc-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 12px 28px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer;
    border: 1.5px solid transparent; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
    white-space: nowrap;
}
.wc-btn-dark { background: #161616; color: #fff; }
.wc-btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .28); color: #fff; }
.wc-btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(193, 39, 45, .28); }
.wc-btn-red:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 16px 32px rgba(193, 39, 45, .38); color: #fff; }
.wc-btn-outline { background: transparent; color: #1a1a1a; border-color: #1a1a1a; }
.wc-btn-outline:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; transform: translateY(-2px); }

/* ---------- Header ---------- */
.wc-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line); transition: box-shadow .3s var(--ease);
}
.wc-header.scrolled { box-shadow: 0 6px 22px rgba(0, 0, 0, .08); }
.wc-nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.wc-nav .logo img { height: 40px; width: auto; }
.wc-nav-links { display: flex; align-items: center; gap: 26px; }
.wc-nav-links a { font-size: 14px; font-weight: 600; color: #3a3a3e; transition: color .2s var(--ease); }
.wc-nav-links a:hover { color: var(--red); }
.wc-nav-actions { display: flex; align-items: center; gap: 10px; }
.wc-nav-actions .wc-btn { padding: 9px 22px; font-size: 13px; }

/* ---------- Hero ---------- */
.wc-hero { position: relative; min-height: 920px; display: flex; align-items: center; text-align: center; overflow: hidden; }
.wc-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.wc-hero .bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.15) 40%, rgba(255,255,255,.55) 100%);
}
.wc-hero .wc-container { position: relative; z-index: 1; }
.wc-hero h1 {
    font-size: clamp(34px, 6vw, 66px); font-weight: 900; letter-spacing: .02em; color: var(--red);
    text-shadow: 0 2px 20px rgba(255, 255, 255, .6); line-height: 1.05;
}
.wc-hero p { max-width: 560px; margin: 20px auto 0; color: #2b2b2e; font-weight: 600; font-size: 16px; line-height: 1.6; }
.wc-hero .wc-btn { margin-top: 30px; }

/* ---------- About ---------- */
.wc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.wc-about h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.2; }
.wc-about p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-top: 18px; }
.wc-about-media { position: relative; }
.wc-about-media .card-img { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.wc-about-media .badge-exp {
    position: absolute; bottom: -18px; left: -18px; display: flex; align-items: center; gap: 12px;
    background: #161616; color: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow);
}
.wc-about-media .badge-exp b { font-size: 22px; font-family: 'Poppins', sans-serif; color: var(--gold); }
.wc-about-media .badge-exp span { font-size: 12px; color: #d9d9d9; max-width: 90px; line-height: 1.3; }

/* ---------- Why choose (numbered) ---------- */
.wc-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.wc-why .item .num { font-family: 'Poppins', sans-serif; font-size: 34px; font-weight: 800; color: var(--ink); line-height: 1; }
.wc-why .item h3 { font-size: 14.5px; font-weight: 700; margin: 14px 0 10px; }
.wc-why .item p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.wc-why .item { position: relative; }

/* ---------- How it works ---------- */
.wc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.wc-step .ic {
    width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: var(--red-soft); color: var(--red); font-size: 24px; transition: transform .25s var(--ease);
}
.wc-step:hover .ic { transform: translateY(-4px); }
.wc-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.wc-step p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ---------- Tier breakdown table ---------- */
.wc-tier-table { max-width: 640px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.wc-tier-table table { width: 100%; border-collapse: collapse; }
.wc-tier-table th { background: #fafafa; text-align: left; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px; color: #444; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.wc-tier-table td { padding: 15px 22px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.wc-tier-table tr:last-child td { border-bottom: 0; }
.wc-tier-table td:last-child, .wc-tier-table th:last-child { text-align: right; }
.wc-tier-table td:last-child { color: var(--red); font-weight: 700; }
.wc-tier-table tbody tr:hover td, .wc-tier-table tbody tr:hover td { background: var(--red-soft); }

/* ---------- Calculator ---------- */
.wc-calc-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px; align-items: start; }
.wc-calc-tiers { display: grid; gap: 16px; }
.wc-tier-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.wc-tier-card .tname { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.wc-tier-card .fields { display: grid; gap: 12px; }
.wc-tier-card input {
    width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 14px; color: var(--ink); background: #fbfbfc; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.wc-tier-card input::placeholder { color: #a6a6ac; }
.wc-tier-card input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); background: #fff; }
.wc-tier-card .rate { margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); }

.wc-result { position: sticky; top: 96px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); text-align: center; }
.wc-result .lbl { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.wc-result .amt { font-family: 'Poppins', sans-serif; font-size: 44px; font-weight: 800; color: var(--red); margin: 12px 0 6px; line-height: 1; }
.wc-result .sub { font-size: 12.5px; color: var(--muted); }
.wc-result .reset { margin-top: 18px; }

/* ---------- Video ---------- */
.wc-video { max-width: 820px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; background: #000; }
.wc-video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Testimonials ---------- */
.wc-tst { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wc-tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.wc-tst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.wc-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.wc-tst-card p { color: #4a4a4e; font-size: 14px; line-height: 1.65; }
.wc-tst-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.wc-tst-who .av { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, var(--red), var(--red-dark)); flex: 0 0 auto; }
.wc-tst-who b { font-size: 14px; display: block; }
.wc-tst-who span { font-size: 12px; color: var(--muted); }
.wc-tst-cta { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }

/* ---------- FAQ ---------- */
.wc-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.wc-faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .25s var(--ease); }
.wc-faq details[open] { box-shadow: var(--shadow-sm); border-color: #dcdce0; }
.wc-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 15px; }
.wc-faq summary::-webkit-details-marker { display: none; }
.wc-faq summary .q { display: flex; gap: 12px; align-items: baseline; }
.wc-faq summary .q .qi { color: var(--red); font-weight: 800; font-family: 'Poppins', sans-serif; }
.wc-faq summary .chev { color: var(--red); transition: transform .25s var(--ease); flex: 0 0 auto; }
.wc-faq details[open] summary .chev { transform: rotate(180deg); }
.wc-faq .ans { padding: 0 22px 20px 48px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ---------- Footer ---------- */
.wc-footer { border-top: 1px solid var(--line); background: #fafafa; padding: 40px 0 24px; text-align: center; }
.wc-footer .logo img { height: 40px; margin: 0 auto 16px; }
.wc-footer .links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.wc-footer .links a { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.wc-footer .links a:hover { color: var(--red); }
.wc-footer .copy { font-size: 13px; color: #9a9aa0; }

/* Back to top */
.wc-top { position: fixed; right: 22px; bottom: 26px; width: 46px; height: 46px; border-radius: 12px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 26px rgba(193, 39, 45, .4); z-index: 90; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease); cursor: pointer; border: 0; }
.wc-top.show { opacity: 1; visibility: visible; transform: none; }

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
    .wc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
    .wc-reveal.in { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 991px) {
    .wc-about-grid { grid-template-columns: 1fr; gap: 44px; }
    .wc-why { grid-template-columns: repeat(2, 1fr); gap: 26px 24px; }
    .wc-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .wc-calc-grid { grid-template-columns: 1fr; }
    .wc-result { position: static; }
    .wc-tst { grid-template-columns: repeat(2, 1fr); }
    .wc-nav-links { display: none; }
}
@media (max-width: 575px) {
    .wc-section { padding: 56px 0; }
    .wc-why, .wc-steps, .wc-tst { grid-template-columns: 1fr; }
    .wc-tier-card .fields { grid-template-columns: 1fr; }
    .wc-nav-actions .wc-btn { padding: 8px 16px; }
}
