/* ==========================================================
   AZ Managed IT — Unified Persona & Services Selector
   Updated Final Version — Clean, Modern, No Shadows, No Glow
   ========================================================== */

/* --- Global Wrapper --- */
.ux-section {
  --ink: #e8edf4;
  --muted: #a9b5c5;
  --card: rgba(16, 22, 32, 0.4);
  --line: #233348;
  --accent: #00bfff;
  --accent-dark: #00ace6;
  color: var(--ink);
  background: none !important;
  padding: 60px 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

.ux-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.ux-head {
  text-align: center;
  margin-bottom: 24px;
}
.ux-head h2 {
  font-weight: 900;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.1vw, 32px);
  letter-spacing: .01em;
}
.ux-sub {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 28px;
}

/* ==========================================================
   PERSONA SELECTOR — FINAL CLEAN VERSION
   ========================================================== */

.persona {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 60px;
}

.persona-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Persona Card */
.persona-card {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;                 /* Bigger images */
  overflow: hidden;
  border: 2px solid transparent; /* Cyan on active */
  border-radius: 0 !important;   /* No rounded corners */
  box-shadow: none !important;   /* No shadows */
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}

.persona-card:hover .persona-img {
  filter: brightness(1);
  transform: scale(1.04);
}

.persona-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85);
  transition: filter .3s ease, transform .3s ease;
}

/* Bottom Title */
.persona-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px 0;
  background: rgba(0,0,0,0.55);
  text-align: center;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .3px;
}

/* Selected State — No Glow */
.persona-input:checked + .persona-card {
  border-color: #00bfff !important;
  box-shadow: none !important;
  transform: translateY(-2px);
}

/* Remove accidental DNN spans */
.persona-card > p,
.persona-card > span:not(.persona-title) {
  display: none !important;
}

/* ==========================================================
   SERVICES APP GRID — CLEAN, NO SHADOW, NATIVE <P> FONT
   ========================================================== */

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* Card Container */
.app-card {
  border: 2px solid var(--line);
  border-radius: 0 !important;
  background: var(--card);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  box-shadow: none !important;  /* No shadow */
  transition: border-color .25s ease, transform .25s ease;
}

.app-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: none !important;
}

/* Title — Ubuntu 1.5rem */
.app-title {
  color: var(--accent);
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 10px;
}

/* Description — Native <p> font */
.app-desc {
  font-family: "Segoe UI", sans-serif;
  color: #e0e6f0;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

/* Link */
.app-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.app-link:hover {
  color: var(--accent-dark);
}



/* ==========================================================
   AZ Managed IT — Services Directory (v4.2)
   Unified Cyan Theme / Transparent Background / 1400px Cap
   ========================================================== */
... [your svc-acc section remains unchanged] ...

/* ==========================================================
   IT SUPPORT TABS (Unified Transparent + Active Tab Glow)
   ========================================================== */

.it-tabs {
  --bg: #0f1726;
  --ink: #e8edf4;
  --accent: #00bfff;
  --accent-dark: #00ace6;
  --card: rgba(16, 22, 32, 0.25);
  --line: rgba(34, 49, 76, 0.4);
  color: var(--ink);
  padding: 80px 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,191,255,.12) 1px, transparent 0),
    radial-gradient(circle at 3px 3px, rgba(255,215,0,.06) 1px, transparent 0);
  background-size: 40px 40px;
  border-top: 1px solid #1a2334;
  border-bottom: 1px solid #1a2334;
  backdrop-filter: blur(4px);
}

/* Tablist */
.it-tabs .az-tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
}
.it-tabs .az-tab {
  background: rgba(16, 22, 32, 0.4);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
}
.it-tabs .az-tab:hover {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}
.it-tabs .az-tab[aria-selected="true"] {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0,191,255,0.5);
}
.it-tabs .az-tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 60%;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(0,191,255,0.6);
}

/* Panels */
.it-tabs .az-panel {
  background: rgba(15, 23, 38, 0.25);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  margin-bottom: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}
.it-tabs .az-panel h2 {
  color: var(--accent);
  font-size: clamp(22px, 2.1vw, 32px);
  margin-bottom: 16px;
}
.it-tabs .az-panel h4 {
  color: var(--accent);
  margin-bottom: 8px;
}
.it-tabs .az-panel p, .it-tabs .az-panel li {
  color: var(--ink);
  line-height: 1.6;
}

/* Rows */
.it-tabs .rows {
  display: grid;
  gap: 22px;
}
.it-tabs .row {
  background: rgba(15, 23, 38, 0.35);
  border: 1px solid rgba(34,49,76,0.4);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}
.it-tabs .row:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

/* CTAs */
.it-tabs .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.it-tabs .btn {
  background: var(--accent);
  color: #000;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease;
}
.it-tabs .btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.it-tabs .btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.it-tabs .btn--ghost:hover {
  background: var(--accent);
  color: #000;
}
