/* ==========================================================================
   solutions.css — Access Level Up | Solutions Pages
   Path: wp-content/themes/maaz-developer/css/solutions.css
   ========================================================================== */

/* ── CSS Variables ────────────────────────────────────────────────────────── */
.sl-page {
  --ba-purple:      #149a8e;
  --ba-purple-600:  #0f8579;
  --ba-purple-deep: #16313f;
  --ba-violet-band: #21465a;
  --ba-lav-50:      #f1f7f6;
  --ba-lav-100:     #e2efed;
  --ba-lav-200:     #c7e1dd;
  --ba-ink:         #173140;
  --ba-body:        #4a5b62;
  --ba-line:        #d8e8e5;
  --ba-radius:      14px;
  --ba-radius-sm:   10px;
  --ba-shadow:      0 18px 40px -18px rgba(20,49,63,.26);
  --ba-shadow-sm:   0 8px 22px -12px rgba(20,49,63,.22);
  --ba-font-head:   'Poppins', system-ui, sans-serif;
  --ba-font-body:   'Inter', system-ui, sans-serif;
  font-family: var(--ba-font-body);
  color: var(--ba-body);
}

/* ── Shared utils ─────────────────────────────────────────────────────────── */
.sl-wrap     { max-width: 1160px; margin-inline: auto; padding-inline: 24px; }

.sl-eyebrow {
  font-family: var(--ba-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ba-purple);
  margin-bottom: 12px;
  display: block;
}
.sl-eyebrow-light { color: rgba(255,255,255,.65); }

.sl-badge {
  display: inline-block;
  background: #e8fdf7;
  color: #0f8579;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #b4e6da;
  margin-left: 8px;
  vertical-align: middle;
}

.sl-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ═══════════════════════════════════════════════════
   OVERVIEW PAGE
═══════════════════════════════════════════════════ */

/* Overview Hero */
.sl-ov-hero {
  background: var(--ba-purple-deep);
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sl-ov-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(20,154,142,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(20,154,142,.12) 0%, transparent 50%);
}
.sl-ov-hero .sl-wrap { position: relative; }
.sl-ov-hero .sl-eyebrow { color: rgba(255,255,255,.55); }
.sl-ov-hero h1 {
  font-family: var(--ba-font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sl-ov-hero h1 span { color: var(--ba-purple); }
.sl-ov-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Overview Grid */
.sl-ov-grid-section { padding: 72px 0 88px; background: #fff; }
.sl-ov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.sl-ov-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ba-line);
  border-radius: var(--ba-radius);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--ba-ink);
  box-shadow: var(--ba-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative;
}
.sl-ov-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ba-shadow);
  border-color: var(--ba-purple);
}
.sl-ov-ic {
  width: 46px; height: 46px;
  background: var(--ba-lav-100);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ba-purple);
  flex-shrink: 0;
}
.sl-ov-ic svg { width: 22px; height: 22px; }
.sl-ov-card-body { flex: 1; }
.sl-ov-card-body strong {
  display: block;
  font-family: var(--ba-font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.sl-ov-card-body p {
  font-size: 13px;
  color: var(--ba-body);
  margin: 0;
  line-height: 1.4;
}
.sl-ov-arrow {
  color: var(--ba-purple);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.sl-ov-arrow svg { width: 18px; height: 18px; }
.sl-ov-card:hover .sl-ov-arrow { opacity: 1; transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   INDIVIDUAL SOLUTION PAGE
═══════════════════════════════════════════════════ */

/* ── 1. HERO ─────────────────────────────────────── */
.sl-hero {
  background: var(--ba-purple-deep);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.sl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(20,154,142,.15) 0%, transparent 55%);
}
.sl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.sl-hero-copy .sl-eyebrow { color: rgba(255,255,255,.55); }
.sl-hero-copy h1 {
  font-family: var(--ba-font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.sl-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.68;
  margin-bottom: 32px;
}
.sl-hero-img-wrap {
  border-radius: var(--ba-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  aspect-ratio: 4/3;
}
.sl-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 2. STATS BAND ───────────────────────────────── */
.sl-stats-band {
  background: var(--ba-purple);
  padding: 36px 0;
}
.sl-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.sl-stat strong {
  display: block;
  font-family: var(--ba-font-head);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.sl-stat span {
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

/* ── 3 & 5. FEATURE SECTIONS ─────────────────────── */
.sl-feature         { padding: 88px 0; }
.sl-feature--alt    { background: var(--ba-lav-50); }
.sl-feature:not(.sl-feature--alt) { background: #fff; }

.sl-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sl-feature--img-left  { }
.sl-feature--img-right { }

.sl-feature-img {
  border-radius: var(--ba-radius);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  aspect-ratio: 4/3;
}
.sl-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sl-feature-img:hover img { transform: scale(1.03); }

.sl-feature-copy h2 {
  font-family: var(--ba-font-head);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--ba-ink);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sl-feature-copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ba-body);
}

/* ── 4. FREE ESTIMATE BAND ───────────────────────── */
.sl-estimate-band {
  background: var(--ba-violet-band);
  padding: 72px 0;
}
.sl-estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sl-estimate-img {
  border-radius: var(--ba-radius);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  aspect-ratio: 4/3;
}
.sl-estimate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-estimate-ic {
  width: 52px; height: 52px;
  background: rgba(20,154,142,.25);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #5ed4c8;
  margin-bottom: 18px;
}
.sl-estimate-ic svg { width: 26px; height: 26px; }
.sl-estimate-copy h2 {
  font-family: var(--ba-font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.sl-estimate-copy p {
  font-size: 15.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.68;
  margin-bottom: 28px;
}

/* ── 6. TWO-COLUMN CHECKLIST ─────────────────────── */
.sl-two-col-section {
  background: #fff;
  padding: 88px 0;
}
.sl-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.sl-col-card {
  background: var(--ba-lav-50);
  border: 1px solid var(--ba-line);
  border-radius: var(--ba-radius);
  padding: 40px 36px;
}
.sl-col-card h2 {
  font-family: var(--ba-font-head);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--ba-ink);
  letter-spacing: -.02em;
  margin-bottom: 22px;
  line-height: 1.2;
}
.sl-col-card p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--ba-body);
}

.sl-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ba-body);
  line-height: 1.55;
}
.sl-check-ic {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--ba-purple);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  margin-top: 1px;
}
.sl-check-ic svg { width: 13px; height: 13px; stroke-width: 3; }

/* ── 7. MONITORING ───────────────────────────────── */
.sl-monitoring {
  background: var(--ba-lav-50);
  padding: 88px 0;
}
.sl-monitoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sl-monitoring-copy h2 {
  font-family: var(--ba-font-head);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--ba-ink);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.18;
}
.sl-monitoring-copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ba-body);
}
.sl-monitoring-img {
  border-radius: var(--ba-radius);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  aspect-ratio: 4/3;
}
.sl-monitoring-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 8. LEGAL RISK ───────────────────────────────── */
.sl-risk {
  background: #fff;
  padding: 88px 0;
}
.sl-risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sl-risk-copy h2 {
  font-family: var(--ba-font-head);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--ba-ink);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.18;
}
.sl-risk-copy p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ba-body);
}

/* Geometric visual */
.sl-risk-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-risk-geo {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--ba-lav-200);
}
.sl-geo-1 { width: 280px; height: 280px; }
.sl-geo-2 { width: 200px; height: 200px; border-color: var(--ba-lav-100); animation: sl-spin 18s linear infinite; }
.sl-geo-3 { width: 130px; height: 130px; border-color: var(--ba-purple); opacity: .3; animation: sl-spin 10s linear infinite reverse; }

@keyframes sl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.sl-risk-shield {
  position: relative;
  z-index: 1;
  width: 72px; height: 72px;
  background: var(--ba-purple);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(20,154,142,.45);
}
.sl-risk-shield svg { width: 36px; height: 36px; }

/* ── 9. CTA BAND ─────────────────────────────────── */
.sl-cta-band {
  background: var(--ba-violet-band);
  padding: 80px 0;
}
.sl-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.sl-cta-inner h2 {
  font-family: var(--ba-font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.sl-cta-inner p {
  font-size: 15.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}
.sl-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.sl-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-family: var(--ba-font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.sl-ghost-link:hover { color: #fff; border-color: rgba(255,255,255,.7); }
.sl-ghost-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sl-hero-grid       { grid-template-columns: 1fr; }
  .sl-hero-img-wrap   { max-width: 560px; margin: 0 auto; }
  .sl-feature-grid    { grid-template-columns: 1fr; }
  .sl-estimate-grid   { grid-template-columns: 1fr; }
  .sl-two-col-grid    { grid-template-columns: 1fr; }
  .sl-monitoring-grid { grid-template-columns: 1fr; }
  .sl-risk-grid       { grid-template-columns: 1fr; }
  .sl-cta-inner       { flex-direction: column; align-items: flex-start; }
  /* reorder: image always after copy on mobile */
  .sl-feature--img-left .sl-feature-img  { order: -1; }
  .sl-feature--img-right .sl-feature-img { order: 1; }
}

@media (max-width: 680px) {
  .sl-hero           { padding: 60px 0; }
  .sl-stats-grid     { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .sl-stats-band     { padding: 32px 0; }
  .sl-feature        { padding: 60px 0; }
  .sl-estimate-band  { padding: 60px 0; }
  .sl-two-col-section{ padding: 60px 0; }
  .sl-monitoring     { padding: 60px 0; }
  .sl-risk           { padding: 60px 0; }
  .sl-col-card       { padding: 28px 22px; }
  .sl-risk-visual    { height: 240px; }
  .sl-geo-1          { width: 210px; height: 210px; }
  .sl-geo-2          { width: 150px; height: 150px; }
  .sl-geo-3          { width: 100px; height: 100px; }
  .sl-ov-grid-section{ padding: 48px 0 60px; }
}
