/* ============================================================
   GTAC — service detail pages
   Loaded alongside ../styles.css by every services/*.html page.
   ============================================================ */

/* ── DETAIL HERO ── */
.svc-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 82% 20%, rgba(36,145,255,0.16) 0%, rgba(36,145,255,0) 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 64px 16px 60px;
}
.svc-hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 34px;
}
.svc-breadcrumb {
  font-size: 12px; letter-spacing: 1px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 18px;
}
.svc-breadcrumb a { color: var(--blue-vivid); text-decoration: none; }
.svc-breadcrumb a:hover { text-decoration: underline; }
.svc-breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 8px; }
.svc-breadcrumb .current { color: rgba(255,255,255,0.7); }
.svc-hero-badge {
  flex-shrink: 0;
  width: 92px; height: 92px;
  background: linear-gradient(150deg, var(--blue-vivid) 0%, var(--blue) 100%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 30px rgba(36,145,255,0.35);
  display: flex; align-items: center; justify-content: center;
}
.svc-hero-badge img { width: 48px; height: 48px; object-fit: contain; }
.svc-eyebrow {
  font-size: 12px; letter-spacing: 3px; font-weight: 800;
  color: var(--blue-vivid); text-transform: uppercase; margin-bottom: 12px;
}
.svc-title {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 900; line-height: 1.08;
  text-transform: uppercase; letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.svc-tagline {
  font-size: 18px; color: rgba(255,255,255,0.82);
  line-height: 1.65; max-width: 620px;
}

/* ── CONTENT LAYOUT ── */
.svc-body { padding: 76px 16px; }
.svc-body-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px;
  align-items: start;
}
.svc-overview h2 {
  font-size: 26px; font-weight: 900; color: var(--navy);
  margin-bottom: 18px; letter-spacing: -0.2px;
}
.svc-overview p { color: var(--muted); margin-bottom: 18px; }
.svc-overview h3 {
  font-size: 13px; letter-spacing: 1.6px; font-weight: 800;
  color: var(--blue); text-transform: uppercase;
  margin: 34px 0 16px;
}
.svc-features { list-style: none; display: grid; gap: 12px; }
.svc-features li {
  position: relative; padding-left: 30px;
  font-size: 15.5px; color: var(--body-text); line-height: 1.55;
}
.svc-features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--blue-vivid);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 86% 4%, 38% 70%);
}

/* Aside — quick facts card */
.svc-aside {
  position: sticky; top: 100px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  background: var(--gray-warm);
  padding: 28px 26px;
}
.svc-aside h3 {
  font-size: 12px; letter-spacing: 1.6px; font-weight: 800;
  color: var(--blue); text-transform: uppercase; margin-bottom: 18px;
}
.svc-fact { padding: 14px 0; border-bottom: 1px solid var(--border); }
.svc-fact:last-of-type { border-bottom: none; }
.svc-fact-label {
  font-size: 11px; letter-spacing: 1px; font-weight: 800;
  color: var(--muted); text-transform: uppercase; margin-bottom: 4px;
}
.svc-fact-value { font-size: 15px; font-weight: 700; color: var(--navy); }
.svc-aside .btn { width: 100%; text-align: center; margin-top: 22px; }

/* ── PRICING ── */
.svc-pricing { padding: 84px 16px; }
.svc-pricing-head { max-width: 1100px; margin: 0 auto 14px; text-align: center; }
.svc-pricing-head .section-eyebrow { justify-content: center; }
.svc-pricing-head .section-title { margin-bottom: 12px; }
.svc-pricing-head .section-desc { margin: 0 auto; text-align: center; max-width: 620px; }
.price-note {
  max-width: 760px; margin: 26px auto 0;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.5);
  border-left: 4px solid var(--gold);
  padding: 14px 18px; font-size: 13.5px; color: #6b5a1f; line-height: 1.55;
}
.price-note strong { color: #574818; }
/* Audience toggle — switches the grid between Individual and Enterprise pricing */
.price-toggle {
  display: inline-flex; margin-top: 28px;
  border: 1px solid var(--border); background: var(--white); padding: 4px;
}
.price-toggle-btn {
  appearance: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 12.5px; letter-spacing: 1px; font-weight: 800; text-transform: uppercase;
  color: var(--muted); background: transparent; padding: 11px 28px;
  transition: background 0.2s, color 0.2s;
}
.price-toggle-btn:hover { color: var(--navy); }
.price-toggle-btn.active { background: var(--navy); color: var(--white); }
.pricing-grid[hidden] { display: none; }
.pricing-grid {
  max-width: 1100px; margin: 46px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.price-card:hover { box-shadow: 0 12px 30px rgba(10,30,63,0.12); transform: translateY(-3px); }
.price-card.featured {
  border-top-color: var(--blue-vivid);
  box-shadow: 0 16px 40px rgba(10,30,63,0.16);
  position: relative;
}
.price-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-vivid); color: var(--navy-deep);
  font-size: 10.5px; letter-spacing: 1.2px; font-weight: 800;
  text-transform: uppercase; padding: 5px 14px;
}
.price-name {
  font-size: 13px; letter-spacing: 1.4px; font-weight: 800;
  color: var(--blue); text-transform: uppercase; margin-bottom: 14px;
}
.price-amount { font-size: 38px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-period { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 6px; }
.price-blurb {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin: 18px 0; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.price-list { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.price-list li {
  position: relative; padding-left: 24px;
  font-size: 14.5px; color: var(--body-text); line-height: 1.5;
}
.price-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px; background: var(--blue-vivid);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 86% 4%, 38% 70%);
}
.price-card .btn { margin-top: auto; text-align: center; }

/* ── CTA BAND ── */
.svc-cta {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white); text-align: center;
  padding: 72px 16px;
}
.svc-cta h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 14px;
}
.svc-cta p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 560px; margin: 0 auto 30px; line-height: 1.7;
}
.svc-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-body-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-aside { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  .svc-hero-inner { flex-direction: column; align-items: flex-start; gap: 22px; }
}
