/* =============================================
   BLUEBERRY STUDIOS — Global Stylesheet
   Domain: blueberrywebcammodels.co.uk
   ============================================= */

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

/* ---- CSS Custom Properties (Brand Tokens) ---- */
:root {
  --pink-primary:    #e8547a;
  --pink-light:      #ff9bb3;
  --pink-pale:       #fff0f4;
  --pink-mid:        #fcd5de;
  --pink-dark:       #8a4f5e;
  --pink-deep:       #c23d61;
  --purple-accent:   #9b59b6;
  --blueberry:       #3d1a5f;
  --text-dark:       #1a1a2e;
  --text-mid:        #4a3050;
  --text-light:      #7a6080;
  --text-muted:      #a0899e;
  --bg-white:        #ffffff;
  --bg-off:          #fdf8fa;
  --bg-section:      #fff5f8;
  --border-light:    #f0dde5;
  --shadow-pink:     0 4px 24px rgba(232,84,122,0.12);
  --shadow-card:     0 2px 16px rgba(138,79,94,0.10);
  --shadow-hover:    0 8px 32px rgba(232,84,122,0.20);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       24px;
  --radius-xl:       40px;
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height:      72px;
  --transition:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-pink:   linear-gradient(135deg, #e8547a 0%, #c23d61 100%);
  --shadow-sm:       0 2px 8px rgba(232,84,122,0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--pink-deep); }
ul { list-style: none; }
button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }

/* ---- Typography Scale ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-primary);
  background: var(--pink-pale);
  border: 1px solid var(--pink-mid);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-dark {
  background: var(--blueberry);
  color: #fff;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,84,122,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,84,122,0.45);
  color: #fff;
}

.btn-outline {
  border-color: var(--pink-primary);
  color: var(--pink-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--pink-pale);
  color: var(--pink-deep);
}

.btn-white {
  background: #fff;
  color: var(--pink-primary);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  color: var(--pink-deep);
}

.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---- Navigation ---- */
#shared-header nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(232, 84, 122, 0.12);
  box-shadow: 0 8px 30px rgba(138, 79, 94, 0.08);
  height: var(--nav-height);
  transition: var(--transition);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--pink-primary);
  background: var(--pink-pale);
}

.desktop-nav a.nav-cta {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(232,84,122,0.30);
}

.desktop-nav a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(232,84,122,0.40);
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-primary));
}

/* ---- Burger ---- */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.burger-menu .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.burger-menu.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-menu.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-menu.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Mobile Nav ---- */
/* Lives at body level (outside nav) so it's never clipped by a fixed stacking context */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 80px 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1100;   /* above nav (1000) */
  /* Hidden by default */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease,
              visibility 0s linear 0.28s;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s ease,
              visibility 0s linear 0s;
}

/* Close (✕) button inside mobile nav */
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: var(--bg-light); }

.mobile-nav a {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
  margin-top: 16px;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff !important;
  border-radius: 100px;
  padding: 14px;
}

/* ---- Page Offset (nav height) ---- */
.page-offset { padding-top: var(--nav-height); }

/* =========================
   HERO — redesigned
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdf1f5 0%, #fce6ed 45%, #f8dfe8 100%);
}

/* full-width landscape image */
.hero-media {
  position: relative;
  width: 100%;
  height: clamp(320px, 48vw, 680px);

  background: url('/hero-model.jpg') center/cover no-repeat;
}

/* controlled fade from image into pink */
.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 18vw, 220px);
  background: linear-gradient(
    to bottom,
    rgba(252, 230, 237, 0) 0%,
    rgba(252, 230, 237, 0.18) 22%,
    rgba(252, 230, 237, 0.42) 46%,
    rgba(252, 230, 237, 0.74) 72%,
    rgba(252, 230, 237, 1) 100%
  );
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;

  /* THIS is what you were missing */
  background: linear-gradient(
    to bottom,
    rgba(252, 228, 236, 0.25) 0%,   /* light tint at top */
    rgba(252, 228, 236, 0.45) 40%,
    rgba(252, 228, 236, 0.75) 75%,
    rgba(252, 228, 236, 0.95) 100%  /* strong at bottom */
  );

  z-index: 1;
}
/* content area */
.hero-body {
  position: relative;
  z-index: 2;
  margin-top: -240px; /* pulls text into image slightly */
}


.hero-shell {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-body {
    margin-top: -450px;
    position: relative;
    z-index: 3;
    padding-bottom: 100px;
  }

}

@media (min-width: 992px) {
  .hero-media {
    height: 520px;
  }

  .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(252, 228, 236, 0.12) 0%,
    rgba(252, 228, 236, 0.22) 38%,
    rgba(252, 228, 236, 0.48) 72%,
    rgba(252, 228, 236, 0.72) 100%
  );
  z-index: 1;
}
}



/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 84, 122, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink-dark);
  box-shadow: 0 10px 30px rgba(138, 79, 94, 0.08);
  backdrop-filter: blur(10px);
  margin-bottom: 1.4rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(2.25rem, 5.6vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--text-dark);
  max-width: 11ch;
  margin: 0 auto 1.15rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(232, 84, 122, 0.34);
  backdrop-filter: blur(8px);
}

/* whatsapp */
.hero-whatsapp {
  margin: 0 0 2.4rem;
  font-size: 0.97rem;
  color: var(--text-light);
}

.hero-whatsapp i {
  color: #25D366;
  margin-right: 6px;
}

.hero-whatsapp a {
  color: var(--pink-primary);
  font-weight: 700;
  text-decoration: none;
}

.hero-whatsapp a:hover {
  color: var(--pink-deep);
}

/* stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 84, 122, 0.12);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(138, 79, 94, 0.06);
  backdrop-filter: blur(8px);
}

.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
  color: var(--pink-primary);
  margin-bottom: 6px;
}

.hero-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.35;
}

/* desktop polish */
@media (min-width: 1100px) {
  .hero-body {
    padding-bottom: 104px;
  }

  .hero-title {
    max-width: 12ch;
  }
}

/* tablet */
@media (max-width: 900px) {
  .hero-media {
    height: clamp(300px, 46vw, 520px);
    background-position: center center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title {
    max-width: 13ch;
  }
}

/* mobile */
@media (max-width: 768px) {
  .hero-media {
    height: 260px;
    background-position: center center;
    background-size: cover;
  }

  .hero-media::after {
    height: 120px;
  }

  .hero-body {
    margin-top: -10px;
    padding: 0 0 56px;
  }

  .hero-shell {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-stat {
    padding: 16px 14px;
  }
}

/* very small phones */
@media (max-width: 480px) {
  .hero-media {
    height: 220px;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 7px 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat-value {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.76rem;
  }
}

/* ---- Cards ---- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-mid);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.card-text  { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ---- Earnings Table ---- */
.earnings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.earnings-table thead tr {
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff;
}

.earnings-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.earnings-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}

.earnings-table tbody tr:last-child td { border-bottom: none; }

.earnings-table tbody tr:hover td {
  background: var(--pink-pale);
}

.earnings-table .highlight-row td {
  background: var(--pink-pale);
  font-weight: 600;
  color: var(--pink-dark);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 4rem;
  color: var(--pink-mid);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-top: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name  { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.testimonial-role  { font-size: 0.78rem; color: var(--text-light); }
.testimonial-stars { color: #f59e0b; font-size: 0.82rem; margin-top: 2px; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}

/* Article-style FAQ (h3 + p, no accordion button) */
.article-content .faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 18px 20px 0;
  margin: 0;
}
.article-content .faq-item p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  padding: 8px 20px 18px;
  margin: 0;
}

.faq-item:hover { border-color: var(--pink-mid); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: #fff;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: none;
  transition: var(--transition);
}

.faq-question:hover { background: var(--pink-pale); color: var(--pink-dark); }
.faq-question.active { background: var(--pink-pale); color: var(--pink-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--pink-dark);
  font-size: 0.9rem;
}

.faq-question.active .faq-icon { transform: rotate(45deg); background: var(--pink-primary); color: #fff; }

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

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

.faq-answer-inner {
  padding: 4px 24px 20px;
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Steps / How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--pink-primary), var(--pink-deep));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(232,84,122,0.30);
}

.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.step-text  { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-deep) 50%, var(--blueberry) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }

/* ---- Sticky Apply Bar ---- */
.sticky-apply-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 14px 24px;
  box-shadow: 0 -4px 20px rgba(232,84,122,0.30);
  transition: transform 0.3s ease;
}

.sticky-apply-bar p { color: rgba(255,255,255,0.9); font-size: 0.92rem; margin: 0; }
.sticky-apply-bar strong { color: #fff; }
.sticky-apply-bar .btn-white { padding: 10px 24px; font-size: 0.9rem; }

/* ---- Footer ---- */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

footer ul li { margin-bottom: 8px; }
footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
footer ul li a:hover { color: var(--pink-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--pink-light); }
.footer-contact-icon { color: var(--pink-light); margin-top: 2px; flex-shrink: 0; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-left { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-right a:hover { color: var(--pink-light); }

.footer-logo-img { height: auto; width: auto; max-width: 200px; max-height: 80px; object-fit: contain; filter: none; margin-bottom: 12px; opacity: 1; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 14px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--pink-primary); }
.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--text-mid); font-weight: 500; }

/* ---- Trust Badges ---- */
.trust-bar {
  background: var(--pink-pale);
  border-top: 1px solid var(--pink-mid);
  border-bottom: 1px solid var(--pink-mid);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink-dark);
}

.trust-item-icon { font-size: 1rem; color: var(--pink-primary); }

/* ---- Blog Cards ---- */
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-mid);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card-category {
  background: var(--pink-pale);
  color: var(--pink-dark);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.75rem;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}

.blog-card-excerpt { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-card-link { color: var(--pink-primary); font-size: 0.88rem; font-weight: 600; }

/* ---- Article / Blog Post ---- */
.article-body h2 { font-size: 1.7rem; margin: 2.5rem 0 1rem; color: var(--text-dark); }
.article-body h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--pink-dark); }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: 8px; color: var(--text-mid); font-size: 1rem; line-height: 1.7; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 4px solid var(--pink-primary);
  padding: 16px 24px;
  margin: 1.5rem 0;
  background: var(--pink-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--pink-dark);
}

.article-toc {
  background: var(--pink-pale);
  border: 1px solid var(--pink-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 2rem;
}

.article-toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink-dark); margin-bottom: 12px; }
.article-toc ol { padding-left: 1.2rem; }
.article-toc li { font-size: 0.9rem; margin-bottom: 6px; }
.article-toc li a { color: var(--pink-dark); }
.article-toc li a:hover { color: var(--pink-primary); }

/* ---- Form Styles ---- */
.form-group { margin-bottom: 1.5rem; }

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 3px rgba(232,84,122,0.12);
}

select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a4f5e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

textarea { resize: vertical; min-height: 120px; }

.form-required { color: var(--pink-primary); }

.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--pink-primary);
}

.form-checkbox label { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 0; font-weight: 400; }

.form-file-label {
  display: block;
  border: 2px dashed var(--pink-mid);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--pink-pale);
}

.form-file-label:hover { border-color: var(--pink-primary); background: #fff; }
.form-file-label .file-icon { font-size: 2rem; color: var(--pink-primary); margin-bottom: 8px; }
.form-file-label p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.form-file-label strong { color: var(--pink-primary); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #fff0f5 0%, #fce4ec 60%, #f8e8f0 100%);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,84,122,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}

/* ---- Landing page: comparison table ---- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table th:first-child { background: var(--bg-section); color: var(--text-mid); }
.compare-table th:nth-child(2) { background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep)); color: #fff; }
.compare-table th:nth-child(3) { background: #f5f5f5; color: var(--text-mid); }

.compare-table td {
  padding: 14px 20px;
  font-size: 0.93rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
  background: #fff;
}

.compare-table td.feature-col { font-weight: 600; color: var(--text-dark); background: var(--bg-section); }
.compare-table .check  { color: #22c55e; font-size: 1.1rem; }
.compare-table .cross  { color: #ef4444; font-size: 1.1rem; }
.compare-table .partial { color: #f59e0b; font-size: 1.1rem; }

/* ---- Policy Modal ---- */
#policy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.policy-modal-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.policy-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  line-height: 1;
}

/* ---- Cookie Consent ---- */
#bb-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: #fff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 24px;
  flex-wrap: wrap;
}

.bb-cookie-text { font-size: 0.88rem; color: var(--text-mid); flex: 1; min-width: 200px; }
.bb-cookie-text a { color: var(--pink-primary); }
.bb-cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.bb-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--pink-primary), var(--pink-deep));
  color: #fff;
  border: none;
}

.bb-btn.ghost {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-mid);
}

.bb-btn.ghost:hover { border-color: var(--pink-mid); color: var(--pink-dark); }
.bb-link { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 0.82rem; text-decoration: underline; }

/* Cookie Modal */
#bb-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
}

.bb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.bb-modal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 560px;
  margin: auto;
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 28px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}

.bb-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.bb-modal-header h2 { font-size: 1.1rem; color: var(--text-dark); }
.bb-close { font-size: 1.4rem; cursor: pointer; background: none; border: none; color: var(--text-light); }

.bb-cat { padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.bb-cat:last-child { border-bottom: none; }
.bb-cat-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.bb-cat-top h3 { font-size: 0.92rem; color: var(--text-dark); }
.bb-badge { font-size: 0.75rem; background: var(--pink-pale); color: var(--pink-dark); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.bb-cat p { font-size: 0.83rem; color: var(--text-light); }

.bb-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.bb-switch input { opacity: 0; width: 0; height: 0; }
.bb-slider { position: absolute; inset: 0; background: var(--border-light); border-radius: 100px; cursor: pointer; transition: 0.3s; }
.bb-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s; }
.bb-switch input:checked + .bb-slider { background: var(--pink-primary); }
.bb-switch input:checked + .bb-slider::before { transform: translateX(20px); }

.bb-modal-footer { display: flex; gap: 8px; justify-content: flex-end; margin-top: 18px; }

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 100px 0 60px; }
  .hero-visual { order: -1; }
  .hero-card-stack { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .desktop-nav { display: none; }
  .burger-menu { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .hero-stats { gap: 1.5rem; }
  .cta-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .earnings-table { font-size: 0.85rem; }
  .earnings-table th, .earnings-table td { padding: 10px 12px; }
  .sticky-apply-bar { flex-wrap: wrap; text-align: center; gap: 10px; }
  #bb-cookie-bar { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .trust-bar-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .hero-main-card { padding: 20px; }
  .earnings-amount { font-size: 1.8rem; }
  .floating-card { display: none; }
}

/* ---- Utility Classes ---- */
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.fw-700 { font-weight: 700; }
.text-pink { color: var(--pink-primary); }
.text-dark { color: var(--text-dark) !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }

/* ============================================
   LANDING PAGE COMPONENTS (lp-*)
   ============================================ */

.lp-hero {
  background: linear-gradient(135deg, #fff 0%, var(--pink-pale) 100%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--pink-light);
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-pale);
  color: var(--pink-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--pink-light);
}
.lp-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.lp-hero-sub { font-size: 1.05rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.7; }
.lp-hero-checks { list-style: none; padding: 0; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 8px; }
.lp-hero-checks li { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-mid); }
.lp-hero-checks li i { color: var(--pink-primary); font-size: 1rem; flex-shrink: 0; }
.lp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-disclaimer { font-size: 0.8rem; color: var(--text-muted); }
.lp-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-section { padding: 80px 0; }
.lp-section-alt { background: var(--pink-pale); }

/* Steps timeline */
.steps-timeline { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-number {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gradient-pink);
  color: #fff; font-weight: 800; font-size: 1.2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-content p { color: var(--text-light); line-height: 1.7; margin: 0; }

/* Requirements */
.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.req-card { background: #fff; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); }
.req-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 8px; }
.req-yes h3 { color: #22c55e; }
.req-no h3 { color: #ef4444; }
.req-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.req-card ul li { font-size: 0.93rem; color: var(--text-light); padding-left: 1rem; position: relative; }
.req-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--pink-primary); }

/* Two column layout */
.two-col-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.two-col-text h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.two-col-text h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.two-col-text ul { padding-left: 1.5rem; color: var(--text-light); }
.two-col-text ul li { margin-bottom: 8px; line-height: 1.6; }
.two-col-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }

/* Earnings card */
.earnings-card { background: #fff; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-md); border: 2px solid var(--pink-light); }
.earnings-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; color: var(--pink-dark); }
.earnings-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--pink-pale); font-size: 0.9rem; }
.earnings-row:last-of-type { border-bottom: none; }
.earnings-amount { font-weight: 700; color: var(--pink-primary); }
.earnings-disclaimer { font-size: 0.75rem; color: var(--text-muted); margin: 1rem 0; line-height: 1.5; }

/* CTA section */
.lp-cta-section {
  background: var(--gradient-pink);
  padding: 80px 0;
  text-align: center;
}
.cta-content h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-white {
  background: #fff;
  color: var(--pink-primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.cta-trust-row { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cta-trust-row span { color: rgba(255,255,255,0.85); font-size: 0.88rem; display: flex; align-items: center; gap: 6px; }

/* Related pages */
.lp-related-pages { padding: 60px 0; }
.related-pages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.related-page-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--pink-light);
  border-radius: var(--radius-sm); padding: 14px 18px;
  text-decoration: none; color: var(--text-dark); font-weight: 500;
  font-size: 0.9rem; transition: all 0.2s;
}
.related-page-card:hover { border-color: var(--pink-primary); color: var(--pink-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-page-card i { color: var(--pink-primary); font-size: 1rem; }
.related-page-cta { background: var(--gradient-pink); color: #fff; border-color: transparent; }
.related-page-cta:hover { color: #fff; }
.related-page-cta i { color: #fff; }

/* btn additions */
.btn-ghost {
  background: transparent;
  border: 2px solid var(--pink-primary);
  color: var(--pink-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--pink-pale); }
.btn-full { width: 100%; text-align: center; justify-content: center; margin-top: 1rem; }

/* ============================================
   STAT CARDS (landing page hero panel)
   ============================================ */
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--pink-primary);
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-plus {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--pink-primary);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   FEATURES GRID (why-us section)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--pink-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon i {
  font-size: 1.3rem;
  color: var(--pink-primary);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 1.25rem 1rem; }
}

/* ============================================
   BLOG ARTICLE COMPONENTS
   ============================================ */

.blog-article-page { background: #fff; }
.breadcrumb-nav { background: var(--pink-pale); padding: 12px 0; border-bottom: 1px solid var(--pink-light); }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: 0.85rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--text-muted); }
.breadcrumb a { color: var(--pink-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink-primary); }
.breadcrumb li[aria-current="page"] { color: var(--text-mid); font-weight: 500; }

.article-hero {
  background: linear-gradient(135deg, #fff8fa 0%, var(--pink-pale) 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--pink-light);
}
.article-header-inner { max-width: 800px; }
.article-meta-top { display: flex; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.article-category {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient-pink); color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.article-read-time { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.85rem; }
.article-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; line-height: 1.2; }
.article-subtitle { font-size: 1.08rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; max-width: 680px; }
.article-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-body-container { padding: 60px 0 80px; }
.article-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }

/* TOC */
.article-toc { position: sticky; top: 90px; }
.toc-card {
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.toc-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; color: var(--pink-dark); text-transform: uppercase; letter-spacing: 0.05em; }
.toc-card ol { padding-left: 1.2rem; margin: 0; }
.toc-card li { font-size: 0.85rem; margin-bottom: 8px; }
.toc-card a { color: var(--text-mid); text-decoration: none; line-height: 1.4; }
.toc-card a:hover { color: var(--pink-primary); }
.toc-cta-card { background: var(--gradient-pink); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; }
.toc-cta-card p { color: rgba(255,255,255,0.95); font-size: 0.88rem; margin-bottom: 1rem; font-weight: 500; }

/* Article content */
.article-content section { margin-bottom: 3rem; }
.article-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--pink-pale); }
.article-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 1.5rem 0 0.6rem; }
.article-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; color: var(--text-light); margin-bottom: 1rem; }
.article-content li { margin-bottom: 8px; line-height: 1.7; }

/* Info / tip / warning boxes */
.info-box, .tip-box, .warning-box {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 1.5rem; border-radius: var(--radius-sm);
  margin: 1.5rem 0; font-size: 0.93rem; line-height: 1.6;
}
.info-box-pink { background: var(--pink-pale); border-left: 4px solid var(--pink-primary); }
.info-box-purple { background: #f3f0ff; border-left: 4px solid #7c3aed; }
.info-box-green { background: #f0fdf4; border-left: 4px solid #22c55e; }
.tip-box { background: #fffbeb; border-left: 4px solid #f59e0b; }
.warning-box { background: #fff1f2; border-left: 4px solid #ef4444; }
.info-box i, .tip-box i, .warning-box i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.info-box-pink i { color: var(--pink-primary); }
.info-box-purple i { color: #7c3aed; }
.info-box-green i { color: #22c55e; }
.tip-box i { color: #f59e0b; }
.warning-box i { color: #ef4444; }

/* Checklist */
.checklist-list { list-style: none !important; padding: 0 !important; }
.checklist-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.93rem; }
.checklist-list li i { margin-top: 2px; flex-shrink: 0; }

/* Benefits grid in article */
.benefits-grid-article { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0; }
.benefit-item-article { background: var(--pink-pale); border-radius: var(--radius-sm); padding: 1.5rem; text-align: center; }
.benefit-item-article i { font-size: 1.8rem; color: var(--pink-primary); margin-bottom: 0.8rem; display: block; }
.benefit-item-article h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-item-article p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Article final CTA */
.article-final-cta {
  background: var(--gradient-pink);
  color: #fff;
  padding: 3rem;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 2rem 0;
}
.article-final-cta h2 { color: #fff; font-size: 1.6rem; margin-bottom: 1rem; }
.article-final-cta p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1rem; }
.cta-button-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.cta-small-print { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* Related articles */
.related-articles { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--pink-light); }
.related-articles h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.related-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--pink-pale); border-radius: var(--radius-sm);
  padding: 1.5rem; border: 1px solid var(--pink-light);
  transition: all 0.2s;
}
.related-card:hover { border-color: var(--pink-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-tag { display: inline-block; background: var(--gradient-pink); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 2px 10px; border-radius: 50px; margin-bottom: 0.7rem; }
.related-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.related-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin: 0; }

.blog-featured-wrap {
  margin-bottom: 3rem;
}

.featured-blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}

.featured-blog-card-image-wrap {
  width: 100%;
  min-width: 0;
}

.featured-blog-card-image {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.featured-blog-card-content {
  min-width: 0;
}

.featured-blog-card-top {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.featured-blog-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.featured-blog-card-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.featured-blog-card-title a {
  color: var(--text-dark);
  overflow-wrap: anywhere;
}

.featured-blog-card-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 24px;
  }

  .featured-blog-card-image {
    height: 220px;
  }

  .featured-blog-card-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .featured-blog-card {
    padding: 20px;
  }

  .featured-blog-card-image {
    height: 190px;
  }
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-page { padding: 60px 0 80px; background: #fff; }
.policy-container { max-width: 820px; }
.policy-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 2px solid var(--pink-pale); }
.policy-header h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 12px; }
.policy-header h1 i { color: var(--pink-primary); }
.policy-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.policy-intro { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.5rem; }
.policy-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--pink-pale); }
.policy-section:last-of-type { border-bottom: none; }
.policy-section h2 { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.policy-section h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 1.5rem 0 0.5rem; }
.policy-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 0.8rem; }
.policy-section ul { padding-left: 1.5rem; color: var(--text-light); margin-bottom: 1rem; }
.policy-section li { margin-bottom: 8px; line-height: 1.7; }
.policy-section a { color: var(--pink-primary); }
.policy-section a:hover { text-decoration: underline; }
.policy-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.policy-table th { background: var(--pink-pale); color: var(--text-dark); font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--pink-light); }
.policy-table td { padding: 10px 14px; border: 1px solid var(--pink-pale); color: var(--text-light); vertical-align: top; line-height: 1.6; }
.policy-table tr:nth-child(even) td { background: #fafafa; }
.policy-footer-nav { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--pink-primary); color: var(--pink-primary);
  background: transparent; padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--pink-pale); }

/* ============================================
   ARTICLE UTILITY CLASSES (blog posts)
   ============================================ */

/* Gradient text for article headings */
.gradient-text {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Large button variant */
.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* Article in-content CTA box */
.article-cta-box {
  background: linear-gradient(135deg, var(--pink-pale) 0%, #fce4ec 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 2rem;
  margin: 2rem 0;
}
.article-cta-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.article-cta-box p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.article-cta-box .cta-button-group {
  justify-content: flex-start;
}
/* Green / info variant */
.article-cta-box.cta-green {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #bbf7d0;
}
.article-cta-box.cta-green h3 { color: #15803d; }
/* Blue / info variant */
.article-cta-box.cta-blue {
  background: #f0f9ff;
  border-color: #bae6fd;
  border-left: 4px solid #0ea5e9;
}
/* Purple variant */
.article-cta-box.cta-purple {
  background: #fdf4ff;
  border-color: #e9d5ff;
  border-left: 4px solid #a855f7;
}

/* Sidebar CTA card on article TOC */
.toc-cta-card .btn-white,
.toc-cta-card .btn-primary {
  display: block;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  padding: 12px 20px;
  font-weight: 700;
}

/* Fix button text wrapping inside narrow containers */
.article-cta-box .btn,
.article-cta-box .btn-primary,
.article-cta-box .btn-outline {
  white-space: normal;
  line-height: 1.4;
  text-align: center;
}

/* VPN comparison table in blog */
.vpn-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.vpn-table th { background: var(--pink-pale); color: var(--text-dark); font-weight: 700; padding: 10px 14px; text-align: left; border: 1px solid var(--pink-light); }
.vpn-table td { padding: 10px 14px; border: 1px solid var(--pink-pale); color: var(--text-light); vertical-align: top; line-height: 1.6; }
.vpn-table tr:nth-child(even) td { background: #fafafa; }

/* Payout method cards */
.payout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0; }
.payout-card {
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.2s;
}
.payout-card:hover { border-color: var(--pink-primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.payout-card .payout-icon {
  width: 48px; height: 48px;
  background: var(--gradient-pink);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  margin-bottom: 1rem;
}
.payout-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.payout-card ul { padding-left: 1rem; margin: 0.5rem 0 0; font-size: 0.85rem; color: var(--text-light); }
.payout-card li { margin-bottom: 4px; }

/* Agency fee highlight box */
.keep-100-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #22c55e;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.keep-100-box .keep-100-num {
  font-size: 4rem;
  font-weight: 900;
  color: #15803d;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.keep-100-box p { color: #166534; font-size: 1rem; margin: 0; }

/* Comparison two-col for agency page */
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.compare-col-green { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-md); padding: 1.5rem; }
.compare-col-red { background: #fff1f2; border: 1px solid #fecdd3; border-radius: var(--radius-md); padding: 1.5rem; }
.compare-col-green h4 { color: #15803d; margin-bottom: 1rem; }
.compare-col-red h4 { color: #dc2626; margin-bottom: 1rem; }
.compare-col-green li, .compare-col-red li { font-size: 0.9rem; margin-bottom: 6px; }

/* ============================================
   RESPONSIVE — Landing & Blog pages
   ============================================ */

@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-stats { grid-template-columns: repeat(4, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; display: none; }
  .two-col-layout { grid-template-columns: 1fr; }
  .two-col-aside { order: -1; }
  .benefits-grid-article { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-hero { padding: 60px 0 40px; }
  .lp-hero-stats { grid-template-columns: 1fr 1fr; }
  .lp-hero-ctas { flex-direction: column; }
  .requirements-grid { grid-template-columns: 1fr; }
  .related-pages-grid { grid-template-columns: 1fr 1fr; }
  .related-articles-grid { grid-template-columns: 1fr; }
  .benefits-grid-article { grid-template-columns: 1fr; }
  .cta-button-group { flex-direction: column; align-items: center; }
  .cta-trust-row { gap: 1rem; }
  .article-final-cta { padding: 2rem; }
  .policy-footer-nav { flex-direction: column; }
  .payout-grid { grid-template-columns: 1fr; }
  .compare-cols { grid-template-columns: 1fr; }
  .article-cta-box { padding: 1.5rem; }
  .keep-100-box .keep-100-num { font-size: 3rem; }
}

@media (max-width: 480px) {
  .lp-hero-stats { grid-template-columns: 1fr 1fr; }
  .related-pages-grid { grid-template-columns: 1fr; }
  .step-item { flex-direction: column; }
}
