/* ============================================================
   inner.css — shared styles for all inner pages
   (service pages, about, blog articles)
   ============================================================ */

/* ── Page hero ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--navbar-h, 72px) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(196,98,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,98,58,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 30%, transparent 100%);
}
.page-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--pink, #E8447A); margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em; margin-bottom: 20px;
  color: var(--text, #1C0E08); line-height: 1.15;
}
.page-hero-title span { color: var(--pink, #E8447A); }
.page-hero-sub {
  font-size: 1.05rem; color: var(--text-muted, #7A5A48);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--pink); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: 0.5; }

/* ── Content sections ───────────────────────────────────────── */
.content-section { padding: 80px 0; }
.content-section--gray { background: #FAF4ED; }
.content-section + .content-section { padding-top: 0; }

.section-lead {
  font-size: 1.1rem; line-height: 1.85; color: var(--text-muted);
  max-width: 760px; margin: 0 auto 48px; text-align: center;
}

/* ── Features grid ──────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: #fff; border: 1px solid rgba(196,98,58,0.12);
  border-radius: 16px; padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(100,40,20,0.08);
  border-color: rgba(232,68,122,0.2);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,68,122,0.1), rgba(196,98,58,0.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--pink);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── Process steps ──────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.step {
  background: #fff; border: 1px solid rgba(196,98,58,0.12);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  position: relative;
}
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #C42F60, #E8447A);
  color: #fff; font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Stats row ──────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 48px 0; }
.stat-box { text-align: center; }
.stat-number {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900;
  color: var(--pink); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

/* ── Related services ───────────────────────────────────────── */
.related-section { padding: 60px 0 80px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.related-card {
  background: #fff; border: 1px solid rgba(196,98,58,0.12);
  border-radius: 12px; padding: 18px 22px;
  text-decoration: none; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: all 0.2s; font-weight: 500; font-size: 0.9rem;
}
.related-card:hover {
  border-color: var(--pink); color: var(--pink);
  transform: translateX(4px); box-shadow: 0 4px 16px rgba(232,68,122,0.1);
}
.related-card svg { flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s; }
.related-card:hover svg { opacity: 1; }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1C0E08 0%, #3A1A0A 100%);
  border-radius: 24px; padding: 64px 48px; text-align: center;
  margin: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232,68,122,0.15) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900; color: #fff; margin-bottom: 16px; position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; position: relative;
}
.cta-banner .btn-primary { position: relative; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(196,98,58,0.12); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-sans, 'Inter', sans-serif); font-size: 1rem; font-weight: 600;
  color: var(--text); transition: color 0.2s;
}
.faq-question:hover { color: var(--pink); }
.faq-icon { flex-shrink: 0; color: var(--pink); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.75;
  padding-bottom: 20px; display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ── Blog article ───────────────────────────────────────────── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 0 24px 100px; }
.article-header { text-align: center; padding: calc(var(--navbar-h, 72px) + 60px) 24px 60px; max-width: 780px; margin: 0 auto; }
.article-category-badge {
  display: inline-block; background: var(--pink); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.article-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em; color: var(--text);
  line-height: 1.2; margin-bottom: 20px;
}
.article-meta {
  display: flex; gap: 20px; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; margin-bottom: 16px;
}
.article-meta-sep { opacity: 0.4; }
.article-intro {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.75;
  max-width: 640px; margin: 0 auto;
}
.article-divider {
  width: 60px; height: 3px; background: linear-gradient(90deg, #E8447A, #C4623A);
  border-radius: 2px; margin: 40px auto;
}
.article-body { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.article-body h2 {
  font-family: var(--font-serif); font-size: 1.65rem; font-weight: 900;
  color: var(--text); margin: 52px 0 16px; letter-spacing: -0.02em;
}
.article-body h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin: 32px 0 12px;
}
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; }
.article-body li { margin-bottom: 10px; line-height: 1.75; }
.article-body a { color: var(--pink); text-decoration: none; border-bottom: 1px solid rgba(232,68,122,0.3); }
.article-body a:hover { border-bottom-color: var(--pink); }
.article-body blockquote {
  border-left: 3px solid var(--pink); margin: 36px 0;
  padding: 16px 24px; background: rgba(232,68,122,0.04);
  font-style: italic; color: var(--text-muted); border-radius: 0 10px 10px 0;
}
.article-body strong { color: var(--text); font-weight: 600; }
.article-body .tip-box {
  background: #fff; border: 1px solid rgba(196,98,58,0.15);
  border-radius: 12px; padding: 20px 24px; margin: 28px 0;
}
.article-body .tip-box strong { display: block; margin-bottom: 8px; color: var(--pink); }

.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 48px 0 24px; }
.article-tag {
  background: #F5EDE0; color: var(--text-muted); border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; padding: 5px 14px; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Related articles ───────────────────────────────────────── */
.related-articles { border-top: 1px solid rgba(196,98,58,0.12); padding-top: 48px; margin-top: 48px; }
.related-articles h3 {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--text);
}
.related-articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-article-card {
  background: #fff; border: 1px solid rgba(196,98,58,0.12); border-radius: 14px;
  padding: 20px; text-decoration: none; display: flex; flex-direction: column; gap: 6px;
  transition: all 0.2s;
}
.related-article-card:hover { border-color: rgba(232,68,122,0.3); transform: translateY(-2px); }
.related-article-cat {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink);
}
.related-article-title { font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ── About page ─────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-story-text h2 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900; margin-bottom: 20px; letter-spacing: -0.02em;
}
.about-story-text p { font-size: 1.05rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 18px; }
.about-story-visual {
  background: linear-gradient(135deg, #F5EDE0 0%, #FFE4EE 100%);
  border-radius: 24px; padding: 48px 40px; text-align: center; position: relative; overflow: hidden;
}
.about-story-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,68,122,0.12), transparent 60%);
}
.founder-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, #C42F60, #E8447A);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900;
  color: #fff; margin: 0 auto 20px; position: relative;
}
.founder-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.founder-title { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.04em; }
.founder-quote {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(255,255,255,0.7); border-radius: 12px;
  font-style: italic; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65;
  position: relative;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: #fff; border: 1px solid rgba(196,98,58,0.12);
  border-radius: 20px; padding: 36px 28px; text-align: center;
}
.value-icon {
  width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(232,68,122,0.1), rgba(196,98,58,0.08));
  display: flex; align-items: center; justify-content: center; color: var(--pink);
}
.value-icon svg { width: 30px; height: 30px; }
.value-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.value-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Contact Wizard ─────────────────────────────────────────── */
.wizard-section { background: var(--bg, #F5EDE0); }

.wiz-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(100,40,20,0.10);
  overflow: hidden;
}

/* Progress bar */
.wiz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 40px 0;
}
.wiz-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wiz-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border, rgba(196,98,58,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-muted, #7A5A48);
  background: #fff;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.wiz-step-item.active .wiz-dot {
  background: linear-gradient(135deg, #E8447A, #C4623A);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,68,122,0.35);
}
.wiz-step-item.done .wiz-dot {
  background: linear-gradient(135deg, #E8447A, #C4623A);
  border-color: transparent;
  color: #fff;
}
.wiz-step-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.wiz-step-item.active .wiz-step-label { color: var(--pink, #E8447A); }
.wiz-step-item.done  .wiz-step-label { color: var(--terra, #C4623A); }
.wiz-connector {
  flex: 1; height: 2px; min-width: 60px;
  background: var(--border);
  margin: 0 8px 22px;
  border-radius: 2px;
  transition: background 0.3s;
}
.wiz-connector.done { background: linear-gradient(90deg, #E8447A, #C4623A); }

/* Panels */
.wiz-panel {
  padding: 36px 40px 40px;
  animation: wizIn 0.3s ease;
}
@keyframes wizIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wiz-q {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.wiz-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Service cards grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.svc-card { cursor: pointer; }
.svc-card input { position: absolute; opacity: 0; pointer-events: none; }
.svc-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: var(--bg, #F5EDE0);
  color: var(--text-muted);
  font-size: 0.8rem; font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  user-select: none;
}
.svc-inner svg { width: 28px; height: 28px; }
.svc-card:hover .svc-inner {
  border-color: var(--pink);
  color: var(--text);
}
.svc-card input:checked + .svc-inner {
  border-color: var(--pink);
  background: rgba(232,68,122,0.07);
  color: var(--pink);
  box-shadow: 0 0 0 1px rgba(232,68,122,0.25);
}

/* Budget cards grid */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  /* Force LTR order so cards always read: small → large (left→right) in all languages */
  direction: ltr;
}
.budget-card { cursor: pointer; }
.budget-card input { position: absolute; opacity: 0; pointer-events: none; }
.budget-inner {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 22px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: var(--bg, #F5EDE0);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  user-select: none;
}
.budget-range {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text);
}
.budget-tag {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
}
.budget-card:hover .budget-inner {
  border-color: var(--pink);
}
.budget-card input:checked + .budget-inner {
  border-color: var(--pink);
  background: rgba(232,68,122,0.06);
  box-shadow: 0 0 0 1px rgba(232,68,122,0.25);
}
.budget-card input:checked + .budget-inner .budget-range { color: var(--pink); }

/* Contact fields */
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.cf-group { display: flex; flex-direction: column; gap: 6px; }
.cf-group--full { grid-column: 1 / -1; }
.cf-label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.cf-input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg, #F5EDE0);
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.cf-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,68,122,0.12);
  background: #fff;
}
.cf-input.cf-invalid {
  border-color: #e04040;
  box-shadow: 0 0 0 3px rgba(224,64,64,0.12);
}
.cf-textarea { resize: vertical; min-height: 88px; }

/* Phone input with country-code dropdown */
.phone-input-wrap {
  position: relative;
  display: flex;
}
.phone-flag-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: var(--bg, #F5EDE0);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s;
  line-height: 1;
}
.phone-flag-btn:hover { border-color: var(--pink); }
.phone-flag-btn .phone-chevron { transition: transform 0.2s; opacity: 0.5; }
.phone-flag-btn.open .phone-chevron { transform: rotate(180deg); }
.phone-flag-emoji { font-size: 1.1rem; }
.phone-number-input {
  border-radius: 0 10px 10px 0 !important;
  flex: 1;
  min-width: 0;
}
.phone-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
  background: #fff;
  border: 1.5px solid rgba(196,98,58,0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(100,40,20,0.12);
  width: 270px;
  overflow: hidden;
}
.phone-search {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid rgba(196,98,58,0.12);
  font-size: 0.88rem;
  outline: none;
  background: #FAF4ED;
  color: var(--text, #1C0E08);
  font-family: var(--font-sans);
}
.phone-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 200px;
  overflow-y: auto;
}
.phone-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text);
  transition: background 0.12s;
}
.phone-list li:hover { background: #FAF4ED; }
.phone-list li.selected { background: rgba(232,68,122,0.07); }
.phone-list .pf { font-size: 1.05rem; flex-shrink: 0; }
.phone-list .pn { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.phone-list .pd { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; }

/* RTL: flip the phone widget */
[dir="rtl"] .phone-flag-btn {
  border-radius: 0 10px 10px 0;
  border-right: 1.5px solid var(--border);
  border-left: none;
  order: 2;
}
[dir="rtl"] .phone-number-input {
  border-radius: 10px 0 0 10px !important;
  order: 1;
}
[dir="rtl"] .phone-dropdown { left: auto; right: 0; }

/* Error banner */
.wiz-error {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(224,64,64,0.07);
  border: 1px solid rgba(224,64,64,0.25);
  border-radius: 10px;
  color: #c03030;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* Footer row (back + next) */
.wiz-footer {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
}
.wiz-back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wiz-back:hover { border-color: var(--text-muted); color: var(--text); }

/* Loading spinner */
.wiz-spin {
  animation: wizSpin 0.8s linear infinite;
  display: block;
}
@keyframes wizSpin { to { transform: rotate(360deg); } }

/* Success panel */
.wiz-success-panel { text-align: center; padding: 60px 40px; }
.wiz-success-mark {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  animation: wizPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.wiz-success-mark svg { width: 100%; height: 100%; }
@keyframes wizPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.wiz-success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.wiz-success-msg {
  font-size: 1rem; color: var(--text-muted); line-height: 1.65;
}

/* ── Article author block ───────────────────────────────────── */
.article-author {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; background: #FAF4ED;
  border-radius: 16px; margin: 24px 0 40px;
  border: 1px solid rgba(196,98,58,0.12);
}
.article-author-photo {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  border: 2px solid rgba(232,68,122,0.3); flex-shrink: 0;
}
.article-author-initials {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #E8447A, #C4623A);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  font-family: var(--font-serif); letter-spacing: 0.05em;
}
.article-author-info { flex: 1; min-width: 0; }
.article-author-name { display: block; font-weight: 700; font-size: 0.93rem; color: var(--text); margin-bottom: 2px; }
.article-author-role { display: block; font-size: 0.75rem; color: var(--pink); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.article-author-bio { display: block; font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
[dir="rtl"] .article-author { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .article-author-bio { font-family: var(--font-hebrew, 'Heebo', sans-serif); }

/* ── Inline stat cards ──────────────────────────────────────── */
.article-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 36px 0;
}
.article-stats-card {
  background: linear-gradient(135deg, rgba(232,68,122,0.06), rgba(196,98,58,0.04));
  border: 1px solid rgba(232,68,122,0.14);
  border-radius: 14px; padding: 20px 16px; text-align: center;
}
.article-stats-value {
  font-family: var(--font-serif); font-size: 1.9rem; font-weight: 900;
  color: var(--pink); line-height: 1; margin-bottom: 6px; display: block;
}
.article-stats-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; display: block; }

/* ── Highlight / key takeaway box ───────────────────────────── */
.article-highlight {
  background: rgba(232,68,122,0.05);
  border-left: 4px solid var(--pink);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px; margin: 28px 0;
}
.article-highlight strong {
  color: var(--pink); display: block; margin-bottom: 8px;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em;
}
[dir="rtl"] .article-highlight { border-left: none; border-right: 4px solid var(--pink); border-radius: 14px 0 0 14px; }

/* ── Comparison table ───────────────────────────────────────── */
.article-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.9rem; }
.article-table th {
  background: linear-gradient(135deg, #E8447A, #C4623A);
  color: #fff; padding: 12px 16px; text-align: left; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.article-table th:first-child { border-radius: 12px 0 0 0; }
.article-table th:last-child  { border-radius: 0 12px 0 0; }
.article-table td { padding: 11px 16px; border-bottom: 1px solid rgba(196,98,58,0.1); color: var(--text); }
.article-table tr:nth-child(even) td { background: #FAF4ED; }
.article-table .check { color: #2a7d4f; font-weight: 700; }
.article-table .cross { color: #c03030; }
[dir="rtl"] .article-table th, [dir="rtl"] .article-table td { text-align: right; }

/* ── Bar chart (pure CSS/SVG) ───────────────────────────────── */
.article-bars { margin: 28px 0; }
.article-bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; font-size: 0.85rem; }
.article-bar-label { width: 140px; flex-shrink: 0; color: var(--text-muted); font-size: 0.8rem; text-align: right; }
.article-bar-track { flex: 1; height: 10px; background: rgba(196,98,58,0.12); border-radius: 6px; overflow: hidden; }
.article-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #E8447A, #C4623A); transition: width 0.8s ease; }
.article-bar-pct { width: 36px; flex-shrink: 0; font-size: 0.78rem; font-weight: 700; color: var(--pink); }
[dir="rtl"] .article-bar-label { text-align: left; }
[dir="rtl"] .article-bar-fill { background: linear-gradient(270deg, #E8447A, #C4623A); }

/* ── Rating widget ──────────────────────────────────────────── */
.article-rating {
  background: #fff; border: 1px solid rgba(196,98,58,0.12);
  border-radius: 20px; padding: 32px 24px; text-align: center; margin: 56px 0;
}
.article-rating-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.article-rating-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 18px; }
.article-rating-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 14px; }
.article-rating-star {
  font-size: 2.1rem; cursor: pointer; transition: transform 0.18s, filter 0.18s;
  color: #ddd; line-height: 1; background: none; border: none; padding: 0;
  -webkit-text-fill-color: #ddd;
}
.article-rating-star.lit, .article-rating-star:hover { color: #F5A623; -webkit-text-fill-color: #F5A623; transform: scale(1.18); filter: drop-shadow(0 2px 6px rgba(245,166,35,0.4)); }
.article-rating-count { font-size: 0.82rem; color: var(--text-muted); display: block; }
.article-rating-thanks { font-size: 0.9rem; color: var(--text-muted); display: none; margin-top: 8px; }
[dir="rtl"] .article-rating-title, [dir="rtl"] .article-rating-sub { font-family: var(--font-hebrew, 'Heebo', sans-serif); }

/* ── Social share ───────────────────────────────────────────── */
.article-share {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid rgba(196,98,58,0.1); margin-top: 40px;
}
.share-label {
  font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s; border: none; cursor: pointer;
  font-family: var(--font-sans, 'Inter', sans-serif);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.14); text-decoration: none; }
.share-btn svg { flex-shrink: 0; }
.share-btn--linkedin { background: #0A66C2; color: #fff; }
.share-btn--facebook { background: #1877F2; color: #fff; }
.share-btn--twitter  { background: #000; color: #fff; }
.share-btn--whatsapp { background: #25D366; color: #fff; }
.share-btn--copy { background: #F5EDE0; color: var(--text); border: 1px solid rgba(196,98,58,0.2); }
.share-btn--copy.copied { background: #e8f8ef; color: #1e7c4a; border-color: rgba(30,124,74,0.25); }

/* ── Table of Contents ──────────────────────────────────────── */
.article-toc {
  background: #FAF4ED;
  border: 1px solid rgba(196,98,58,0.14);
  border-left: 3px solid var(--pink, #E8447A);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 36px;
}
[dir="rtl"] .article-toc { border-left: none; border-right: 3px solid var(--pink, #E8447A); }
.toc-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra, #C4623A);
  margin-bottom: 12px;
}
.toc-list { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-list li + li { margin-top: 6px; }
.toc-link {
  font-size: 0.9rem;
  color: var(--text, #1C0E08);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: color 0.2s;
}
.toc-link::before {
  content: counter(toc) ".";
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink, #E8447A);
  flex-shrink: 0;
  min-width: 18px;
}
.toc-link:hover { color: var(--pink, #E8447A); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-row      { grid-template-columns: repeat(2, 1fr); }
  .about-story    { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .features-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid, .values-grid, .related-grid,
  .process-steps, .stats-row, .related-articles-grid { grid-template-columns: 1fr; }
  .cta-banner     { padding: 40px 24px; border-radius: 16px; }
  .page-hero      { padding: calc(var(--navbar-h, 72px) + 48px) 0 56px; }
  /* Wizard */
  .wiz-panel      { padding: 24px 20px 28px; }
  .wiz-progress   { padding: 20px 20px 0; }
  .wiz-connector  { min-width: 28px; }
  .svc-grid       { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .budget-grid    { grid-template-columns: 1fr 1fr; }
  .cf-grid        { grid-template-columns: 1fr; }
}

/* ── Glossary grid (SEO/GEO/AEO/SAIO definitions) ─────── */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.glossary-card {
  background: #fff;
  border: 1px solid var(--border, rgba(196,98,58,0.14));
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease;
}
.glossary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(196,98,58,0.12);
}
.glossary-card--cta {
  background: linear-gradient(135deg, rgba(232,68,122,0.06), rgba(196,98,58,0.06));
  border-color: rgba(232,68,122,0.2);
}
.glossary-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink, #E8447A);
  background: rgba(232,68,122,0.1);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.glossary-term {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text, #1C0E08);
  margin: 0 0 10px;
  line-height: 1.3;
}
.glossary-def {
  font-size: 0.88rem;
  color: var(--text-muted, #8a7060);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) { .glossary-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .glossary-grid { grid-template-columns: 1fr; } }
