/* =============================================================
   pages.css — Styles scoped to inner pages
   Loaded on: about, services, portfolio, blog, contact
   ============================================================= */

/* ---------- Section variants used across inner pages ---------- */
.section--alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ---------- Page header (inner-page hero, refined variant) ---------- */
.page-header {
  position: relative;
  padding: clamp(9rem, 18vh, 12rem) 0 clamp(3.5rem, 7vh, 6rem);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 15% 100%, rgba(198, 244, 50, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(79, 70, 229, 0.07), transparent 60%);
  z-index: 0;
}

.page-header > .container { position: relative; z-index: 1; }

.page-header .display {
  max-width: 22ch;
  margin-top: 1.25rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb [aria-current="page"] { color: var(--brand-primary); }

/* =============================================================
   ABOUT PAGE
   ============================================================= */

/* ---------- Story grid (asymmetric two-column long-form) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.story-grid__side {
  position: sticky;
  top: 6rem;
}
.story-grid__body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 62ch;
}
.story-grid__body p:first-child::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.6rem;
  float: left;
  line-height: 0.85;
  margin: 0.35rem 0.6rem 0 0;
  color: var(--brand-primary);
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid__side { position: static; }
}

/* ---------- Values grid ---------- */
.values-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-card {
  background: var(--bg-base);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s ease;
}
.value-card:hover { background: var(--bg-elevated); }
.value-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
}
.value-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
}
.value-card__body {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.975rem;
}

/* ---------- Team grid ---------- */
.team-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.team-card__avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: transform 0.4s var(--ease-out);
}
.team-card:hover .team-card__avatar { transform: translateY(-4px); }
.team-card__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
}
.team-card__avatar span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
}
.team-card__bio {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---------- Timeline ---------- */
.timeline {
  margin-top: 3.5rem;
  list-style: none;
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--border-subtle);
}
@media (max-width: 700px) {
  .timeline::before { left: 0; }
}
.timeline__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}
@media (max-width: 700px) {
  .timeline__item { grid-template-columns: 1fr; gap: 0.5rem; padding-left: 1.5rem; }
}
.timeline__year {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
  position: relative;
}
.timeline__year::after {
  content: "";
  position: absolute;
  left: calc(100% + 1.5rem - 5px);
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-elevated);
}
@media (max-width: 700px) {
  .timeline__year::after { left: -1.5rem; top: 0.6rem; }
}
.timeline__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.timeline__body p {
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 60ch;
}

/* ---------- CTA band (used at end of inner pages) ---------- */
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 70% 100% at 0% 100%, rgba(198,244,50,0.10), transparent 60%),
    var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .cta-band { grid-template-columns: 1fr; }
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================================
   SERVICES PAGE
   ============================================================= */
.service-detail {
  padding: clamp(4rem, 9vh, 6.5rem) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.service-detail:last-of-type { border-bottom: 0; }

.service-detail__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.service-detail--reversed .service-detail__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.service-detail--reversed .service-detail__visual { order: -1; }
@media (max-width: 900px) {
  .service-detail__inner,
  .service-detail--reversed .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail--reversed .service-detail__visual { order: 0; }
}

.service-detail__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  text-transform: uppercase;
}
.service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 1rem 0 1.25rem;
}
.service-detail__title em { font-style: italic; color: var(--brand-primary); }
.service-detail__body {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 55ch;
}

.service-detail__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.service-detail__features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.service-detail__features li::before {
  content: "→";
  color: var(--brand-primary);
  font-family: var(--font-mono);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tech-chip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
  background: var(--bg-base);
  transition: all 0.2s ease;
}
.tech-chip:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* Service visual (CSS-only abstract) */
.service-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual svg { width: 70%; height: 70%; }

.service-visual--web {
  background: radial-gradient(circle at 30% 30%, rgba(198,244,50,0.12), transparent 50%), #0d1116;
}
.service-visual--mobile {
  background: radial-gradient(circle at 70% 30%, rgba(79,70,229,0.18), transparent 50%), #0d0f18;
}
.service-visual--design {
  background: radial-gradient(circle at 50% 50%, rgba(255,107,71,0.14), transparent 50%), #14100d;
}
.service-visual--cloud {
  background: radial-gradient(circle at 30% 70%, rgba(198,244,50,0.10), transparent 50%), #0a1414;
}
.service-visual--ai {
  background: radial-gradient(circle at 50% 30%, rgba(124,58,237,0.18), transparent 50%), #100c18;
}
.service-visual--strategy {
  background: radial-gradient(circle at 70% 70%, rgba(245,158,11,0.12), transparent 50%), #16110a;
}

/* ---------- Process steps ---------- */
.process-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: var(--bg-base);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.process-step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.process-step__body {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* =============================================================
   PORTFOLIO PAGE — extends portfolio styles from components.css
   ============================================================= */
.portfolio-list {
  display: grid;
  gap: 4rem;
  margin-top: 3rem;
}
.portfolio-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.portfolio-row--reversed { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
.portfolio-row--reversed .portfolio-row__media { order: -1; }
@media (max-width: 900px) {
  .portfolio-row, .portfolio-row--reversed { grid-template-columns: 1fr; }
  .portfolio-row--reversed .portfolio-row__media { order: 0; }
}

.portfolio-row__media {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.portfolio-row__category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
}
.portfolio-row__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0.85rem 0 1rem;
}
.portfolio-row__title em { font-style: italic; color: var(--brand-primary); }
.portfolio-row__body {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 50ch;
}
.portfolio-row__meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.portfolio-row__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.portfolio-row__meta-item dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.portfolio-row__meta-item dd {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* =============================================================
   BLOG PAGE — extends blog styles
   ============================================================= */
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-subtle);
}
@media (max-width: 900px) { .blog-featured { grid-template-columns: 1fr; } }

.blog-featured__media {
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.blog-featured__category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  display: inline-block;
}
.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.blog-featured__title em { font-style: italic; color: var(--brand-primary); }
.blog-featured__body {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 55ch;
}
.blog-featured__meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

/* Blog filter */
.blog-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.blog-filter__btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-filter__btn:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.blog-filter__btn.is-active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--bg-base);
}

/* Newsletter band */
.newsletter {
  margin-top: 5rem;
  padding: clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: var(--bg-elevated);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 800px) { .newsletter { grid-template-columns: 1fr; } }

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter__input {
  flex: 1 1 240px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter__input:focus {
  border-color: var(--brand-primary);
  outline: none;
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.contact-info__value a { color: inherit; transition: color 0.2s ease; }
.contact-info__value a:hover { color: var(--brand-primary); }

/* Office locations */
.offices-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 800px) { .offices-grid { grid-template-columns: 1fr; } }
.office {
  background: var(--bg-base);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.3s ease;
}
.office:hover { background: var(--bg-elevated); }
.office__city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.office__city em { color: var(--brand-primary); font-style: italic; }
.office__address {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.office__hours {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: auto;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq__item:first-child { border-top: 1px solid var(--border-subtle); }
.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.faq__q:hover { color: var(--brand-primary); }
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: rotate(0deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq__a-inner { padding: 0 0 1.5rem; max-width: 60ch; }
.faq__item.is-open .faq__a { max-height: 400px; }

/* ---------- Contact form supplementary styles ---------- */
.form__chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.form__chip:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.form__chip input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--border-strong, var(--border-subtle));
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}
.form__chip input[type="checkbox"]:checked {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}
.form__chip input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 4px;
  height: 8px;
  border-right: 1.5px solid var(--bg-base);
  border-bottom: 1.5px solid var(--bg-base);
  transform: rotate(45deg);
}
.form__chip:has(input:checked) {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.form__actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form__note {
  font-size: 0.8rem;
  margin: 0;
  max-width: 32ch;
  line-height: 1.5;
}
.form__note a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--border-subtle);
  text-underline-offset: 3px;
}
.form__note a:hover { text-decoration-color: var(--brand-primary); }

/* Stats grid (reused from index.html, redefined for inner-page consistency) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stats-grid .stat {
  background: var(--bg-base);
  padding: 2rem 1.5rem;
}

/* =============================================================
   Light theme adjustments for inner pages
   ============================================================= */
[data-theme="light"] .page-header::before {
  background:
    radial-gradient(ellipse 70% 80% at 15% 100%, rgba(198, 244, 50, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(79, 70, 229, 0.10), transparent 60%);
}
[data-theme="light"] .value-card:hover,
[data-theme="light"] .office:hover {
  background: var(--bg-base);
}
[data-theme="light"] .cta-band {
  background:
    radial-gradient(ellipse 70% 100% at 0% 100%, rgba(198,244,50,0.18), transparent 60%),
    var(--bg-elevated);
}
