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

:root {
  --red: #d90f1f;
  --red-dark: #b80d1a;
  --gold: #f7c600;
  --black: #0d0d0d;
  --ink: #111;
  --muted: #666;
  --line: #e5e5e5;
  --soft: #f7f7f5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Barlow, system-ui, sans-serif;
  color: var(--ink);
  background: white;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--red); color: white; text-decoration: none;
  font-weight: 800; font-size: .85rem; letter-spacing: .05em;
  text-transform: uppercase; padding: 10px 18px; border-radius: 6px;
  border: none; cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.btn-red:hover { background: var(--red-dark); }

.btn-red-full {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: var(--red); color: white; text-decoration: none;
  font-weight: 800; font-size: .9rem; letter-spacing: .05em;
  text-transform: uppercase; padding: 13px 20px; border-radius: 6px;
  transition: background .2s;
}
.btn-red-full:hover { background: var(--red-dark); }

.btn-outline:hover { border-color: white; }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--ink); text-decoration: none;
  font-weight: 700; font-size: .82rem; letter-spacing: .05em;
  text-transform: uppercase; padding: 9px 16px; border-radius: 6px;
  border: 1.5px solid var(--line); transition: border-color .2s;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--ink); }

/* ── HERO ── */
.hero {

  background: var(--black);
  font-size: 0; line-height: 0;
}
.hero img { display: block; width: 100%; height: auto; }

/* ── SIGNUP ── */
.signup {
  padding: 50px 20px;
  background: white;
}

.signup-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}

.eyebrow {
  color: var(--red); font-size: .82rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900; text-transform: uppercase;
  line-height: .95; letter-spacing: .01em; margin-bottom: 14px;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; margin-bottom: 16px;
}

.signup-desc { font-size: 1rem; color: #444; line-height: 1.5; margin-bottom: 22px; }

.trust-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.trust-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .95rem;
}
.trust-list li::before {
  content: '✓';
  display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); color: white;
  font-size: .75rem; font-weight: 900; flex-shrink: 0;
}

.security-badge {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px;
}
.security-icon { font-size: 1.6rem; flex-shrink: 0; }
.security-badge strong { display: block; font-size: .9rem; margin-bottom: 4px; }
.security-badge p { font-size: .8rem; color: var(--muted); line-height: 1.4; }

/* Form */
.signup-form {
  background: white; border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.field { margin-bottom: 18px; }

.field label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--ink); margin-bottom: 7px;
}

.input-wrap { position: relative; }

.input-icon {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%); font-size: .95rem;
  pointer-events: none;
}

.input-wrap input,
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
  width: 100%; height: 50px;
  border: 1.5px solid var(--line); border-radius: 8px;
  padding: 0 14px 0 40px;
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--soft);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.input-wrap input:focus,
.signup-form input:focus {
  outline: none; border-color: var(--red);
  background: white; box-shadow: 0 0 0 3px rgba(217,15,31,.1);
}

.input-wrap input::placeholder { color: #aaa; }

.dob-row { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 10px; }

.dob-row select {
  height: 50px; border: 1.5px solid var(--line);
  border-radius: 8px; padding: 0 10px;
  font: inherit; font-size: .92rem; color: var(--ink);
  background: var(--soft); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  cursor: pointer; transition: border-color .2s;
}
.dob-row select:focus { outline: none; border-color: var(--red); }

.consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 18px; font-size: .82rem; color: var(--muted); line-height: 1.4;
}
.consent input { accent-color: var(--red); margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; cursor: pointer; }
.consent a { color: var(--red); }

.btn-submit {
  width: 100%; height: 54px;
  background: var(--red); color: white; border: none;
  border-radius: 8px; font: inherit; font-size: 1.05rem;
  font-weight: 900; letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; box-shadow: 0 6px 20px rgba(217,15,31,.3);
  transition: background .2s, transform .1s, box-shadow .2s;
}
.btn-submit:hover { background: var(--red-dark); box-shadow: 0 10px 28px rgba(217,15,31,.35); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.form-note { margin-top: 12px; text-align: center; font-size: .78rem; color: var(--muted); }

/* ── WINNERS ── */
.winners { padding: 50px 0 50px 20px; background: var(--soft); }

.section-head {
  max-width: 1100px; margin: 0 auto 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; padding-right: 20px;
}

.winners-carousel { position: relative; }

.winners-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; padding-right: 20px;
  scrollbar-width: none;
}
.winners-track::-webkit-scrollbar { display: none; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  font-size: 1.4rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, box-shadow .2s;
}
.carousel-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.carousel-btn.prev { left: 4px; }
.carousel-btn.next { right: 4px; }

.winner-card {
  flex: 0 0 260px; scroll-snap-align: start;
  background: white; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.winner-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.12); }

.winner-card img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: center top; display: block;
}

.winner-info { padding: 14px 16px; }

.draw-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--red); margin-bottom: 6px;
}
.draw-label img { width: 18px; height: 18px; border-radius: 50%; }

.winner-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: var(--red); text-transform: uppercase; line-height: 1;
}

.winner-tag {
  font-size: .72rem; font-weight: 900; color: var(--red);
  text-transform: uppercase; letter-spacing: .08em; margin: 2px 0 8px;
}

.winner-info strong { display: block; font-size: 1rem; font-weight: 800; }
.winner-info span { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; }
.winner-info small { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; }

/* ── FAQ ── */
.faq { padding: 50px 20px; background: white; }

.faq-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}

.faq-left .btn-outline-dark { margin-bottom: 24px; }

details {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px; margin-bottom: 10px;
  transition: border-color .2s;
}
details[open] { border-color: rgba(217,15,31,.3); }

summary {
  cursor: pointer; font-weight: 700; font-size: .95rem;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '↓'; color: var(--red); font-size: 1rem;
  flex-shrink: 0; transition: transform .2s;
}
details[open] summary::after { transform: rotate(180deg); }
summary:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }

details p { margin-top: 10px; color: var(--muted); line-height: 1.6; font-size: .9rem; animation: fadeIn .2s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-card {
  background: var(--soft); border: 1px solid var(--line);
  border-radius: 14px; padding: 32px 24px; text-align: center;
}
.contact-icon { font-size: 2.5rem; margin-bottom: 12px; }
.contact-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.contact-card p { color: var(--muted); margin-bottom: 20px; font-size: .9rem; }


/* ── FACEBOOK BANNER ── */
.fb-banner {
  background: #1877f2;
  padding: 20px;
}

.fb-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}

.fb-banner-left {
  display: flex; align-items: center; gap: 16px;
}

.fb-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: white; color: #1877f2;
  display: grid; place-items: center;
  font-size: 1.4rem; font-weight: 900;
  flex-shrink: 0;
}

.fb-banner-left strong {
  display: block; color: white;
  font-size: 1.05rem; font-weight: 900;
  margin-bottom: 3px;
}

.fb-banner-left p {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
}

.fb-follow-btn {
  display: inline-flex; align-items: center;
  background: white; color: #1877f2;
  text-decoration: none; font-weight: 900;
  font-size: .88rem; letter-spacing: .04em;
  text-transform: uppercase; padding: 12px 22px;
  border-radius: 8px; white-space: nowrap;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.fb-follow-btn:hover { background: #e8f0fd; }

/* ── REVIEWS ── */
.reviews {
  padding: 50px 0 50px 20px;
  background: white;
  border-top: 1px solid var(--line);
}

.reviews-head {
  max-width: 1100px; margin: 0 auto 24px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  padding-right: 20px;
}

.fb-rating {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 14px;
}

.fb-icon-sm {
  width: 34px; height: 34px; border-radius: 50%;
  background: #1877f2; color: white;
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 900;
  flex-shrink: 0;
}

.fb-icon-xs {
  width: 24px; height: 24px; border-radius: 50%;
  background: #1877f2; color: white;
  display: grid; place-items: center;
  font-size: .7rem; font-weight: 900;
  flex-shrink: 0;
}

.fb-rating .stars { color: #f7c600; font-size: 1rem; line-height: 1; }
.fb-rating span { font-size: .72rem; color: var(--muted); display: block; margin-top: 2px; }

.reviews-carousel { position: relative; }

.reviews-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 12px; padding-right: 20px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: white; border: 1px solid #dce0e8;
  border-radius: 12px; padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
  font-family: -apple-system, 'Segoe UI', sans-serif;
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.fb-post-header {
  display: flex; align-items: center; gap: 10px;
}

.fb-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #1877f2; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
}

.fb-post-meta { flex: 1; }

.fb-post-name {
  font-size: .86rem; color: #050505; line-height: 1.3;
  font-weight: 400;
}

.fb-post-name span { color: #65676b; font-weight: 400; }
.fb-post-name strong { color: #050505; font-weight: 700; }

.fb-post-time {
  font-size: .76rem; color: #65676b; margin-top: 2px;
}

.fb-logo-sm {
  width: 28px; height: 28px; border-radius: 50%;
  background: #1877f2; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 900; flex-shrink: 0;
}

.fb-post-text {
  font-size: .9rem; color: #050505; line-height: 1.6;
  margin: 0; font-style: normal;
}

.fb-post-footer {
  display: flex; gap: 16px;
  padding-top: 10px;
  border-top: 1px solid #e4e6ea;
  font-size: .8rem; color: #65676b; font-weight: 600;
}

.reviews-footer {
  max-width: 1100px; margin: 20px auto 0;
  padding-right: 20px; text-align: center;
}

.fb-reviews-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #1877f2; text-decoration: none;
  font-weight: 700; font-size: .88rem;
  transition: opacity .2s;
}
.fb-reviews-link:hover { opacity: .75; }

/* ── FOOTER ── */
footer { background: #0a0a0a; padding: 40px 20px 24px; }

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 64px; margin-bottom: 12px; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.footer-links h4, .footer-social h4 {
  font-size: .72rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem;
  padding: 4px 0; transition: color .2s;
}
.footer-links a:hover { color: white; }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  text-decoration: none; font-size: .78rem; font-weight: 800;
  transition: background .2s, color .2s;
}
.social-icons a:hover { background: var(--red); color: white; }

.footer-bottom {
  max-width: 1100px; margin: 20px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ── TABLET / DESKTOP ── */
@media (min-width: 760px) {
  .signup-inner { flex-direction: row; gap: 60px; align-items: flex-start; }
  .signup-left { flex: 0 0 38%; }
  .signup-right { flex: 1; }

  .faq-inner { flex-direction: row; gap: 48px; align-items: flex-start; }
  .faq-left { flex: 1; }
  .faq-right { flex: 0 0 300px; }

  .newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .newsletter-form { width: auto; }

  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 1080px) {
  .nav-inner { padding: 10px 40px; }
  .winners { padding-left: 40px; }
  .winners-track { padding-right: 40px; }
  .winners-carousel .carousel-btn.prev { left: 16px; }
  .winners-carousel .carousel-btn.next { right: 16px; }
}

.fb-see-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e7f0fd; color: #1877f2; text-decoration: none;
  font-weight: 700; font-size: .82rem; border-radius: 8px;
  padding: 8px 14px; transition: background .2s; white-space: nowrap;
}
.fb-see-more-btn:hover { background: #d0e4fb; }
