/* Internal pages — richer heroes, reviews room, CTA bands */

.page-hero--rich {
  padding: 140px 0 56px;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(124, 58, 237, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(6, 182, 212, 0.08), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero--rich .section-tag {
  margin-bottom: 12px;
}

.page-hero__lead {
  max-width: 560px;
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.reviews-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-stat strong {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.reviews-stat .review-star--on {
  font-size: 1.1rem;
}

.page-hero__stats p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Star renderer */
.review-star {
  display: inline-block;
  line-height: 1;
}

.review-star--on {
  color: #FBBF24;
  text-shadow: 0 1px 2px rgba(180, 83, 9, 0.2);
}

.review-star--off {
  color: #CBD5E1;
}

.corp-review__stars,
.review-card__stars {
  display: flex;
  gap: 2px;
  letter-spacing: 0;
}

.corp-review__stars {
  margin-bottom: 14px;
}

/* Reviews page */
.reviews-intro {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.reviews-intro p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.reviews-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.reviews-filter__btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.reviews-filter__btn:hover {
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--text);
}

.reviews-filter__btn.is-active {
  border-color: #7C3AED;
  background: rgba(124, 58, 237, 0.08);
  color: #7C3AED;
}

.reviews-grid--page {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-card__rating-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.review-card__result {
  margin: -12px 0 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7C3AED;
  font-style: normal;
}

.review-card__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__date {
  display: block;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--muted);
}

.review-card__case {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7C3AED;
  text-decoration: none;
}

.review-card__case:hover {
  color: #6D28D9;
}

.review-card[data-rating="3"] {
  border-color: rgba(148, 163, 184, 0.35);
}

.review-card[data-rating="4"] {
  border-color: rgba(124, 58, 237, 0.15);
}

/* Page CTA band */
.page-cta-band {
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%),
    var(--bg-2);
  border-top: 1px solid var(--border);
}

.page-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-cta-band h2 {
  margin: 8px 0 6px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-cta-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Internal section polish */
body:not([data-page="home"]) .section-head {
  margin-bottom: 48px;
}

body:not([data-page="home"]) .service-card,
body:not([data-page="home"]) .portfolio-item,
body:not([data-page="home"]) .about-feature {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body:not([data-page="home"]) .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

body[data-theme="dark"] .page-hero--rich {
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(124, 58, 237, 0.2), transparent 60%),
    var(--bg);
}

body[data-theme="dark"] .review-star--off {
  color: #475569;
}

body[data-theme="dark"] .reviews-filter__btn.is-active {
  background: rgba(124, 58, 237, 0.18);
  color: #C4B5FD;
}

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

@media (max-width: 640px) {
  .reviews-grid--page {
    grid-template-columns: 1fr;
  }

  .page-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Trust bar (all internal pages) ── */
.page-trustbar {
  padding: 14px 0;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.06), rgba(6, 182, 212, 0.04));
  border-bottom: 1px solid var(--border);
}

.page-trustbar__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-trustbar__inner::-webkit-scrollbar {
  display: none;
}

.page-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.page-trustbar__item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #7C3AED;
}

/* ── Page sections ── */
.page-section {
  padding: 72px 0;
}

.page-section--split {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(124, 58, 237, 0.06), transparent 55%),
    var(--bg);
}

.page-section--values {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.page-section--showcase {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(6, 182, 212, 0.07), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--border);
}

body:not([data-page="home"]) .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

body:not([data-page="home"]) .section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 10px;
}

/* ── About split layout ── */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px 56px;
  align-items: start;
}

.about-split__main h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 12px 0 18px;
}

.about-split__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 12px;
  max-width: 520px;
}

.about-founder {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 28px;
  opacity: 0.85;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  color: #7C3AED;
  letter-spacing: 0.01em;
}

/* Stats panel */
.about-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0.02) 45%),
    var(--card);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.about-panel__stat {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}

.about-panel__stat--hero {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.08));
  border-color: rgba(124, 58, 237, 0.2);
}

.about-panel__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-panel__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.about-panel__stat--hero .about-panel__num {
  font-size: 2.75rem;
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-panel__stars {
  display: flex;
  gap: 2px;
  margin: 8px 0 6px;
}

.about-panel__lbl {
  font-size: 0.82rem;
  color: var(--muted);
}

.about-panel__quote {
  margin: 4px 0 0;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: rgba(124, 58, 237, 0.05);
}

.about-panel__quote p {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.about-panel__quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* Value cards */
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-value {
  padding: 28px 26px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-value:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.about-value__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(6, 182, 212, 0.1));
  color: #7C3AED;
}

.about-value__icon svg {
  width: 24px;
  height: 24px;
}

.about-value h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-value p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Process steps */
.page-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.page-process__step {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.page-process__step:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.page-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(6, 182, 212, 0.1));
  font-size: 0.85rem;
  font-weight: 800;
  color: #7C3AED;
}

.page-process__step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-process__step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

/* About showcase */
.about-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-showcase__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--card);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-showcase__item:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.about-showcase__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.about-showcase__label {
  display: block;
  padding: 14px 16px 4px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-showcase__cta {
  display: block;
  padding: 0 16px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7C3AED;
}

.about-showcase__more {
  margin: 28px 0 0;
  text-align: center;
}

.about-showcase__more a {
  font-size: 0.92rem;
  font-weight: 700;
  color: #7C3AED;
  text-decoration: none;
}

.about-showcase__more a:hover {
  color: #6D28D9;
}

/* Services page polish */
body[data-page="services"] .page-section--services {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(6, 182, 212, 0.06), transparent 55%),
    var(--bg);
}

body[data-page="services"] .services-grid {
  gap: 20px;
}

body[data-page="services"] .service-card {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: var(--card);
}

body[data-page="services"] .service-card--featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.08), 0 20px 50px rgba(124, 58, 237, 0.1);
}

/* Contact page polish */
body[data-page="contact"] .contact-form-wrap {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

body[data-page="contact"] .contact-link {
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

body[data-page="contact"] .contact-link:hover {
  border-color: rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.04);
}

/* Portfolio page polish */
body[data-page="portfolio"] .portfolio-filters {
  margin-bottom: 36px;
}

body[data-page="portfolio"] .filter-btn {
  border-radius: 999px;
}

body[data-page="portfolio"] .filter-btn--active {
  background: rgba(124, 58, 237, 0.1);
  border-color: #7C3AED;
  color: #7C3AED;
}

/* Legal docs polish */
body[data-page="legal"] .legal-doc {
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

body[data-page="legal"] .legal-doc:hover {
  border-color: rgba(124, 58, 237, 0.22);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

/* Dark theme */
body[data-theme="dark"] .about-panel {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

body[data-theme="dark"] .about-pill {
  background: rgba(124, 58, 237, 0.14);
  color: #C4B5FD;
}

body[data-theme="dark"] .page-trustbar {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.06));
}

@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .page-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-section {
    padding: 56px 0;
  }

  .about-panel__row {
    grid-template-columns: 1fr;
  }

  .page-process {
    grid-template-columns: 1fr;
  }

  .about-showcase {
    grid-template-columns: 1fr;
  }

  .page-trustbar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
  }
}

/* ═══════════════════════════════════════════
   VISUAL LAYER v3 — photos, collages, depth
   ═══════════════════════════════════════════ */

.page-hero--visual {
  position: relative;
  padding: 120px 0 72px;
  overflow: hidden;
}

.page-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(124, 58, 237, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(6, 182, 212, 0.12), transparent 50%);
  pointer-events: none;
}

.page-hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 56px;
  align-items: center;
}

.page-hero__visual {
  position: relative;
  min-height: 300px;
}

.page-hero__glow {
  position: absolute;
  inset: 10% 5% 5% 15%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.page-hero__collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 320px;
}

.page-hero__collage--2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  min-height: 240px;
}

.page-hero__collage--4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.page-hero__collage-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  background: var(--bg-3, #fff);
}

.page-hero__collage-item--tall {
  grid-row: span 2;
}

.page-hero__collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.page-hero__collage-item:hover img {
  transform: scale(1.04);
}

/* About mosaic */
.about-visual-wrap {
  position: relative;
}

.about-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 140px 140px;
  gap: 10px;
  margin-bottom: -48px;
  padding-bottom: 56px;
}

.about-mosaic__item {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.about-mosaic__item--1 { grid-row: span 2; }

.about-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-mosaic__badge {
  position: absolute;
  top: 16px;
  right: -8px;
  z-index: 2;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7C3AED, #06B6D4);
  color: #fff;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
  text-align: center;
  line-height: 1.2;
}

.about-mosaic__badge span {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-mosaic__badge small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 2px;
}

.about-panel--overlay {
  position: relative;
  z-index: 3;
  margin-top: 0;
  backdrop-filter: blur(12px);
  background:
    linear-gradient(145deg, rgba(124, 58, 237, 0.12) 0%, rgba(255, 255, 255, 0.85) 50%),
    var(--card);
}

body[data-theme="dark"] .about-panel--overlay {
  background:
    linear-gradient(145deg, rgba(124, 58, 237, 0.18) 0%, rgba(15, 23, 42, 0.92) 50%),
    var(--card);
}

/* Value & service card covers */
.about-value {
  overflow: hidden;
  padding: 0;
}

.about-value__cover {
  height: 140px;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.about-value__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card) 100%);
}

.about-value__icon,
.about-value h3,
.about-value p {
  margin-left: 26px;
  margin-right: 26px;
}

.about-value__icon {
  margin-top: -28px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--card);
}

.about-value h3 {
  margin-top: 16px;
}

.about-value p {
  margin-bottom: 26px;
}

.service-card {
  overflow: hidden;
  padding-top: 0;
}

.service-card__cover {
  height: 130px;
  margin: -1px -1px 0;
  background-size: cover;
  background-position: top center;
  position: relative;
}

.service-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--bg-3, #fff) 100%);
}

body[data-page="services"] .service-card__top {
  margin-top: 4px;
}

body[data-page="services"] .service-card h3,
body[data-page="services"] .service-card p,
body[data-page="services"] .service-card__list,
body[data-page="services"] .service-card__link {
  padding-left: 0;
}

body[data-page="services"] .service-card--featured .service-card__cover::after {
  background: linear-gradient(to bottom, transparent 20%, rgba(124, 58, 237, 0.06) 100%);
}

/* Contact banner */
.page-banner--contact {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.page-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 32px 0;
}

.page-banner__collage,
.contact-visual__collage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 900px;
}

.contact-visual__shot,
.page-banner__shot {
  flex: 1;
  max-width: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(var(--ty, 0));
}

.contact-visual__shot--1 { --ty: 8px; }
.contact-visual__shot--2 { --ty: -6px; max-width: 320px; }
.contact-visual__shot--3 { --ty: 10px; }

.contact-visual__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.contact-visual__badge,
.page-banner__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  text-align: center;
}

.contact-visual__badge strong,
.page-banner__badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #7C3AED;
  line-height: 1;
}

.contact-visual__badge span,
.page-banner__badge span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

/* Process connector */
.page-process {
  position: relative;
}

.page-process::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.25), transparent);
  pointer-events: none;
}

.page-process__step {
  position: relative;
  z-index: 1;
}

/* Showcase zoom */
.about-showcase__img-wrap {
  overflow: hidden;
}

.about-showcase__img-wrap img {
  transition: transform 0.45s ease;
}

.about-showcase__item:hover .about-showcase__img-wrap img {
  transform: scale(1.06);
}

/* Legal doc icons */
.legal-doc {
  position: relative;
  padding-top: 56px;
}

.legal-doc__icon {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.1));
  font-size: 1.25rem;
}

/* Review cards watermark */
body[data-page="reviews"] .review-card {
  position: relative;
  overflow: hidden;
}

body[data-page="reviews"] .review-card::before {
  content: '“';
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(124, 58, 237, 0.07);
  pointer-events: none;
}

body[data-page="reviews"] .reviews-intro {
  padding: 24px 28px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(6, 182, 212, 0.03)),
    var(--card);
}

/* Portfolio page cards */
body[data-page="portfolio"] .portfolio-item__img {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

body[data-page="portfolio"] .portfolio-item:hover .portfolio-item__img {
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

/* Pricing section atmosphere */
body[data-page="pricing"] .section--dark {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124, 58, 237, 0.08), transparent 55%),
    var(--bg-2);
}

@media (max-width: 1024px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__visual {
    min-height: 240px;
    max-width: 520px;
    margin: 0 auto;
  }

  .page-process::before {
    display: none;
  }

  .about-mosaic {
    margin-bottom: 0;
    padding-bottom: 16px;
  }

  .about-mosaic__badge {
    right: 8px;
    top: 8px;
  }
}

@media (max-width: 640px) {
  .page-hero--visual {
    padding: 108px 0 48px;
  }

  .page-hero__collage {
    min-height: 220px;
  }

  .about-mosaic {
    grid-template-rows: 120px 120px;
  }

  .contact-visual__shot--2 {
    display: none;
  }

  .contact-visual__badge {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }
}

/* Pricing highlights (pricing page + shared) */
.pricing-card__feat.is-included .pricing-card__feat-icon,
.corp-plan__feat.is-included .corp-plan__feat-icon {
  color: #16A34A;
}

.pricing-card__feat.is-highlight .pricing-card__feat-label,
.corp-plan__feat.is-highlight .corp-plan__feat-label {
  color: #059669;
  font-weight: 700;
}

.pricing-card__feat.is-highlight,
.corp-plan__feat.is-highlight {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.07), transparent 72%);
  border-radius: 8px;
  margin: 0 -6px;
  padding-left: 6px;
  padding-right: 6px;
}

.review-verified {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
}

.review-verified svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.review-verified__dot {
  color: #94A3B8;
  font-weight: 400;
}

/* Guarantee block (pricing & internal pages) */
.trust-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.trust-section__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 8px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.trust-grid--compact {
  gap: 16px;
}

.trust-card {
  padding: 28px 22px;
  background: var(--bg-3, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius, 16px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.08));
  font-size: 1.1rem;
  font-weight: 800;
  color: #7C3AED;
}

.trust-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

.license-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius, 16px);
}

.license-badge__icon {
  flex-shrink: 0;
  color: #7C3AED;
}

.license-badge__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.license-badge__text strong {
  color: var(--text);
  font-size: 0.95rem;
}

.contact-info .license-badge {
  margin-top: 32px;
  text-align: left;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
