/* ============================================================
   PAGES.CSS — Styles for inner pages
   ============================================================ */

/* ===== NAV ACTIVE STATE ===== */
.nav__active {
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.nav__active::after { transform: scaleX(1) !important; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(145deg, var(--navy-dk) 0%, var(--navy) 55%, #015a8a 100%);
  color: var(--white);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(4,178,217,.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(64,203,113,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero--compact .page-hero__inner { padding: 60px 24px 60px; }
.page-hero--security { background: linear-gradient(145deg, #010f1e 0%, var(--navy-dk) 50%, var(--navy) 100%); }

.page-hero__badge {
  display: inline-block;
  background: rgba(4,178,217,.2);
  border: 1px solid rgba(4,178,217,.4);
  color: var(--sky-lt);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.page-hero__text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.page-hero__text h1 span { color: var(--sky-lt); }
.page-hero__text p {
  font-size: 1rem;
  color: var(--text-light);
  opacity: .85;
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.page-hero__visual { display: flex; justify-content: center; }
.page-hero__visual svg { width: 100%; max-width: 420px; filter: drop-shadow(0 16px 40px rgba(0,0,0,.3)); }

/* ===== TWO COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__text p { color: var(--gray-500); margin-bottom: 18px; line-height: 1.78; font-size: .95rem; }
.two-col__visual { display: flex; justify-content: center; }
.two-col__visual svg { width: 100%; max-width: 340px; }

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-box__num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box__label {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== CAPABILITY CARDS ===== */
.cap-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--green));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.cap-card:hover::before { transform: scaleX(1); }
.cap-card__icon { display: flex; justify-content: center; margin-bottom: 18px; }
.cap-card__icon svg { width: 56px; height: 56px; }
.cap-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cap-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.7; }

/* ===== BENEFIT ROWS ===== */
.benefits-list { display: flex; flex-direction: column; gap: 0; }
.benefit-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-row__icon { flex-shrink: 0; }
.benefit-row__icon svg { width: 64px; height: 64px; }
.benefit-row h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-row p { font-size: .9rem; color: var(--gray-500); line-height: 1.72; }

/* ===== TECH CARDS (navy bg) ===== */
.tech-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background .25s, border-color .25s;
}
.tech-card:hover { background: rgba(255,255,255,.1); border-color: var(--sky); }
.tech-card__icon { flex-shrink: 0; }
.tech-card__icon svg { width: 40px; height: 40px; }
.tech-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tech-card p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.68; }

/* ===== WHO CARDS ===== */
.who-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }
.who-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(0,145,63,.15);
}
.who-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.who-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.68; }

/* ===== STEPS ROW ===== */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-pill {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.step-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-pill__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(0,145,63,.12);
}
.step-pill h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-pill p { font-size: .84rem; color: var(--gray-500); line-height: 1.65; }
.step-pill__arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--gray-200);
  padding: 0 8px;
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===== AUDIT GRID ===== */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.audit-item {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: background .25s, border-color .25s;
}
.audit-item:hover { background: rgba(255,255,255,.1); border-color: var(--sky); }
.audit-item__icon { display: flex; justify-content: center; margin-bottom: 16px; }
.audit-item__icon svg { width: 44px; height: 44px; }
.audit-item h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.audit-item p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.68; }

/* ===== CONTROL CARDS ===== */
.control-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.control-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }
.control-card__icon { flex-shrink: 0; }
.control-card__icon svg { width: 48px; height: 48px; }
.control-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.control-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.68; }

/* ===== PROMISE BLOCK ===== */
.promise-block {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
}
.promise-block__icon { flex-shrink: 0; }
.promise-block__icon svg { width: 80px; height: 80px; }
.promise-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.promise-block p { color: var(--gray-500); line-height: 1.78; font-size: .95rem; }

/* ===== SOLUTION BLOCKS ===== */
.solution-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}
.solution-block:last-child { border-bottom: none; }
.solution-block--alt { grid-template-columns: 1.6fr 1fr; }
.solution-block--alt .solution-block__visual { order: 2; }
.solution-block--alt .solution-block__text { order: 1; }
.solution-block__visual { display: flex; justify-content: center; }
.solution-block__visual svg { width: 100%; max-width: 220px; }
.solution-block__tag {
  display: inline-block;
  background: rgba(1,71,115,.1);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.solution-block__tag--green { background: rgba(0,145,63,.1); color: var(--green); }
.solution-block__tag--sky { background: rgba(4,178,217,.1); color: #0390b0; }
.solution-block__text h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.solution-block__text p { color: var(--gray-500); line-height: 1.78; font-size: .95rem; margin-bottom: 16px; }
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
}
.solution-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== MISSION/VISION GRID ===== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mv-card__icon { display: flex; justify-content: center; margin-bottom: 18px; }
.mv-card__icon svg { width: 56px; height: 56px; }
.mv-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.mv-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.75; }

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.value-pill:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-pill__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-pill__icon svg { width: 32px; height: 32px; }
.value-pill h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-pill p { font-size: .85rem; color: var(--gray-500); line-height: 1.68; }

/* ===== RESOURCE CARDS ===== */
.resource-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.resource-card__icon { display: flex; margin-bottom: 14px; }
.resource-card__icon svg { width: 56px; height: 56px; }
.resource-card__tag {
  display: inline-block;
  background: rgba(1,71,115,.1);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}
.resource-card__tag--sky { background: rgba(4,178,217,.12); color: #0390b0; }
.resource-card__tag--green { background: rgba(0,145,63,.1); color: var(--green); }
.resource-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.resource-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.68; flex: 1; margin-bottom: 16px; }
.resource-card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--sky);
  transition: color .2s;
}
.resource-card__link:hover { color: var(--navy); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-item__q:hover { color: var(--sky); }
.faq-item__arrow {
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--gray-500);
}
.faq-item__q[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); color: var(--sky); }
.faq-item__a {
  display: none;
  padding: 0 0 20px;
}
.faq-item__a.open { display: block; }
.faq-item__a p { font-size: .9rem; color: var(--gray-500); line-height: 1.75; }

/* ===== CONTACT REASONS ===== */
.contact-reasons { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-reason {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-reason__icon { flex-shrink: 0; }
.contact-reason__icon svg { width: 36px; height: 36px; }
.contact-reason strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.contact-reason p { font-size: .84rem; color: var(--gray-500); line-height: 1.6; margin: 0; }
.contact__text-body { color: var(--gray-500); line-height: 1.78; font-size: .95rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .page-hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .page-hero__visual { display: flex; justify-content: center; }
  .page-hero__visual svg { max-width: 300px; }
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .solution-block, .solution-block--alt { grid-template-columns: 1fr; gap: 32px; }
  .solution-block--alt .solution-block__visual,
  .solution-block--alt .solution-block__text { order: unset; }
  .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .promise-block { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .steps-row { flex-direction: column; align-items: center; }
  .step-pill__arrow { transform: rotate(90deg); margin: 0; padding: 4px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .benefit-row { flex-direction: column; gap: 16px; }
  .tech-card { flex-direction: column; }
  .control-card { flex-direction: column; }
}

/* ===== GOAL CARDS (About Us) ===== */
.goal-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.goal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }
.goal-card__icon { flex-shrink: 0; }
.goal-card__icon svg { width: 56px; height: 56px; }
.goal-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.goal-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.68; }

/* ===== OFFER CARDS (About Us) ===== */
.offer-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }
.offer-card__icon { flex-shrink: 0; }
.offer-card__icon svg { width: 48px; height: 48px; }
.offer-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.offer-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.68; }

/* ===== PARTNERS ROW ===== */
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.partner-logo {
  opacity: .55;
  transition: opacity .2s;
  display: flex;
  align-items: center;
}
.partner-logo:hover { opacity: 1; }
.partner-logo svg { height: 40px; width: auto; }

/* ===== OUTCOMES GRID (Solutions) ===== */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.outcome-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.outcome-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.outcome-card__icon { display: flex; justify-content: center; margin-bottom: 16px; }
.outcome-card__icon svg { width: 56px; height: 56px; }
.outcome-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.outcome-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.68; }

@media (max-width: 600px) {
  .goal-card { flex-direction: column; }
  .offer-card { flex-direction: column; }
  .partners-row { gap: 28px; }
}
