/* Rolling band horizontal carousel */

/* Rolling band full width and infinite scroll */
.rolling-band {
  width: 100vw;
  overflow: hidden;
  position: relative;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
}
.rolling-track {
  display: flex;
  gap: 24px;
  animation: rolling 30s linear infinite;
}
.rolling-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
@keyframes rolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ===== Brand colours ===== */
:root {
  --gold: #ecd373;
  --dark: #24241e;
  --light: #f1f4fe;

  /* global variables */
  --radius: 46px;
  --stroke: rgba(255,255,255,0.06);
  --shadow-1: 0 18px 40px rgba(0,0,0,0.45);
}

/* ===== Page background ===== */
body {
  margin: 0;
  font-family: 'Poppins', system-ui, Arial, sans-serif;
  color: var(--light);
  background: linear-gradient(136deg, var(--dark) 0%, var(--dark) 62%, var(--gold) 100%);
  background-attachment: fixed;
}

/* Background overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(236,211,115,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: shimmer 20s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

/* ===== Layout container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.logo img {
  height: 75px;
  width: auto;
  display: block;
}
.actions { display: flex; gap: 14px; }

/* ===== Buttons ===== */
.util-link {
  text-decoration: none;
  padding: 20px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.util-link:hover { transform: translateY(-1px); }
.util-link--ghost {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}
.util-link--ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.util-link--primary {
  background: var(--gold);
  color: #24241e;
  box-shadow: 0 0 10px var(--gold);
}
.util-link--primary:hover {
  background: var(--light);
  color: var(--dark);
  box-shadow: 0 0 12px var(--light);
}

/* Hero button spacing */
.hero .util-link--primary {
  display: inline-block;
  margin-top: 5px;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
  margin-top: 192px;
  margin-bottom: 60px;
}
.hero h1, .hero h2, .hero h3 { margin-top: 0; }
.hero h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
}
.hero h2 {
  margin-bottom: 16px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
}
.hero h3 {
  margin-bottom: 24px;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--light);
  opacity: .85;
  font-weight: 600;
}

/* Hero media */
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: none;
}

/* ===== 2×2 Bubble Grid ===== */
.bubble-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(400px, 1fr));
  gap: 40px;
  margin: 60px auto;
  max-width: 1100px;
}
@media (max-width: 800px) {
  .bubble-container { grid-template-columns: 1fr; }
}

/* ===== Base Bubble ===== */
.bubble {
  background: rgba(36,36,30,0.92);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 40px 28px;
  color: var(--light);
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}
.bubble:nth-child(1) { animation-delay: .2s; }
.bubble:nth-child(2) { animation-delay: .4s; }
.bubble:nth-child(3) { animation-delay: .6s; }
.bubble:nth-child(4) { animation-delay: .8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.45), 0 0 40px rgba(236,211,115,.15);
  border-color: rgba(255,255,255,.09);
}
.bubble h2 {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}
.bubble p {
  margin: 0 0 18px;
  opacity: .9;
  font-size: 1rem;
}

/* ===== Bubble Chip ===== */
.bubble-chip {
  display: inline-block;
  margin: 0 auto 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 14px rgba(236,211,115,.35);
}

/* ===== Bubble CTA ===== */
.bubble-cta { margin-top: auto; padding-top: 20px; }
.bubble-cta .btn-cta { padding: 12px 22px; }

/* ===== Bought By Flipper ===== */
.bought-title {
  margin-top: -20px;
  text-align: center;
  font-size: clamp(50px, 12vw, 320px);
  font-weight: 900;
  color: #f1f4fe;
}

/* ===== Rolling band ===== */
.rolling-band {
  overflow: hidden;
  background: transparent;
  padding: 16px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 40px 0 0 0;
}
.rolling-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: rb-scroll 22s linear infinite;
}
.rolling-item { flex: 0 0 auto; }
.rolling-item img {
  display: block;
  width: 250px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform .3s ease;
}
.rolling-item img:hover { transform: scale(1.05); }
@keyframes rb-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Pricing ===== */
.pricing {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 80px 0;
  flex-wrap: wrap;
}
.pricing-card {
  background: linear-gradient(180deg, #24241e, #1a1a16);
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(236, 211, 115, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.plan-badge {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}
.price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}
.price-currency { font-size: 1.5rem; color: var(--light); }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--light); }
.price-cadence { font-size: 1rem; color: var(--light); opacity: .8; }
.features { list-style: none; padding: 0; margin: 0 0 20px 0; text-align: left; }
.features .feature {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  font-size: .95rem;
}
.trial-note { font-size: .85rem; color: var(--gold); margin-bottom: 15px; }
.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}
.btn-cta:hover { background: var(--light); box-shadow: 0 0 12px var(--gold); }
.section-title {
  margin: 50px 0 18px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
}

/* ===== FAQ Section ===== */
.faq {
  margin: 80px auto;
  max-width: 800px;
}

.faq-item {
  background: rgba(36,36,30,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 18px 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(236,211,115,0.15);
}

.faq-item summary {
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* removes arrow */
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: bold;
  transition: transform .2s;
}

.faq-item[open] summary::after {
  content: "–"; /* changes to minus when open */
}

.faq-item p {
  margin: 12px 0 0;
  line-height: 1.5;
  font-size: .95rem;
  opacity: .9;
}

/* ===== Scrolling Reviews ===== */
.review-band {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #ffffff00, #f2d6a200);
  padding: 1rem 0;
  position: relative;
}

.review-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}

.review-card {
  flex: 0 0 auto;
  margin: 0 2rem;
  padding: 1rem 2rem;
  background: #24241e41;
  border: 2px solid #24241e;
  border-radius: 12px;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  min-width: 250px;
  min-height: 250px; /* makes it taller */
  padding: 1.5rem;   /* adds more inside space */
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ===== Footer ===== */
footer {
  background: #24241e;
  padding: 60px 20px 0; /* top area; bottom handled by .footer-legal */
  color: #ccc;
}

/* top footer content */
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
}

.footer-downloads {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-downloads img {
  height: 45px;
  width: auto;
  transition: transform .2s ease;
}
.footer-downloads img:hover { transform: translateY(-2px); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #eee;
  text-decoration: none;
  font-size: .95rem;
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-social a {
  color: #eee;
  text-decoration: none;
}
.footer-social a:hover { color: var(--gold); }

/* bottom legal bar (Souk-style) */
.footer-legal {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #24241e; /* keep same tone */
}
.footer-legal-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.legal-links a {
  color: #e9e9e9;
  text-decoration: none;
  transition: color .2s ease;
}
.legal-links a:hover { color: var(--gold); }
.legal-links .dot {
  opacity: .6;
  margin: 0 6px;
}

.legal-copy {
  color: #e9e9e9;
  margin: 0;
  font-size: 1rem;
}

/* responsive: stack on small screens like Souk */
@media (max-width: 640px) {
  .footer-legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .legal-copy {
    align-self: flex-end; /* right-aligned copyright */
    width: 100%;
    text-align: right;
  }
}

