/* ============================================================
   TALKIES — SHARED BASE STYLES v1.0
   ============================================================
   Imported by all three funnel pages.
   Per-funnel colour palettes are CSS custom properties
   declared in a <style> block at the top of each HTML file.
   ============================================================ */

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.8; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.65rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ---- Layout --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow { max-width: 820px; }

.section { padding: 5rem 0; }
.section--tight { padding: 3.5rem 0; }

@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .section--tight { padding: 2.5rem 0; }
}

/* ---- Sticky Header ------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  background: var(--color-header-bg);
  box-shadow: 0 2px 24px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.625rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--color-logo, var(--color-accent));
  line-height: 1;
}

.header-logo .logo-dot { color: var(--color-primary); }

.header-tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: none;
}

@media (min-width: 640px) { .header-tagline { display: block; } }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* ---- Hero Section -------------------------------------------------------- */
.hero {
  padding-top: 0;
  background: var(--color-hero-bg);
  display: block;
}

.hero > .container {
  padding-top: 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  padding: 0 0 3rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 0 0 4rem;
  }
}

/* ---- Product Gallery ----------------------------------------------------- */
.gallery-wrap {
  position: relative;
}

@media (min-width: 900px) {
  .gallery-wrap { position: sticky; top: 96px; }
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-gallery-bg);
  aspect-ratio: 1 / 1;
  position: relative;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FF3B3B;
  color: #fff;
  padding: 0.35rem 0.875rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  z-index: 2;
  display: none;
}
body.oos-revealed .gallery-badge {
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.875rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  flex-shrink: 0;
  opacity: 0.65;
}

.gallery-thumb:hover { opacity: 0.9; }
.gallery-thumb.active { border-color: var(--color-accent); opacity: 1; }

/* ---- Product Info Panel -------------------------------------------------- */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.product-title { margin-bottom: 0; color: var(--color-heading); }

.product-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.stars { color: #F4A823; letter-spacing: 1px; font-size: 1rem; }
.stars-count { font-weight: 700; color: var(--color-text); }
.stars-sep { opacity: 0.4; }

/* ---- Benefit Badges ------------------------------------------------------ */
.badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.badge-item {
  display: flex;
  align-items: center;
  background: var(--color-badge-bg);
  border: 1px solid var(--color-badge-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 12px;
  padding: 0.875rem 1rem;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

/* ---- Out-of-Stock Box ---------------------------------------------------- */
.oos-box {
  background: var(--color-oos-bg);
  border: 2px solid var(--color-oos-border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.oos-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.oos-price-original {
  font-size: 1.625rem;
  font-weight: 700;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.oos-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #FF3B3B;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.oos-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.oos-subtext {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- Lead Capture Form --------------------------------------------------- */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.125rem;
  border: 2px solid var(--color-input-border);
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.form-input.error { border-color: #FF3B3B; }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(255,59,59,0.15); }
.form-input::placeholder { color: #9CA3AF; }

.notify-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  line-height: 1;
}

.notify-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.notify-btn:active:not(:disabled) { transform: translateY(-1px); }
.notify-btn:disabled { opacity: 0.65; cursor: not-allowed; }

/* ---- Urgency / Counter --------------------------------------------------- */
.urgency-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.urgency-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.4); }
}

.urgency-count { font-weight: 800; color: var(--color-text); }

.guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  justify-content: center;
}
.guarantee-strip span {
  padding: 0 0.875rem;
  border-right: 1px solid var(--color-border);
  line-height: 1;
}
.guarantee-strip span:last-child { border-right: none; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ---- Form Success State -------------------------------------------------- */
[data-form-container] .form-success {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #F0FFF4;
  border: 2px solid #86EFAC;
  border-radius: 20px;
  animation: fadeInUp 0.5s ease forwards;
}

.success-check {
  width: 60px; height: 60px;
  background: #22C55E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  font-weight: 900;
  margin: 0 auto 1rem;
}

.form-success h3 { color: #15803D; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.form-success p { color: #166534; font-size: 0.95rem; }

.share-btns {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.share-row { display: flex; gap: 0.5rem; }
.share-label { font-size: 0.8rem; color: #166534; margin: 0; }

.share-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 0.2s, opacity 0.2s;
  letter-spacing: 0.02em;
}

.share-btn:hover { opacity: 1; transform: translateY(-2px); }
.share-x { background: #000; color: #fff; }
.share-fb { background: #1877F2; color: #fff; }

/* ---- Section 2: Social Proof Bar ----------------------------------------- */
.proof-bar { background: var(--color-primary); padding: 4rem 0; }

.proof-header { text-align: center; margin-bottom: 2.5rem; }
.proof-header .section-eyebrow { color: var(--color-accent); }
.proof-header h2 { color: #fff; }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 0.625rem 1.5rem;
  margin-bottom: 1.5rem;
}

.rating-big { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.rating-right { display: flex; flex-direction: column; gap: 0.1rem; }
.rating-stars-lg { color: #F4A823; font-size: 1.1rem; letter-spacing: 2px; }
.rating-verified { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, background 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.t-header { display: flex; align-items: center; gap: 0.875rem; }

.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-accent);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}

.t-meta { flex: 1; min-width: 0; }
.t-name { font-weight: 800; font-size: 0.95rem; color: #fff; line-height: 1.2; }
.t-role { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.15rem; }
.t-stars { color: #F4A823; font-size: 0.9rem; letter-spacing: 1px; margin-top: 0.25rem; }

.t-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  flex: 1;
  margin: 0;
}

.t-quote::before { content: '\201C'; }
.t-quote::after { content: '\201D'; }

.t-scenario {
  font-size: 0.78rem;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  color: rgba(255,255,255,0.55);
  width: fit-content;
}

/* ---- Section 3: Before/After -------------------------------------------- */
.before-after { background: var(--color-bg-alt); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba-card { border-radius: 20px; overflow: hidden; }

.ba-card-body { padding: 2rem; }

.ba-card.before {
  background: #FFF2F0;
  border: 2px solid #FFCEC6;
}

.ba-card.after {
  background: var(--color-after-bg);
  border: 2px solid var(--color-after-border);
}

.ba-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.ba-card.before .ba-label { background: #FF6B6B; color: #fff; }
.ba-card.after .ba-label { background: var(--color-accent); color: var(--color-accent-text); }

.ba-title { font-size: 1.2rem; margin-bottom: 1.25rem; }
.ba-card.before .ba-title { color: #C0392B; }
.ba-card.after .ba-title { color: var(--color-primary); }

.ba-list { display: flex; flex-direction: column; gap: 0.875rem; }

.ba-card .ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ba-item-icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

/* ---- Sections 4+5: Steps (How It Works / How To Use) -------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card { display: flex; flex-direction: column; gap: 1.25rem; }

.step-num-wrap {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--color-accent);
  color: var(--color-accent-text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.375rem;
  flex-shrink: 0;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% - 52px);
  height: 2px;
  background: var(--color-accent);
  opacity: 0.2;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 640px) { .step-connector { display: block; } }

.step-img-wrap {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.step-img-placeholder {
  background: var(--color-badge-bg);
  border: 1px solid var(--color-badge-border);
}

.step-title { margin-bottom: 0.375rem; font-size: 1.1rem; }
.step-desc { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

/* ---- Section 6: Cost Comparison ----------------------------------------- */
.cost-section { background: var(--color-primary); }

.cost-header .eyebrow { color: var(--color-accent); }
.cost-header h2 { color: #fff; }
.cost-header p { color: rgba(255,255,255,0.68); }

.savings-callout {
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.savings-big {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  display: block;
}

.savings-label {
  font-size: 1rem;
  opacity: 0.88;
  margin-top: 0.625rem;
  font-weight: 600;
}

.cost-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  -webkit-overflow-scrolling: touch;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.cost-table th {
  padding: 1.125rem 1.25rem;
  text-align: left;
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.cost-table th:not(:first-child) { text-align: center; }

.cost-table td {
  padding: 0.9375rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  white-space: nowrap;
}

.cost-table td:not(:first-child) { text-align: center; }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr.total-row td { font-weight: 800; color: #fff; background: rgba(255,255,255,0.05); font-size: 1rem; }
.cost-table .talkies-col { color: var(--color-accent); font-weight: 800; }

.tax-banner {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 14px 14px 0;
  padding: 1.375rem 1.75rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.tax-banner strong { color: #fff; }

/* ---- Section 7: Feature Comparison Table --------------------------------- */
.feature-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  margin-top: 3rem;
  -webkit-overflow-scrolling: touch;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.feature-table thead th {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 0.875rem;
}

.feature-table thead th:first-child { text-align: left; min-width: 160px; }
.feature-table thead th.col-talkies { background: var(--color-accent); color: var(--color-accent-text); }

.feature-table tbody td {
  padding: 0.9375rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text);
}

.feature-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-heading);
}

.feature-table tbody tr:last-child td { border-bottom: none; }
.feature-table tbody tr:nth-child(odd) td { background: rgba(0,0,0,0.025); }
.feature-table tbody td.col-talkies { background: rgba(var(--color-accent-rgb), 0.06); font-weight: 700; color: var(--color-accent); }

.ft-yes { color: #16A34A; font-size: 1.3rem; font-weight: 900; }
.ft-no { color: #DC2626; font-size: 1.3rem; font-weight: 900; }
.ft-partial { color: #D97706; font-size: 0.85rem; font-weight: 700; }

/* ---- Section 8: UGC Gallery ---------------------------------------------- */
.ugc-section { background: var(--color-bg-alt); }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

@media (min-width: 540px) { .ugc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ugc-grid { grid-template-columns: repeat(4, 1fr); } }

.ugc-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-badge-bg);
  position: relative;
}

.ugc-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ugc-item:hover img { transform: scale(1.06); }

.ugc-item .ugc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

.ugc-item:hover .ugc-overlay { opacity: 1; }
.ugc-overlay-text { color: #fff; font-size: 0.78rem; font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-stars { color: #F4A823; letter-spacing: 1px; font-size: 0.9rem; }
.review-title { font-weight: 800; font-size: 0.95rem; color: var(--color-heading); margin: 0; }
.review-body { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin: 0; flex: 1; }

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-top: 0.625rem;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.review-name { font-weight: 700; color: var(--color-text); }
.verified { color: #16A34A; font-weight: 700; }
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* ---- Section 9: FAQ ------------------------------------------------------ */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}

.faq-item.open { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-heading);
  cursor: pointer;
  background: none;
  border: none;
  gap: 1rem;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-accent-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ---- Section 10: Footer -------------------------------------------------- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.75fr; }
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.125rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; opacity: 1; }

.footer-vip-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.875rem;
  line-height: 1.55;
}

.footer-vip-row {
  display: flex;
  gap: 0.5rem;
}

.footer-vip-input {
  flex: 1;
  padding: 0.7rem 0.875rem;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.footer-vip-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-vip-input:focus { border-color: var(--color-accent); }

.footer-vip-btn {
  padding: 0.7rem 1rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-vip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy { font-size: 0.8rem; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.8rem;
}

.footer-legal a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; opacity: 1; }

.payment-icons {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pay-icon {
  padding: 0.3rem 0.6rem;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---- Floating Mobile CTA Bar --------------------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--color-primary);
  border-top: 3px solid var(--color-accent);
  padding: 0.875rem 1.25rem env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.floating-cta.visible { transform: translateY(0); }

.floating-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}

.floating-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
}

.floating-label span { display: block; color: var(--color-accent); font-size: 0.7rem; font-weight: 700; }

.floating-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.floating-form .form-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 10px;
  min-width: 0;
}

.floating-form .form-input::placeholder { color: rgba(255,255,255,0.45); }
.floating-form .form-input:focus { border-color: var(--color-accent); box-shadow: none; }

.floating-form .notify-btn {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
  width: auto;
  white-space: nowrap;
}

@media (min-width: 1024px) { .floating-cta { display: none; } }

/* ---- Scroll Animations ---------------------------------------------------- */
.fade-in {
  opacity: 0;
  transition: opacity 0.75s ease;
}

.fade-in.visible { opacity: 1; }

.slide-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up.visible { opacity: 1; transform: translateY(0); }

.slide-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Utilities ------------------------------------------------------------ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.pill {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.divider {
  height: 1px;
  background: var(--color-border);
  margin: 2rem 0;
}

.section-header { margin-bottom: 1rem; }
.section-header.center { text-align: center; }
.section-header.center .section-intro { margin: 0.75rem auto 0; }

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-top: 0.75rem;
  line-height: 1.65;
}
