/* ============================================================
   STRATENSIS — pages.css (shared inner page styles)
   ============================================================ */

/* PAGE HERO (gray bg with large title) */
.page-hero {
  background: var(--gray-bg);
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  position: relative; overflow: hidden;
}
.page-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.page-hero-left { }
.page-label-top {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800; color: var(--blue);
  line-height: 1.05; letter-spacing: -0.02em;
}
.page-hero-right {
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 32px;
}
.page-hero-sub {
  font-size: 15px; color: var(--black);
  line-height: 1.7; max-width: 420px;
}
.page-hero-curves {
  position: absolute; right: 0; bottom: 0;
  width: 45%; opacity: 0.12; pointer-events: none;
}
.page-hero-curves svg { width: 100%; height: auto; }

/* NAVBAR label for inner pages */
.navbar-page-label { display: block !important; }

/* ACCORDION */
.accordion-section { padding: 80px 48px; }
.accordion-section-inner { max-width: var(--max-w); margin: 0 auto; }
.accordion-header {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  margin-bottom: 56px;
}
.accordion-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; color: var(--blue);
}

.accordion-list { display: flex; flex-direction: column; }
.accordion-item {
  border-bottom: 1px solid var(--gray-light);
}
.accordion-trigger {
  width: 100%; background: none; border: none;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 28px 0; cursor: pointer;
  gap: 24px;
}
.accordion-trigger-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; color: var(--blue);
  text-align: left; line-height: 1.2;
}
.accordion-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--blue);
  transition: all 0.3s; background: transparent;
}
.accordion-item.open .accordion-icon {
  background: var(--blue); color: white;
}

.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.open .accordion-body {
  max-height: 800px;
}
.accordion-body-inner {
  padding: 0 0 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.accordion-bullet-list { display: flex; flex-direction: column; gap: 10px; }
.accordion-bullet-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--black); line-height: 1.5;
}
.bullet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 7px;
}
.numbered-dot {
  min-width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: white;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.accordion-body-text {
  font-size: 15px; color: var(--blue);
  line-height: 1.7; font-weight: 500;
}
.accordion-body-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}

/* HOW WE WORK SECTION */
.how-we-work { background: var(--blue); padding: 80px 48px; }
.how-we-work-inner { max-width: var(--max-w); margin: 0 auto; }
.how-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.how-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; color: white;
  margin-bottom: 56px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.how-step { }
.how-step-title {
  font-size: 16px; font-weight: 700; color: white;
  margin-bottom: 10px;
}
.how-step-desc {
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6;
}

/* INDUSTRIES WE SERVE (on services page) */
.industries-serve { padding: 80px 48px; background: white; }
.industries-serve-inner { max-width: var(--max-w); margin: 0 auto; }
.industries-serve-header {
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.industries-serve-sub {
  font-size: 16px; color: var(--gray);
  font-style: italic; margin-top: 12px;
}
.industries-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.industry-card {
  display: flex; flex-direction: column; gap: 16px;
}
.industry-icon { width: 32px; height: 32px; }
.industry-icon img { width: 100%; height: 100%; object-fit: contain; }
.industry-card-title {
  font-size: 16px; font-weight: 700; color: var(--blue);
}
.industry-card-desc {
  font-size: 14px; color: var(--gray); line-height: 1.6;
}

/* CTA SECTION (bottom of pages) */
.page-cta { padding: 0 48px 80px; background: white; }
.page-cta-inner { max-width: var(--max-w); margin: 0 auto; }
.page-cta-text {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--black); line-height: 1.5; margin-bottom: 32px;
}
.page-cta-text em { color: var(--blue); font-style: italic; }
.page-cta-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* WHY WORK WITH US (services page) */
.why-work { padding: 80px 48px 0; background: white; }
.why-work-inner { max-width: var(--max-w); margin: 0 auto; }
.why-work-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 40px;
}
.years-badge {
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 800; color: var(--blue);
  line-height: 1; letter-spacing: -0.04em;
}
.why-work-text {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700; color: var(--black);
  line-height: 1.4;
}
.why-work-sub {
  font-size: 15px; color: var(--gray);
  line-height: 1.7; margin-top: 20px;
}

/* RESPONSIVE PAGES */
@media (max-width: 1024px) {
  .page-hero { padding: calc(var(--nav-h) + 40px) 32px 60px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .accordion-section { padding: 60px 32px; }
  .how-we-work { padding: 60px 32px; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries-serve-grid { grid-template-columns: 1fr 1fr; }
  .why-work { padding: 60px 32px 0; }
  .why-work-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-cta { padding: 0 32px 60px; }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 32px) 20px 48px; }
  .accordion-section { padding: 48px 20px; }
  .accordion-body-inner { grid-template-columns: 1fr; gap: 28px; }
  .how-we-work { padding: 48px 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  .industries-serve { padding: 48px 20px; }
  .industries-serve-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-cta { padding: 0 20px 48px; }
}
