/* ============================================================
   SERVICES SUB-PAGES – Stylesheet
   ============================================================ */

/* ── Hero service ── */
.svc-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.svc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,.92) 0%,
    rgba(13,13,13,.70) 55%,
    rgba(13,13,13,.25) 100%
  );
}
.svc-hero-content {
  position: relative; z-index: 1;
  padding-top: 8rem;
  max-width: 720px;
}
.svc-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 1rem 0 1.25rem;
}
.svc-hero-content h1 span { color: var(--gold); }
.svc-hero-desc {
  font-size: 1.05rem;
  color: rgba(245,240,232,.85);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }
.bc-current { color: var(--gold); }

/* ── Intro ── */
.svc-intro { background: var(--dark2); }
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-intro-text .section-tag { margin-bottom: .5rem; }
.svc-intro-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.svc-intro-text p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.svc-intro-img img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Features ── */
.svc-features { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color var(--trans), transform var(--trans);
}
.feat-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.feat-icon {
  width: 52px; height: 52px;
  background: rgba(184,151,90,.12);
  border: 1px solid rgba(184,151,90,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  padding: .85rem;
  margin-bottom: 1.25rem;
}
.feat-icon svg { width: 100%; height: 100%; }
.feat-card.feat-highlight {
  border-color: rgba(184,151,90,.25);
  background: rgba(184,151,90,.04);
}
.feat-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: 1rem;
}
.feat-tags span {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(184,151,90,.1);
  color: var(--gold);
  border: 1px solid rgba(184,151,90,.2);
  padding: .25rem .6rem; border-radius: 3px;
}
.feat-card h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--white);
}
.feat-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── Profiles ── */
.svc-profiles { background: var(--dark2); }
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.profile-item {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color var(--trans);
}
.profile-item:hover { border-color: rgba(184,151,90,.3); }
.profile-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: .25rem;
}
.profile-item strong { color: var(--white); font-size: .95rem; }
.profile-item p { font-size: .85rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Process ── */
.svc-process { padding: 6rem 0; }
.process-bg { position: absolute; inset: 0; z-index: 0; }
.process-bg img { width: 100%; height: 100%; object-fit: cover; }
.process-overlay { position: absolute; inset: 0; background: rgba(13,13,13,.88); }
.svc-process .container { position: relative; z-index: 1; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 700;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  margin-bottom: .75rem;
}
.step h4 { color: var(--white); font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .5rem; }
.step p { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.step-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: .4;
  padding: 0 .5rem;
  flex-shrink: 0;
}

/* ── FAQ ── */
.svc-faq { background: var(--dark); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item:hover { border-color: rgba(184,151,90,.3); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--trans);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 1rem;
}

/* ── Related services ── */
.svc-related { background: var(--dark2); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  position: relative;
}
.related-card:hover { transform: translateY(-6px); border-color: var(--gold-dk); box-shadow: var(--shadow); }
.related-card img { height: 200px; object-fit: cover; transition: transform .5s ease; }
.related-card:hover img { transform: scale(1.05); }
.related-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,13,.95), transparent);
  padding: 2rem 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.related-info h4 { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); }
.related-info span { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); white-space: nowrap; margin-left: .5rem; }

/* ── CTA ── */
.svc-cta { background: var(--dark3); border-top: 1px solid rgba(184,151,90,.15); border-bottom: 1px solid rgba(184,151,90,.15); }
.svc-cta-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.svc-cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .3rem;
}
.svc-cta-inner p { font-size: .9rem; color: var(--muted); }
.svc-cta-inner div:not(.emerg-pulse) { flex: 1; }
.svc-cta-inner .btn { flex-shrink: 0; }

/* ── Zones (international) ── */
.svc-zones { background: var(--dark); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.zone-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color var(--trans), transform var(--trans);
}
.zone-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.zone-flag { font-size: 1.6rem; margin-bottom: 1rem; }
.zone-card h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: .5rem; color: var(--white); }
.zone-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.zone-level {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 20px;
}
.zone-level.low  { background: rgba(80,200,120,.1); color: #50c878; border: 1px solid rgba(80,200,120,.25); }
.zone-level.med  { background: rgba(255,180,50,.1);  color: #ffb432; border: 1px solid rgba(255,180,50,.25); }
.zone-level.high { background: rgba(220,60,60,.1);   color: #e04040; border: 1px solid rgba(220,60,60,.25); }

/* ── Audit grid (residence) ── */
.svc-audit { background: var(--dark2); }
.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.audit-item {
  display: flex;
  gap: 1.25rem;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color var(--trans);
}
.audit-item:hover { border-color: rgba(184,151,90,.3); }
.audit-num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--gold); opacity: .5;
  line-height: 1; flex-shrink: 0;
}
.audit-item h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .4rem; }
.audit-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Levels grid (intelligence) ── */
.svc-levels { background: var(--dark); }
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.level-card {
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--trans);
}
.level-card:hover { transform: translateY(-4px); }
.level-1 { background: rgba(80,200,120,.05); border-color: rgba(80,200,120,.15); }
.level-2 { background: rgba(255,180,50,.05);  border-color: rgba(255,180,50,.15); }
.level-3 { background: rgba(255,120,50,.05);  border-color: rgba(255,120,50,.15); }
.level-4 { background: rgba(220,60,60,.05);   border-color: rgba(220,60,60,.15); }

.level-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.level-1 .level-badge { background: rgba(80,200,120,.15);  color: #50c878; }
.level-2 .level-badge { background: rgba(255,180,50,.15);  color: #ffb432; }
.level-3 .level-badge { background: rgba(255,120,50,.15);  color: #ff7832; }
.level-4 .level-badge { background: rgba(220,60,60,.15);   color: #e04040; }

.level-card h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: .5rem; color: var(--white); }
.level-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── Cyber threats grid ── */
.svc-cyber-threats { background: var(--dark2); }
.threats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.threat-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 1.75rem;
  transition: transform var(--trans), border-color var(--trans);
}
.threat-card:hover { transform: translateY(-4px); border-color: rgba(184,151,90,.3); }
.threat-icon {
  font-size: 1.3rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.threat-icon.red    { background: rgba(220,60,60,.12);   color: #e04040; border: 1px solid rgba(220,60,60,.2); }
.threat-icon.orange { background: rgba(255,120,50,.12);  color: #ff7832; border: 1px solid rgba(255,120,50,.2); }
.threat-icon.yellow { background: rgba(255,200,50,.12);  color: #ffc832; border: 1px solid rgba(255,200,50,.2); }
.threat-card h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; }
.threat-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   RESPONSIVE SERVICES
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .profiles-grid  { grid-template-columns: repeat(2, 1fr); }
  .zones-grid     { grid-template-columns: repeat(2, 1fr); }
  .levels-grid    { grid-template-columns: repeat(2, 1fr); }
  .audit-grid     { grid-template-columns: repeat(2, 1fr); }
  .threats-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-intro-img  { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .features-grid  { grid-template-columns: 1fr; }
  .profiles-grid  { grid-template-columns: 1fr; }
  .zones-grid     { grid-template-columns: 1fr; }
  .levels-grid    { grid-template-columns: 1fr; }
  .audit-grid     { grid-template-columns: 1fr; }
  .threats-grid   { grid-template-columns: 1fr; }
  .related-grid   { grid-template-columns: 1fr; }
  .process-steps  { flex-direction: column; align-items: center; }
  .step-arrow     { transform: rotate(90deg); }
  .svc-cta-inner  { flex-direction: column; text-align: center; }
}
