:root {
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --purple-light: #ede9fe;
  --pink: #f43f5e;
  --ink: #1e1b2e;
  --gray: #6b7280;
  --bg-soft: #f5f3ff;
  --yellow: #fbbf24;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-full: 999px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
}
.navbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
}
.navbar .brand .heart { color: var(--pink); font-size: 24px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.navbar .nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}
.navbar .nav-links a:hover { color: var(--purple); }
.navbar .nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

.mobile-menu {
  display: none;
  flex-direction: column;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 24px; font-weight: 600; border-top: 1px solid #f3f3f3; }
.mobile-menu a:hover { background: var(--purple-light); }

@media (max-width: 860px) {
  .navbar .nav-links { display: none; }
  .navbar .nav-actions { display: none; }
  .nav-toggle { display: block; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #9333ea);
  color: #fff;
  box-shadow: 0 10px 24px rgba(124,58,237,.35);
}
.btn-outline {
  background: #fff;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(124,58,237,.10), transparent 60%),
    radial-gradient(50% 50% at 90% 10%, rgba(244,63,94,.10), transparent 60%),
    linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.hero-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin: 8px 0 20px;
}
@media (max-width: 700px) { .hero h1 { font-size: 34px; } }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.subtitle {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--gray);
  font-size: 17px;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.stats-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.stat-card {
  background: #fff;
  border: 1px solid #efecfa;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(124,58,237,.08);
  padding: 22px 34px;
  min-width: 150px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(124,58,237,.14); }
.stat-card .num {
  font-size: 30px; font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card .num .star { color: var(--yellow); -webkit-text-fill-color: var(--yellow); }
.stat-card .label { color: var(--gray); font-size: 14px; margin-top: 2px; }

.highlight-card {
  background: #fff;
  border: 1px solid #efecfa;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(124,58,237,.12);
  padding: 26px 28px;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}
.highlight-check { color: #15803d; font-weight: 700; font-size: 13px; }
.chip-price { color: var(--purple-dark); font-weight: 800; }
.chip-price small { display: block; font-weight: 600; color: var(--gray); font-size: 10px; }
.highlight-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.pill-yellow {
  background: #fef3c7; color: #92400e; font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: var(--radius-full);
}
.pill-red {
  background: #fee2e2; color: #b91c1c; font-weight: 700; font-size: 13px;
  padding: 6px 14px; border-radius: var(--radius-full);
}
.highlight-rate { font-size: 26px; font-weight: 800; margin-bottom: 4px; }
.highlight-rate .unit { font-size: 15px; font-weight: 500; color: var(--gray); }
.highlight-note { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: #eff6ff; color: #1d4ed8; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 10px;
}

/* Section */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: 34px; font-weight: 800; margin: 12px 0 12px; }
.section-head h2 .accent { color: var(--purple); }
.section-head p { color: var(--gray); font-size: 16px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple-light); color: var(--purple-dark);
  font-weight: 700; font-size: 13px; padding: 6px 16px; border-radius: var(--radius-full);
}

/* Service grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  border: 1px solid #ececec;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow .15s ease, border-color .15s ease;
  background: #fff;
}
.service-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); border-color: var(--purple); }
.service-icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; margin: 0 auto 16px;
}
.service-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; }
.service-price {
  display: inline-block; background: #f3f4f6; color: var(--ink);
  font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: var(--radius-full);
}
.service-card p.desc { color: var(--gray); font-size: 14px; margin: 10px 0 0; }
.service-gst-note { display: block; color: var(--gray); font-size: 11px; margin-top: 6px; }

/* Why us */
.why-section { background: var(--bg-soft); }
.why-list { max-width: 560px; margin: 24px 0 32px; }
.why-list li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 16px; }
.why-list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px;
  background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-top: 2px;
}

.testimonial-card {
  background: #fff; border-radius: var(--radius-md); padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06); margin-bottom: 20px;
}
.testimonial-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.testimonial-person { display: flex; gap: 12px; align-items: center; }
.avatar {
  width: 44px; height: 44px; border-radius: 999px; background: var(--purple-light);
  color: var(--purple-dark); display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.testimonial-person .name { font-weight: 700; }
.testimonial-person .meta { color: var(--gray); font-size: 13px; }
.testimonial-earning { color: var(--pink); font-weight: 800; font-style: italic; font-size: 18px; }
.testimonial-card p { color: #374151; margin: 0; }

/* Partner card */
.partner-card {
  border: 1px solid #ececec; border-radius: var(--radius-md); padding: 20px; text-align: center; background: #fff;
}
.partner-photo {
  width: 84px; height: 84px; border-radius: 999px; margin: 0 auto 12px; overflow: hidden;
  background: var(--purple-light); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 26px; color: var(--purple-dark);
}
.partner-photo img { width: 100%; height: 100%; object-fit: cover; }
.partner-card h3 { margin: 0 0 4px; font-size: 17px; }
.verified-badge { color: #16a34a; font-size: 13px; font-weight: 700; }
.partner-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 10px 0; }
.partner-tags span { background: #f3f4f6; font-size: 12px; padding: 4px 10px; border-radius: var(--radius-full); }

/* Forms */
.form-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(0,0,0,.08);
  padding: 32px; max-width: 560px; margin: 0 auto;
}
.form-card-wide { max-width: 720px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
/* Two fields side by side; collapses to one column on small screens. */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .form-group { margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

/* Price breakdown (subtotal + GST + total) shown before payment */
.order-price-breakdown { background: var(--bg-soft); border-radius: var(--radius-md); padding: 14px 16px; }
.order-price-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--gray); }
.order-price-row.order-price-total { border-top: 1px dashed #ddd6fe; margin-top: 4px; padding-top: 12px; font-size: 17px; color: var(--ink); }
.form-control {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #ddd; font-size: 15px;
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--purple); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #b91c1c; }

/* Footer */
footer {
  border-top: 1px solid #eee; padding: 32px 0; text-align: center; color: var(--gray); font-size: 14px;
}
footer .footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 12px; flex-wrap: wrap; }
footer .footer-links a:hover { color: var(--purple); }
footer .footer-social { display: flex; justify-content: center; gap: 16px; margin-top: 14px; font-size: 20px; }
footer .footer-social a:hover { color: var(--purple); }

/* Page header (inner pages) */
.page-hero {
  background: var(--bg-soft); padding: 48px 0; text-align: center;
}
.page-hero h1 { font-size: 36px; font-weight: 800; margin: 0 0 12px; }
.page-hero p { color: var(--gray); max-width: 600px; margin: 0 auto; }

.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.filter-bar select {
  padding: 10px 14px; border-radius: 10px; border: 1px solid #ddd; font-family: inherit; font-size: 14px;
}

.empty-state { text-align: center; padding: 48px 24px; color: var(--gray); }

/* ---- Partner membership plans (homepage) ---- */
.plans-section { background: var(--bg-soft); }

.plan-grid {
  display: grid; gap: 20px; margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
  position: relative; background: #fff; border: 2px solid #ece9f5;
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(30,27,46,.10); }

.plan-popular {
  border-color: var(--purple);
  box-shadow: 0 10px 30px rgba(124,58,237,.14);
}

.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 800;
  padding: 5px 14px; border-radius: var(--radius-full); white-space: nowrap;
}

.plan-name { font-size: 20px; font-weight: 800; margin: 6px 0 0; color: var(--ink); }
.plan-duration { color: var(--gray); font-size: 13px; }

.plan-price { margin: 8px 0 14px; line-height: 1.3; }
.plan-price strong { font-size: 32px; font-weight: 800; color: var(--purple); }
.plan-price .plan-was { color: var(--gray); font-size: 15px; margin-right: 8px; }
.plan-price small { display: block; color: var(--gray); font-size: 12px; margin-top: 2px; }

.plan-card .btn { margin-top: auto; }

@media (max-width: 600px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-price strong { font-size: 28px; }
}

/* ---- Approved reviews (homepage) ---- */
.review-grid {
  display: grid; gap: 20px; margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
  background: #fff; border: 1px solid #ece9f5; border-radius: var(--radius-md);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(30,27,46,.08); }

.review-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; }
.review-stars .dim { color: #e3e0ea; }

.review-text { margin: 0; color: var(--ink); line-height: 1.6; flex: 1; }

.review-author { display: flex; align-items: center; gap: 10px; }
.review-author .name { font-weight: 700; font-size: 14px; }
.review-author .meta { color: var(--gray); font-size: 12px; }

.review-verified {
  margin-left: auto; background: #e7f8ee; color: #17794b;
  font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: var(--radius-full);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ---- Why Choose Us cards ---- */
.why-section { background: linear-gradient(180deg,#fdfbff 0%,#f7f3ff 100%); }
.why-title {
  font-size: 38px; font-weight: 800; margin: 0 0 6px;
  background: linear-gradient(90deg,var(--purple),#c026d3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.why-grid {
  display: grid; gap: 20px; margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-card {
  background: #fff; border-radius: var(--radius-md); padding: 26px 20px;
  text-align: center; box-shadow: 0 6px 18px rgba(30,27,46,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(124,58,237,.12); }

.why-icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px;
  background: var(--purple-light); display: flex; align-items: center;
  justify-content: center; font-size: 24px;
}
.why-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800; color: var(--ink); }
.why-card p { margin: 0; color: var(--gray); font-size: 14px; line-height: 1.55; }

/* ---- Success stories ---- */
.stories-section { background: linear-gradient(180deg,#f3fdf7 0%,#e9fbf1 100%); }
.stories-title {
  font-size: 38px; font-weight: 800; margin: 0 0 6px;
  background: linear-gradient(90deg,#15803d,#22c55e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.stories-grid {
  display: grid; gap: 22px; margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.story-card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: 0 8px 24px rgba(21,128,61,.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(21,128,61,.13); }

.story-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.story-person { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.story-avatar { border: 3px solid #bbf7d0; }
.story-person .name { font-weight: 800; font-size: 15px; color: var(--ink); }
.story-person .meta { color: var(--gray); font-size: 12px; }

.story-earning {
  background: #dcfce7; color: #15803d; font-weight: 800; font-size: 13px;
  padding: 7px 13px; border-radius: var(--radius-full); white-space: nowrap;
}

.story-quote {
  margin: 0 0 12px; color: #4b5563; font-style: italic; line-height: 1.65;
  border-left: 3px solid #bbf7d0; padding-left: 14px;
}
.story-stars { color: var(--yellow); letter-spacing: 3px; font-size: 15px; }

.btn-success {
  background: linear-gradient(135deg,#16a34a,#15803d); color: #fff; border: none;
  box-shadow: 0 8px 22px rgba(21,128,61,.28);
}
.btn-success:hover { background: linear-gradient(135deg,#15803d,#166534); color: #fff; }

@media (max-width: 700px) {
  .why-title, .stories-title { font-size: 28px; }
  .stories-grid, .why-grid { grid-template-columns: 1fr; }
}

/* ---- Site footer ---- */
.site-footer {
    background: linear-gradient(135deg, #1a0931 0%, #1e093a 45%, #361464 100%);
    color: #e9d5ff;
    padding: 54px 0 26px;
    margin-top: 60px;
}

.footer-cols {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-col h4 {
  margin: 0 0 16px; font-size: 15px; font-weight: 800; color: #fff;
}
.footer-col a {
  display: block; color: #d8b4fe; text-decoration: none;
  font-size: 14px; padding: 5px 0; transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }

.footer-social { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.footer-social a:hover { background: rgba(255,255,255,.22); }
.footer-social-empty { color: #c4b5fd; font-size: 12px; }

.footer-bottom {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,#a855f7,#7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
}
.footer-name { font-size: 20px; font-weight: 800; color: #c084fc; }

.footer-copy { margin: 0; color: #cbb6f0; font-size: 13px; text-align: center; }

@media (max-width: 640px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ---- FAQ accordion ---- */
.faq-item {
  background: #fff; border: 1px solid #ece9f5; border-radius: var(--radius-md);
  padding: 16px 18px; margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--purple); font-size: 20px; font-weight: 700; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 12px 0 0; color: var(--gray); line-height: 1.6; }

/* ---- Register: "I want to" segmented choice ---- */
.intent-choice { display: flex; gap: 10px; flex-wrap: wrap; }
.intent-option {
  flex: 1; min-width: 120px; text-align: center; cursor: pointer;
  border: 2px solid #e3e0ea; border-radius: 12px; padding: 12px 10px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.intent-option input { position: absolute; opacity: 0; pointer-events: none; }
.intent-option:hover { border-color: var(--purple); }
.intent-option.is-active {
  border-color: var(--purple); background: var(--purple-light); color: var(--purple-dark);
}

/* Smooth in-page scrolling for #why-us and #pricing anchors. */
html { scroll-behavior: smooth; }
#why-us, #pricing { scroll-margin-top: 20px; }

/* ---- Pricing: two-panel (Clients | Partners) ---- */
.pricing-duo {
  display: grid; gap: 24px; margin-top: 32px; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 940px; margin-left: auto; margin-right: auto;
}

.pricing-panel {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: 0 14px 40px rgba(30,27,46,.08);
  display: flex; flex-direction: column; gap: 18px;
}

.pricing-panel-head { text-align: center; }
.pricing-badge-icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.pricing-badge-icon.clients { background: var(--purple-light); }
.pricing-badge-icon.partners { background: #dcfce7; }
.pricing-panel-head h3 { margin: 0 0 4px; font-size: 22px; font-weight: 800; color: var(--ink); }
.pricing-panel-head p { margin: 0; color: var(--gray); font-size: 14px; }

.pricing-service-list { display: flex; flex-direction: column; }
.pricing-service-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 2px; border-bottom: 1px solid #f0eef6; font-size: 15px;
}
.pricing-service-row:last-child { border-bottom: none; }
.pricing-service-row strong { color: var(--purple); font-size: 17px; }

.pricing-banner {
  background: #fef3c7; border: 1px solid #fde68a; color: #92400e;
  border-radius: var(--radius-full); padding: 10px 14px; text-align: center;
  font-size: 13px; font-weight: 700;
}

.pricing-plans-title { text-align: center; font-weight: 800; color: var(--ink); border-top: 1px solid #f0eef6; padding-top: 16px; }

.pricing-plan-list { display: flex; flex-direction: column; gap: 8px; }
.pricing-plan-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 10px; background: #f8f7fc; font-size: 14px;
}
.pricing-plan-row.is-popular { background: #fffbeb; border: 1px solid #fde68a; }
.pricing-plan-name { font-weight: 600; color: var(--ink); }
.pricing-plan-badge { color: #b45309; font-weight: 700; font-size: 12px; }
.pricing-plan-price { white-space: nowrap; color: #15803d; font-weight: 700; font-size: 13px; }
.pricing-plan-price s { color: var(--gray); font-weight: 400; margin-right: 4px; }
.pricing-plan-price strong { color: #15803d; font-size: 15px; }

.pricing-earning {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-md); padding: 16px 18px;
}
.pricing-earning-head { font-weight: 800; color: #166534; margin-bottom: 6px; }
.pricing-earning-amount { font-size: 18px; font-weight: 800; color: var(--ink); }
.pricing-earning-note { color: #15803d; font-size: 13px; margin-top: 2px; }

.btn-gradient {
  background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; border: none;
  box-shadow: 0 8px 22px rgba(124,58,237,.28);
}
.btn-gradient:hover { filter: brightness(1.05); color: #fff; }

.pricing-panel .btn { margin-top: auto; }

/* ---- Logged-in user avatar dropdown ---- */
.user-menu { position: relative; }
/* Pill: avatar + gear + caret so it clearly reads as an openable menu. */
.user-avatar-btn {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  background: #fff; border: 1px solid #e3e0ea; border-radius: var(--radius-full);
  padding: 4px 10px 4px 4px;
}
.user-avatar-btn:hover { box-shadow: 0 4px 14px rgba(124,58,237,.16); }
.user-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.user-gear { color: var(--gray); font-size: 15px; }
.user-caret { color: var(--gray); font-size: 11px; transition: transform .15s ease; }
.user-avatar-btn[aria-expanded="true"] .user-caret { transform: rotate(180deg); }

.user-dropdown {
  position: absolute; right: 0; top: 52px; width: 240px; z-index: 70;
  background: #fff; border: 1px solid #ece9f5; border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20,18,40,.16); overflow: hidden; padding: 6px 0;
}
.user-dropdown-head { padding: 12px 16px; border-bottom: 1px solid #f0eef7; display: flex; flex-direction: column; }
.user-dropdown-head strong { font-size: 15px; color: var(--ink); }
.user-dropdown-head span { font-size: 13px; color: var(--gray); }
.user-dropdown a {
  display: block; padding: 11px 16px; color: var(--ink);
  text-decoration: none; font-size: 14px; font-weight: 500;
}
.user-dropdown a:hover { background: #faf9ff; }
.user-dropdown-logout { border-top: 1px solid #f0eef7; color: #e23744 !important; }

/* ---- Transactions table ---- */
.txn-table { width: 100%; border-collapse: collapse; }
.txn-table thead th {
  text-align: left; padding: 14px 18px; font-size: 13px; color: var(--gray);
  border-bottom: 2px solid #f0eef6; background: #faf9ff;
}
.txn-table tbody td { padding: 14px 18px; border-bottom: 1px solid #f4f3fa; font-size: 14px; }
.txn-table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 560px) {
  .txn-table thead { display: none; }
  .txn-table tbody td { display: flex; justify-content: space-between; padding: 8px 14px; }
}

/* ---- Customer dashboard (account.php) ---- */
.dashboard { padding-top: 32px; }

.dash-welcome {
  background: #fff; border-radius: var(--radius-lg); padding: 26px 28px; margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(30,27,46,.06);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.dash-welcome-left { display: flex; align-items: center; gap: 18px; }
.dash-avatar {
  width: 66px; height: 66px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; font-weight: 800; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
}
.dash-welcome h1 { margin: 0; font-size: 26px; font-weight: 800; color: var(--ink); }
.dash-role { margin: 2px 0 8px; color: var(--gray); font-size: 14px; }
.dash-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.dash-badge { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-full); }
.dash-badge.ok { background: #dcfce7; color: #15803d; }
.dash-badge.warn { background: #fee2e2; color: #b91c1c; }
.dash-badge.muted { background: #ede9fe; color: var(--purple-dark); }

.dash-setup {
  background: #fff; border: 2px solid #fde68a; border-radius: var(--radius-lg);
  padding: 22px 24px; margin-bottom: 20px;
}
.dash-setup-head { font-weight: 800; color: #b45309; font-size: 17px; }
.dash-setup-sub { color: var(--gray); font-size: 14px; margin: 6px 0 14px; }
.dash-setup-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff7ed; border-radius: var(--radius-md); padding: 14px 16px; flex-wrap: wrap;
}
.dash-setup-row strong { color: #b91c1c; }
.dash-setup-missing { color: var(--gray); font-size: 13px; margin-top: 3px; }

.dash-cta {
  background: linear-gradient(120deg, var(--purple) 0%, var(--pink) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px;
}
.dash-cta h2 { margin: 0 0 6px; font-size: 24px; font-weight: 800; }
.dash-cta p { margin: 0 0 18px; opacity: .92; }
.dash-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-solid { background: #fff; color: var(--purple-dark); border: none; font-weight: 700; }
.btn-cta-solid:hover { background: #f3f0ff; color: var(--purple-dark); }
.btn-cta-ghost { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-cta-ghost:hover { background: rgba(255,255,255,.28); color: #fff; }

.dash-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: linear-gradient(120deg, #16a34a, #15803d); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 24px;
}
.dash-stat { padding: 24px 18px; text-align: center; color: #fff; }
.dash-stat-num { font-size: 26px; font-weight: 800; }
.dash-stat-label { font-size: 13px; opacity: .9; margin-top: 2px; }

.dash-actions {
  display: grid; gap: 18px; margin-bottom: 36px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.dash-action-card {
  background: #fff; border: 1px solid #ece9f5; border-radius: var(--radius-md);
  padding: 22px; text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dash-action-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(30,27,46,.10); }
.dash-action-icon { font-size: 24px; margin-bottom: 10px; }
.dash-action-card h3 { margin: 0 0 6px; font-size: 17px; color: var(--ink); }
.dash-action-card p { margin: 0 0 12px; color: var(--gray); font-size: 14px; }
.dash-action-link { color: var(--purple); font-weight: 700; font-size: 14px; }

@media (max-width: 560px) {
  .dash-stats { grid-template-columns: 1fr; }
  .dash-welcome h1 { font-size: 22px; }
}


/* ---- Earning Opportunity (green hero) ---- */
.earn-section { padding: 40px 0; }
.earn-hero {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 55%, #0f766e 100%);
  border-radius: var(--radius-lg); color: #fff;
  padding: 52px 40px; text-align: center;
  box-shadow: 0 24px 60px rgba(21,128,61,.28);
}
.earn-hero-inner { max-width: 900px; margin: 0 auto; }
.earn-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.18); color: #fff;
  font-weight: 700; font-size: 13px; padding: 6px 16px; border-radius: var(--radius-full);
}
.earn-title { font-size: 40px; font-weight: 800; margin: 18px 0 10px; }
.earn-sub { color: rgba(255,255,255,.9); font-size: 16px; max-width: 620px; margin: 0 auto 32px; }

.earn-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px;
}
.earn-stat {
  position: relative; background: rgba(255,255,255,.13); border-radius: var(--radius-md);
  padding: 24px 16px; backdrop-filter: blur(2px);
}
.earn-stat-num { font-size: 30px; font-weight: 800; line-height: 1.1; }
.earn-stat-label { font-size: 13px; opacity: .9; margin-top: 6px; }
.earn-was { display: block; opacity: .7; font-size: 14px; text-decoration: line-through; }
.earn-discount {
  position: absolute; top: -8px; right: -6px; background: #ef4444; color: #fff;
  font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: var(--radius-full);
}

.earn-banner {
  background: linear-gradient(90deg, #fbbf24, #f97316); color: #fff;
  font-weight: 800; font-size: 15px; padding: 16px 20px;
  border-radius: var(--radius-md); margin: 0 auto 26px; max-width: 560px;
  box-shadow: 0 10px 26px rgba(249,115,22,.3);
}

.earn-breakdown {
  background: rgba(255,255,255,.10); border-radius: var(--radius-lg);
  padding: 24px; margin: 0 auto 30px; max-width: 720px;
}
.earn-breakdown-title { font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.earn-breakdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.earn-breakdown-card {
  background: rgba(255,255,255,.12); border-radius: var(--radius-md);
  padding: 14px 16px; text-align: left;
}
.earn-breakdown-card strong { font-size: 14px; }
.earn-breakdown-note { font-size: 13px; opacity: .82; margin-top: 4px; }

.earn-cta {
  background: #fff; color: #15803d; font-weight: 800; border: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.18); padding: 15px 34px;
}
.earn-cta:hover { background: #f0fdf4; color: #166534; }

@media (max-width: 760px) {
  .earn-stats { grid-template-columns: repeat(2, 1fr); }
  .earn-breakdown-grid { grid-template-columns: 1fr; }
  .earn-title { font-size: 30px; }
  .earn-hero { padding: 36px 22px; }
}

/* ---- Homepage FAQ section ---- */
.faq-section { background: linear-gradient(180deg,#fdfbff 0%,#f7f3ff 100%); }
.faq-heading {
  font-size: 38px; font-weight: 800; margin: 0 0 6px;
  background: linear-gradient(90deg,var(--purple),#c026d3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 700px) { .faq-heading { font-size: 28px; } }

/* ---- Booking location capture ---- */
.location-status { font-size: 13px; margin-left: 8px; }
.location-status.ok { color: #15803d; }
.location-status.err { color: #b91c1c; }

/* ---- Brand logo ---- */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { display: block; flex-shrink: 0; }
.brand-name { font-weight: 800; }
.footer-mark { background: none !important; width: auto !important; height: auto !important; padding: 0 !important; display: inline-flex; }
.admin-layout .brand .brand-logo { vertical-align: middle; }

/* ---- Dashboard "You're Live" earning band ---- */
.dash-live {
  background: linear-gradient(120deg, #16a34a, #15803d);
  border-radius: var(--radius-lg); padding: 26px 28px; margin-bottom: 24px; color: #fff;
  box-shadow: 0 14px 36px rgba(21,128,61,.22);
}
.dash-live-head { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.dash-live-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dash-live-stat { }
.dash-live-num { font-size: 28px; font-weight: 800; line-height: 1.1; }
.dash-live-label { font-size: 13px; opacity: .92; margin-top: 4px; }
.dash-live-client { background: linear-gradient(120deg, #16a34a, #15803d); }
.dash-action-icon.purple { background: var(--purple-light); }
.dash-action-icon.green { background: #dcfce7; }
.dash-action-icon.blue { background: #dbeafe; }
.dash-action-link.green { color: #15803d; }
.dash-action-link.blue { color: #2563eb; }
@media (max-width: 560px) { .dash-live-stats { grid-template-columns: 1fr; gap: 12px; } }

/* ---- Account Settings (tabbed) ---- */
.settings-page { padding-top: 32px; }
.settings-title { font-size: 26px; font-weight: 800; margin: 0 0 20px; }
.settings-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }

.settings-nav { display: flex; flex-direction: column; gap: 6px; }
.settings-nav-item {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px;
  font-weight: 600; font-size: 14px; color: var(--ink); background: #fff; border: 1px solid #ece9f5;
}
.settings-nav-item:hover { background: #faf9ff; }
.settings-nav-item.active { background: var(--purple-light); color: var(--purple-dark); border-color: var(--purple); }
.settings-user {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
  padding: 12px 14px; background: #fff; border: 1px solid #ece9f5; border-radius: 12px;
}
.settings-user-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.settings-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.settings-user strong { display: block; font-size: 14px; }
.settings-user small { color: var(--gray); }

.settings-panel {
  background: #fff; border: 1px solid #ece9f5; border-radius: var(--radius-lg); padding: 28px;
}
.settings-panel h2 { margin: 0 0 20px; font-size: 20px; }
.req { color: var(--pink); font-weight: 700; font-size: 12px; }

.settings-photo { display: flex; align-items: center; gap: 18px; margin: 16px 0 20px; padding-bottom: 20px; border-bottom: 1px solid #f0eef7; }
.settings-photo-img {
  width: 76px; height: 76px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 30px;
}
.settings-photo-img img { width: 100%; height: 100%; object-fit: cover; }

.settings-verified-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.settings-verified { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px; padding: 12px 14px; }
.settings-verified-label { display: block; font-size: 12px; color: #15803d; }
.settings-verified strong { display: block; font-size: 14px; }
.settings-verified-badge { font-size: 12px; color: #15803d; font-weight: 700; }

.hobby-input-row { display: flex; gap: 8px; }
.hobby-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.hobby-tag { background: var(--purple-light); color: var(--purple-dark); border-radius: var(--radius-full); padding: 5px 12px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hobby-remove { background: none; border: none; color: var(--purple-dark); cursor: pointer; font-size: 15px; line-height: 1; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.svc-card {
  position: relative; background: #fff; border: 1.5px solid #e8e5f2; border-radius: 14px;
  padding: 16px 18px; cursor: pointer; display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.svc-card:hover { border-color: var(--purple); box-shadow: 0 6px 18px rgba(124,58,237,.10); }
.svc-card.selected { border-color: var(--purple); background: #faf7ff; box-shadow: 0 6px 18px rgba(124,58,237,.14); }
.svc-card.selected::after {
  content: '\2713'; position: absolute; top: 12px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--purple); color: #fff;
  font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.svc-card input { display: none; }
.svc-name { font-weight: 700; font-size: 15px; color: var(--ink); padding-right: 26px; }
.svc-price { color: var(--purple); font-size: 13px; font-weight: 600; }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.avail-list { display: flex; flex-direction: column; gap: 8px; }
.avail-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.avail-day {
  min-width: 74px; text-align: center; border-radius: var(--radius-full); padding: 7px 12px;
  font-weight: 700; font-size: 13px; cursor: pointer; background: #eee; color: var(--gray);
}
.avail-day.on { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; }
.avail-day input { display: none; }
.avail-time { width: auto; padding: 8px 10px; }

@media (max-width: 760px) {
  .settings-layout { grid-template-columns: 1fr; }
  .svc-grid, .settings-verified-row { grid-template-columns: 1fr; }
}

/* ---- Transactions page ---- */
.txn-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.txn-sum-card {
  background: #fff; border: 1px solid #ece9f5; border-radius: var(--radius-md);
  padding: 20px; text-align: center; box-shadow: 0 8px 22px rgba(30,27,46,.05);
}
.txn-sum-num { font-size: 24px; font-weight: 800; color: var(--purple); }
.txn-sum-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

.txn-cards { display: flex; flex-direction: column; gap: 12px; }
.txn-item {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid #ece9f5; border-radius: var(--radius-md); padding: 16px 18px;
  transition: box-shadow .15s ease;
}
.txn-item:hover { box-shadow: 0 10px 26px rgba(30,27,46,.08); }
.txn-item-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.txn-item-icon.txn-ok { background: #dcfce7; }
.txn-item-icon.txn-pending { background: #fef3c7; }
.txn-item-icon.txn-fail { background: #fee2e2; }
.txn-item-body { flex: 1; min-width: 0; }
.txn-item-body strong { display: block; font-size: 15px; }
.txn-item-meta { font-size: 12px; color: var(--gray); margin-top: 2px; word-break: break-all; }
.txn-item-right { text-align: right; flex-shrink: 0; }
.txn-item-amount { font-weight: 800; font-size: 16px; }
.txn-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); }
.txn-badge.txn-ok { background: #dcfce7; color: #15803d; }
.txn-badge.txn-pending { background: #fef3c7; color: #92400e; }
.txn-badge.txn-fail { background: #fee2e2; color: #b91c1c; }s
@media (max-width: 560px) { .txn-summary { grid-template-columns: 1fr; } }

/* ---- Book (Buy Service) page ---- */
.book-section-label {
  font-weight: 800; font-size: 14px; color: var(--purple-dark);
  margin: 22px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #f0eef7;
}
.book-section-label:first-child { margin-top: 0; }
.book-total {
  background: linear-gradient(135deg, #faf5ff, #fdf2f8);
  border: 1px solid var(--purple-light); border-radius: var(--radius-md);
  padding: 16px 18px; margin: 18px 0;
}
.book-total-rows { color: var(--gray); font-size: 14px; margin-bottom: 8px; }
.book-total-main { display: flex; justify-content: space-between; align-items: center; }
.book-total-main span { font-weight: 700; }
.book-total-main strong { font-size: 24px; font-weight: 800; color: var(--purple); }

/* ---- Avatar photos fill their circles ---- */
.user-avatar img, .dash-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.user-avatar, .dash-avatar { overflow: hidden; }

/* ---- Paywall header state ---- */
.paywall-note { font-size: 13px; color: #b45309; font-weight: 700; }

/* ---- Location map link ---- */
.location-map-link { font-size: 12px; margin: 4px 0 8px; }
.location-map-link a { color: var(--purple); font-weight: 600; }

a.my-head-logo img {
    width: 100%;
    height: 110px;
}

/* ============================ Blog ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(30, 27, 46, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(124, 58, 237, 0.14); }
.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  overflow: hidden;
}
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 56px; font-weight: 800; color: rgba(255,255,255,0.9);
}
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--purple); }
.blog-card-title { font-size: 19px; line-height: 1.3; margin: 8px 0 10px; font-weight: 800; }
.blog-card-title a:hover { color: var(--purple); }
.blog-card-excerpt { color: var(--gray); font-size: 14.5px; margin: 0 0 16px; flex: 1; }
.blog-card-link { color: var(--purple); font-weight: 700; font-size: 14px; margin-top: auto; }
.blog-card-link:hover { color: var(--purple-dark); }

.blog-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.blog-empty-icon { font-size: 52px; }
.blog-empty h3 { margin: 12px 0 6px; color: var(--ink); }

/* Blog detail */
.blog-single-hero { background: var(--bg-soft); padding: 44px 0 40px; }
.blog-back { display: inline-block; color: var(--purple); font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.blog-back:hover { color: var(--purple-dark); }
.blog-single-date { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
.blog-single-hero h1 { font-size: 34px; font-weight: 800; line-height: 1.2; margin: 0; max-width: 820px; }
.blog-single-lead { color: var(--gray); font-size: 17px; margin: 14px 0 0; max-width: 780px; }
.blog-single-body { max-width: 820px; padding-top: 32px; padding-bottom: 8px; }
.blog-single-cover { margin: 0 0 28px; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 10px 30px rgba(30,27,46,0.10); }
.blog-single-cover img { width: 100%; cursor: zoom-in; }
.blog-content { font-size: 17px; line-height: 1.75; color: #2c2a3a; }
.blog-content { white-space: normal; }

.blog-gallery { margin-top: 40px; }
.blog-gallery-head { font-size: 22px; font-weight: 800; margin: 0 0 18px; }
.blog-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.blog-gallery-item { display: block; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; cursor: zoom-in; box-shadow: 0 4px 14px rgba(30,27,46,0.08); }
.blog-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-gallery-item:hover img { transform: scale(1.07); }

.blog-single-cta { margin: 44px 0 8px; padding: 28px; text-align: center; background: var(--purple-light); border-radius: var(--radius-md); }
.blog-single-cta p { font-size: 18px; font-weight: 700; margin: 0 0 14px; }

.blog-more { background: var(--bg-soft); }

/* Lightbox */
.blog-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(15, 12, 28, 0.92); display: flex; align-items: center; justify-content: center; padding: 30px; }
.blog-lightbox[hidden] { display: none; }
.blog-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.blog-lightbox-close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; }

@media (max-width: 600px) {
  .blog-single-hero h1 { font-size: 26px; }
  .blog-content { font-size: 16px; }
}
