/* ══════════════════════════════════════════════════
   landing.css — shared by welcome, aboutus, privacypolicy
   ══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --brand: #511c66;
  --brand-vivid: #6500F8;
  --brand-soft: #ede9fe;
  --brand-dark: #280374;
  --brand-deepdark: #1a0a2e;
  --ink: #1a1a2e;
  --ink-light: #1a1a2e;
  --ink-muted: #1a1a2e;
  --line: #e2e8f0;
  --bg: #ffffff;
  --white: #fff;
  --green: #0f7b5f;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-full: 999px;
  --shadow-md: 0 4px 20px rgba(81,28,102,0.08);
  --shadow-lg: 0 12px 40px rgba(81,28,102,0.12);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* ── Reset + Base (welcome page only — scoped via .nav presence) ── */
body { font-family: var(--font); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

/* ── Navbar: new design (welcome page) ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { height: 40px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--bg); color: var(--brand); }
.nav-cta {
  background: var(--brand) !important; color: var(--white) !important;
  padding: 9px 22px !important; border-radius: 60px !important;
  font-weight: 600 !important; font-size: 14px !important;
  margin-left: 8px; transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--brand-vivid) !important; }

/* ── Navbar: Bootstrap (aboutus + privacypolicy pages) ── */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navbar-brand { margin-left: 1rem; }
.navbar-light .navbar-nav .nav-link {
  color: var(--ink); font-size: 1rem; font-weight: 500; padding: 0.5rem 1rem;
}
.navbar-light .navbar-nav .nav-link:hover { color: var(--brand); }
.navbar-light .navbar-nav .nav-link.active { color: var(--brand); font-weight: 600; }
.nav-link--signup {
  background-color: var(--brand); color: #fff !important;
  border-radius: 30px; padding: 0.4rem 1.25rem !important;
  margin-left: 0.5rem; margin-right: 1rem; transition: background-color 0.2s ease;
}
.nav-link--signup:hover { background-color: var(--brand-vivid); color: #fff !important; }
.nav-tabs .nav-item .nav-link { border: 1px solid transparent; border-bottom: none; }
.nav-tabs .nav-item .nav-link:not(.active) { border: 1px solid #ccc !important; border-bottom: none !important; color: #A9A9A9; }
.dropdown-menu.dropdown-menu-left { left: auto; right: 0; }


/* ══════════════════════════════════════════════════
   Hero
   ══════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: url('../img/showdoghome.jpg') no-repeat center center;
  background: image-set(
    url('../img/showdoghome.webp') type('image/webp'),
    url('../img/showdoghome.jpg') type('image/jpeg')
  ) no-repeat center center;
  background-size: cover;
  padding: 40px 32px;
  min-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,10,46,0.92) 0%, rgba(40,3,116,0.85) 50%, rgba(81,28,102,0.80) 100%);
  z-index: 0;
}
.hero-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 1;
  text-align: center;
}
.hero-tagline {
  display: inline-flex; align-items: center;
  font-size: 16px; font-weight: 500; color: #fff;
  margin-bottom: 16px; letter-spacing: 0.3px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.hero h1 {
  font-size: 64px; font-weight: 800; line-height: 1.05;
  letter-spacing: -2.5px; color: var(--white); margin-bottom: 16px;
}
.hero h1 em {
  font-style: italic; font-weight: 800;
  background: linear-gradient(135deg, #c084fc, #e9d5ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px; line-height: 1.6; color: #fff;
  max-width: 560px; margin: 0 auto 28px;
  font-weight: 400;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.btn-hero {
  display: inline-flex; align-items: center;
  background: var(--brand-vivid); color: #fff;
  padding: 16px 44px; border-radius: 60px; border: none;
  font-size: 17px; font-weight: 700; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(101,0,248,0.3);
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(101,0,248,0.4);
  background: #7c3aed; color: #fff; text-decoration: none;
}
.btn-hero-outline {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--brand);
  padding: 16px 36px; border-radius: 60px; border: none;
  font-size: 17px; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  text-decoration: none;
}
.btn-hero-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: var(--brand); text-decoration: none;
}
.hero-note { font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-note strong { color: #fff; font-weight: 700; }


/* ══════════════════════════════════════════════════
   Stats Bar
   ══════════════════════════════════════════════════ */
.stats-bar { background: #fdf2f8; padding: 36px 32px; }
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 32px; font-weight: 800; color: var(--brand);
  letter-spacing: -0.5px; line-height: 1.1;
}
.stat-label {
  font-size: 12px; color: var(--ink); font-weight: 600;
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px;
}


/* ══════════════════════════════════════════════════
   How It Works
   ══════════════════════════════════════════════════ */
.how {
  padding: 80px 32px;
  background: linear-gradient(160deg, var(--brand-deepdark) 0%, var(--brand-dark) 40%, var(--brand) 100%);
  color: var(--white);
}
.how-inner { max-width: 960px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 48px; }
.how-header h2 {
  font-size: 36px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px; margin-bottom: 10px;
}
.how-header p {
  font-size: 16px; color: #fff; line-height: 1.6;
  white-space: nowrap; margin: 0 auto;
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 24px; left: calc(33.33% + 10px); right: calc(33.33% + 10px);
  height: 2px; background: rgba(255,255,255,0.15);
}
.step {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 28px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.step:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; flex-shrink: 0;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 14px; color: #fff; line-height: 1.6; margin: 0; }


/* ══════════════════════════════════════════════════
   Section labels (shared by Features + Pricing)
   ══════════════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 42px; font-weight: 800; color: var(--brand);
  letter-spacing: -0.5px; margin-bottom: 24px;
}


/* ══════════════════════════════════════════════════
   Features
   ══════════════════════════════════════════════════ */
.features { padding: 48px 32px 80px; background: #EEE7FF; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 56px; }
.features-header h2 {
  font-size: 42px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px; margin-bottom: 10px;
}
.features-header p {
  font-size: 18px; color: var(--ink-light); line-height: 1.6;
  max-width: 100%; margin: 0 auto;
}
.feat-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
  align-items: center; margin-bottom: 80px;
}
.feat-row:last-child { margin-bottom: 0; }
.feat-row.reverse { direction: rtl; }
.feat-row.reverse > * { direction: ltr; }
.feat-text h3 {
  font-size: 26px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.3px; margin-bottom: 12px;
}
.feat-text p { font-size: 16px; color: var(--ink-light); line-height: 1.65; margin-bottom: 16px; }
.feat-bullets { list-style: none; padding: 0; }
.feat-bullets li {
  padding: 6px 0 6px 18px; font-size: 15px; color: var(--ink);
  position: relative;
}
.feat-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.feat-img img {
  border-radius: var(--radius-md); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}


/* ══════════════════════════════════════════════════
   Pricing
   ══════════════════════════════════════════════════ */
.pricing { padding: 48px 32px 48px; background: #fdf2f8; }
.pricing-inner { max-width: 820px; margin: 0 auto; }

.pricing-hero { text-align: center; margin-bottom: 36px; }
.pricing-hero .section-label { margin-bottom: 24px; }
.pricing-hero h2 {
  font-size: 42px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px; margin-bottom: 10px; line-height: 1.15;
}
.pricing-hero h2 .gold { color: var(--brand); }
.pricing-hero .pricing-sub { font-size: 18px; color: var(--ink-light); line-height: 1.5; }
.pricing-hero .pricing-sub span {
  display: inline-block; border-bottom: 2px solid var(--brand); padding-bottom: 1px;
}

/* Billing toggle */
.billing-section { margin-bottom: 40px; }
.billing-label {
  font-size: 13px; font-weight: 700; color: var(--ink-light);
  text-transform: uppercase; letter-spacing: 1px;
  text-align: center; margin-bottom: 16px;
}
.billing-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius-md); overflow: visible; position: relative;
}
.bill-card {
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  cursor: pointer; transition: background 0.15s; position: relative;
}
.bill-card:first-child { border-right: 2px solid var(--line); }
.bill-card:hover { background: var(--bg); }
.bill-card.selected { background: var(--brand-soft); border-color: transparent; }
.bill-card:last-child.selected { border-radius: 0 12px 12px 0; }
.bill-card:first-child.selected { border-radius: 12px 0 0 12px; }
.bill-card.selected:hover { background: #e4dcf5; }
.bill-tag {
  position: absolute; top: 0; right: 16px; transform: translateY(-50%);
  background: var(--brand); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-full); text-transform: uppercase;
  letter-spacing: 0.5px; white-space: nowrap;
}
.bill-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--line); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.bill-card.selected .bill-radio { border-color: var(--brand); }
.bill-card.selected .bill-radio::after {
  content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--brand);
}
.bill-details { flex: 1; min-width: 0; }
.bill-details .bill-plan { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.bill-details .bill-sub { font-size: 13px; color: var(--ink-light); line-height: 1.3; }
.bill-details .bill-sub .savings { color: var(--green); font-weight: 600; }
.bill-price-col { text-align: right; flex-shrink: 0; }
.bill-price-col .bill-price {
  font-size: 24px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px; line-height: 1.1;
}
.bill-price-col .bill-price span { font-size: 13px; font-weight: 500; color: var(--ink-light); letter-spacing: 0; }
.bill-price-col .bill-equiv { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
.billing-cta { margin-top: 16px; text-align: center; }
.billing-cta .bill-btn {
  display: inline-block; padding: 14px 48px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; transition: all 0.15s;
  background: var(--brand); color: var(--white); text-decoration: none;
}
.billing-cta .bill-btn:hover { background: var(--brand-vivid); text-decoration: none; color: var(--white); }

/* What's included */
.whats-included {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 32px;
}
.whats-included h3 {
  font-size: 24px; font-weight: 800; color: var(--ink);
  margin-bottom: 20px; text-align: center;
}
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px;
}
.included-grid li {
  font-size: 17px; color: var(--ink); padding: 8px 0 8px 18px;
  position: relative; list-style: none;
}
.included-grid li::before {
  content: '';
  position: absolute; left: 0; top: 16px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.included-note {
  text-align: center; font-size: 15px; color: var(--ink-muted);
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line);
}


/* ══════════════════════════════════════════════════
   CTA Banner
   ══════════════════════════════════════════════════ */
.cta { padding: 32px 32px 48px; background: #fdf2f8; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta h2 { font-size: 32px; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.cta p { font-size: 17px; color: var(--ink); margin-bottom: 32px; line-height: 1.6; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center;
  background: var(--brand); color: var(--white);
  padding: 14px 36px; border-radius: 60px; border: none;
  font-size: 16px; font-weight: 700; cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 4px 16px rgba(81,28,102,0.2);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(81,28,102,0.3);
  background: var(--brand-vivid); color: var(--white); text-decoration: none;
}



/* ══════════════════════════════════════════════════
   Footer (all pages)
   ══════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--brand); color: #fff;
  font-family: Arial, sans-serif;
  border-top: none;
  box-shadow: 0 -4px 0 0 #fcc200;
  margin-top: 0;
}
.site-footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.site-footer__brand { min-width: 0; }
.site-footer__title { margin: 0 0 0.5rem; font-size: 1.5rem; font-weight: 700; color: #fff; }
.site-footer__meta { margin: 0.25rem 0; font-size: 0.95rem; line-height: 1.5; color: rgba(255,255,255,0.85); }
.site-footer__nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 1.75rem;
}
.site-footer__nav a {
  color: #fff; text-decoration: none; font-size: 1rem; font-weight: 500;
  padding: 0.5rem 0; border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: #fcc200; border-bottom-color: #fcc200; text-decoration: none;
}

/* Social icons (Round 13) */
.site-footer__social { margin-top: 0.75rem; }
.site-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.site-footer__social a:hover,
.site-footer__social a:focus {
  color: #fcc200;
  border-color: #fcc200;
  background-color: rgba(252, 194, 0, 0.1);
  text-decoration: none;
}


/* ══════════════════════════════════════════════════
   About Us Page
   ══════════════════════════════════════════════════ */
.about-header {
  padding: 24px 32px 0;
  text-align: center;
}
.about-header h1 {
  font-size: 34px; font-weight: 800; color: var(--brand);
  margin: 0; letter-spacing: -0.5px;
}

.about-story {
  max-width: 1000px; margin: 0 auto;
  padding: 56px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.about-story-text h2 {
  font-size: 34px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px; margin-bottom: 20px; line-height: 1.15;
}
.about-story-text p {
  font-size: 16px; line-height: 1.8; color: var(--ink); margin-bottom: 16px;
}
.about-story-text p:last-child { margin-bottom: 0; }
.about-story-text a { color: var(--brand-vivid); font-weight: 600; }
.about-story-text a:hover { text-decoration: underline; }

.about-story-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-story-photos img {
  width: 100%; border-radius: 12px; object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-story-photos img:first-child {
  grid-column: 1 / -1; height: 240px;
}
.about-story-photos img:nth-child(2),
.about-story-photos img:nth-child(3) {
  height: 160px;
}

.about-mission {
  background: #EEE7FF;
  padding: 40px 32px;
}
.about-mission-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.about-mission-inner h2 {
  font-size: 28px; font-weight: 800; color: var(--ink);
  margin-bottom: 16px;
}
.about-mission-inner p {
  font-size: 17px; line-height: 1.75; color: var(--ink); margin: 0;
}

/* Generic section padding (privacypolicy) */
section { position: relative; padding: 100px 0; }

.ul-list { list-style-type: disc !important; margin-left: 20px; padding-left: 20px; }

/* ── Privacy Policy page (Round 13 — de-Bootstrapped) ── */
.privacy-main {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 0 24px;
  color: #1a1a2e;
}
.privacy-main-head h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: #1a1a2e;
}
.privacy-main-head p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 12px;
  color: #1a1a2e;
}
.privacy-body { margin-top: 32px; }
.privacy-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: #1a1a2e;
}
.privacy-body p,
.privacy-body li {
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a2e;
}
.privacy-body p { margin: 0 0 12px; }
.privacy-body .ul-list { margin-bottom: 16px; }
.privacy-body a {
  color: var(--brand, #511c66);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ══════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════ */

/* ── About/Privacy page breakpoints ── */
/* ── Privacy page breakpoints ── */
@media screen and (max-width: 575.98px) {
  .privacy-main-head { margin-left: 1rem; }
}
@media screen and (min-width: 576px) and (max-width: 1023.99px) {
  .privacy-main-head { margin-left: 2rem; }
}
@media screen and (min-width: 1024px) {
  .privacy-main-head { margin-left: 2rem; }
}
@media screen and (min-width: 1400px) {
  .privacy-main-head { margin-left: 8rem; }
}

/* ── About page breakpoints ── */
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .about-story-text h2 { font-size: 26px; }
  .about-story-photos img:first-child { height: 200px; }
  .about-story-photos img:nth-child(2),
  .about-story-photos img:nth-child(3) { height: 140px; }
  .about-mission { padding: 40px 20px; }
  .about-mission-inner h2 { font-size: 24px; }
}

/* ── Welcome page footer breakpoint ── */
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column; align-items: flex-start;
    padding: 2rem 1.25rem; gap: 1.5rem;
  }
  .site-footer__nav ul { gap: 1rem 1.5rem; }
}

/* ── Welcome page breakpoints ── */
@media (max-width: 900px) {
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .feat-row, .feat-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .feat-row.reverse { direction: ltr; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .billing-cards { grid-template-columns: 1fr; }
  .bill-card:first-child { border-right: none; border-bottom: 2px solid var(--line); }
  .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .how-header p { white-space: normal; }
  .nav-links li:not(:last-child) { display: none; }
  .section-label { font-size: 28px; }
  .features-header h2 { font-size: 28px; }
  .pricing-hero h2 { font-size: 28px; }
  .feat-text h3 { font-size: 22px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .cta h2 { font-size: 24px; }
  .cta { padding: 48px 20px; }
}

/* ── FAQ section (Round 13 — SEO FAQPage schema) ── */
.faq {
  background: #fdf2f8;
  padding: 48px 24px 96px;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 12px 0 12px;
  letter-spacing: -0.5px;
}
.faq-header p {
  font-size: 17px;
  color: #1a1a2e;
  margin: 0;
}
.faq-header p a {
  color: var(--brand, #511c66);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq-item[open] {
  border-color: var(--brand, #511c66);
  box-shadow: 0 2px 8px rgba(81, 28, 102, 0.08);
}
.faq-item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  list-style: none;
  position: relative;
  padding-right: 32px;
  min-height: 28px;
  display: flex;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--brand, #511c66);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--brand, #511c66);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-body {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
}
.faq-body a {
  color: var(--brand, #511c66);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 600px) {
  .faq { padding: 64px 20px; }
  .faq-header h2 { font-size: 28px; }
  .faq-item { padding: 18px 20px; }
  .faq-item summary { font-size: 16px; }
  .faq-body { font-size: 15px; }
}
