/****
 * 1) VARIABLES + RESET
 ****/
:root {
  --bg: #0a0a0a;
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --accent: #2997ff;

  --nav-h: 56px;
  --maxw: 1200px;
  --nav-pad-x: 20px;

  --blur-bg: rgba(22, 22, 23, 0.72);
  --hover: rgba(255, 255, 255, 0.08);

  --panel-w: min(88vw, 360px);

  --logo-h: 26px;
  --logo-scale: 0.8;

  --radius-lg: 16px;
  --radius-sm: 8px;

  --card-bg: #111114;
  --card-border: rgba(255, 255, 255, 0.06);

  /* Glow system */
  --glow-border: rgba(210, 253, 255, 0.95);
  --glow-shadow: 0 0 6px rgba(35, 135, 221, 0.70),
    0 0 16px rgba(35, 135, 221, 0.45),
    0 0 34px rgba(35, 135, 221, 0.28),
    0 0 70px rgba(10, 60, 140, 0.22);

  --glow-shadow-hover: 0 0 12px rgba(35, 135, 221, 0.65),
    0 0 28px rgba(35, 135, 221, 0.40),
    0 0 56px rgba(35, 135, 221, 0.25),
    0 0 110px rgba(10, 60, 140, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #eee;
}

/****
 * 2) NAVBAR (TOP)
 ****/
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  background-color: var(--blur-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  height: var(--nav-h);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--nav-pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  min-width: 0;
}


.nav-version {
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
  user-select: none;
}
.nav-left {
  justify-content: flex-start;
}

.nav-center {
  justify-content: center;
  gap: 18px;
}

.nav-right {
  margin-left: auto;
  gap: 12px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo-wrap {
  width: auto;
  height: var(--logo-h);
  display: grid;
  place-items: center;
  overflow: visible;
}

.brand-logo {
  height: var(--logo-h);
  width: auto;
  object-fit: contain;
  transform: scale(var(--logo-scale));
  transform-origin: center;
}

/* Links + buttons */
.nav a,
.nav button {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover,
.icon-btn:hover {
  background: var(--hover);
}

/* Center links style */
.nav-center a {
  font-size: 13px;
  color: var(--muted);
}

.nav-center a.active {
  color: var(--text);
}

/* Icon buttons */
.icon-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: 0 0 auto;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
}

/* Inline SVG masks */
.icon-search {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>')
    center/contain no-repeat;
}

.icon-menu {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z"/></svg>')
    center/contain no-repeat;
}

.icon-phone {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.07 21 3 13.93 3 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.07 21 3 13.93 3 5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>') center/contain no-repeat;
}

.icon-mail {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"/></svg>') center/contain no-repeat;
}

/****
 * 3) SEARCH PANEL (DROPDOWN)
 ****/
.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  background: rgba(22, 22, 23, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: none;
}

.search-panel.open {
  display: block;
}

.search-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--nav-pad-x) 22px;
  display: grid;
  gap: 12px;
}

.search-input {
  width: 100%;
  background: #1c1c1f;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 10px;
  background: #1a1a1d;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

/****
 * 4) OFF-CANVAS (SIDE MENU)
 ****/
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: var(--panel-w);
  background: #0f0f13;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto 1fr;
}

.side-panel.open {
  transform: translateX(0);
}

.side-head {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.side-title {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.close-btn .icon {
  width: 16px;
  height: 16px;
}

.side-body {
  padding: 12px 12px 20px;
  overflow: auto;
}

.side-nav {
  display: grid;
  gap: 6px;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 12px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
  font-size: 15px;
}

.side-link:hover {
  background: #15151a;
  border-color: rgba(255, 255, 255, 0.06);
}

/****
 * 5) LAYOUT SECCIONES BASE
 ****/
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 16px;
  display: grid;
  gap: 24px;
}

/* Unified heading sizing */
.section > h2,
.services-heading,
.customers-title-fullwidth h2,
.feature-white-title h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
}

.section > h2,
.services-heading {
  text-align: center;
}

/* Cards base */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px;
  min-height: 160px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/****
 * 6) FULL-WIDTH VIDEO (INTRO)
 ****/
.fullvideo-section {
  width: 100%;
  background: #fff;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .fullvideo-section {
	width: 100%;
	background: #fff;
	padding: 0 0 80px 0;
	}
}

.fullvideo-inner {
  max-width: 100%;
  margin: 0 auto;
}

.fullvideo-video {
  width: 100%;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  background: #000;

  border: 1px solid var(--glow-border);
  box-shadow: var(--glow-shadow);
}

@media (max-width: 900px) {
  .fullvideo-video {
	border: 0px solid var(--glow-border);
	border-bottom: 1px solid var(--glow-border);
	
	}
}

/* Default (mobile): portrait only */
.fullvideo-landscape {
  display: none;
}

.fullvideo-portrait {
  display: block;
  border-radius: 0;
  margin: 0;
}

/* Desktop: landscape only + centered width */
@media (min-width: 901px) {
  .fullvideo-landscape {
    display: block;
    width: 60%;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: contrast(1.1);
  }

  .fullvideo-portrait {
    display: none;
  }
}

/****
 * 7) “UNLOCK / TESTIMONIALS” SECTION (WHITE THEME)
 ****/
.feature-white-section {
  background: #fff;
  color: #111;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 56px 16px;
}

@media (max-width: 900px) {
  .feature-white-section {
	padding: 0;	
	}
}

.feature-white-inner {
  max-width: var(--maxw);
  
}

.feature-white-title {
  margin-bottom: 24px;
}

.feature-white-title h2 {
  margin: 0;
  text-align: center;
  color: inherit;
}

.feature-white-content {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 901px) {
  .feature-white-content {
    grid-template-columns: 1fr 1.4fr;
  }
}

.feature-white-image-wrap {
  display: grid;
  place-items: center;
}

.feature-white-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.feature-white-text {
  text-align: left;
}

.feature-white-main {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: inherit;
}

.feature-white-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 900px) {
  .feature-white-text {
    text-align: center;
  }
}

/****
 * 8) SERVICES GRID (HOME)
 ****/
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.services-col {
  display: grid;
  gap: 16px;
}

.services-col.centered {
  text-align: center;
  justify-items: center;
}

.services-heading {
  margin: 0;
}

.services-image-bubble {
  width: 60%;
  max-width: 240px;
  height: auto;
  display: block;
}

.services-subtext {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services-logo {
  width: 50%;
  max-width: 360px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Services cards: layout icon + Read more */
.services-col .card .card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.services-col .card .card-row .card-media {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.services-col .card img.service-icon {
  height: 100px;
  max-width: 100%;
  width: auto;
  margin-top: 0 !important;
}

.services-col .card .card-row .readmore {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.services-col .card .card-row .readmore img {
  width: 120px;
  height: auto;
  margin: 0 !important;
}

@media (max-width: 600px) {
  .services-col .card .card-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .services-col .card .card-row .card-media {
    justify-content: center;
  }
}

/****
 * 9) AI VALUE GRID
 ****/
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.ai-col {
  display: grid;
  place-items: center;
  padding: 18px 14px;
  min-height: 220px;
  position: relative;
  box-shadow: var(--glow-shadow);
}

/* Separadores */
.ai-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 0;
  width: 1px;
  background: #d2fdff;
  box-shadow: 0 0 6px rgba(35, 135, 221, 0.85),
    0 0 16px rgba(35, 135, 221, 0.55),
    0 0 28px rgba(35, 135, 221, 0.35);
  opacity: 0.95;
}

.ai-img {
  width: min(320px, 90%);
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  filter: contrast(1.1);
}

.ai-img.flip-x {
  transform: scaleX(-1);
}

.ai-title {
  margin: 0;
}

.ai-subtext {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .ai-col:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 14px;
    right: 14px;
    width: auto;
    height: 1px;
    background: rgba(210, 253, 255, 0.95);
    box-shadow: var(--glow-shadow);
    opacity: 0.95;
  }
}

/****
 * 10) CUSTOMERS / TESTIMONIALS (DARK SECTION + VIDEO)
 ****/
.customers-section {
  max-width: none;
  padding: 56px 16px;
}

.customers-title-fullwidth {
  width: 100%;
  background: #0c0c10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}

.customers-title-fullwidth-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 16px;
}

.customers-title-fullwidth h2 {
  margin: 0;
  text-align: center;
}

.customers-wrap {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 901px) {
  .customers-wrap {
    grid-template-columns: 2fr 1fr;
    max-width: var(--maxw);
    margin: 0 auto;
  }

  .customers-video.landscape {
    display: grid;
    place-items: center;
    background: transparent;
  }

  .customers-video.landscape video {
    width: 80%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    background: #0b0b0e;
  }

  .customers-video.portrait {
    display: none;
  }

  .customers-aside {
    display: grid;
    place-items: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .customers-wrap {
    grid-template-columns: 1fr;
    max-width: var(--maxw);
    margin: 0 auto;
  }

  .customers-aside {
    order: 1;
    text-align: center;
  }

  .customers-video.portrait {
    order: 2;
    display: block;
  }

  .customers-video.portrait video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
    background: #0b0b0e;
  }

  .customers-video.landscape {
    display: none;
  }
}

.customers-aside .case-title {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.customers-aside .case-subtitle {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  letter-spacing: 0.2px;
}

.customers-aside .case-description {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.case-logo {
  display: block;
  margin: 8px auto 14px;
  max-width: 5rem;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

/****
 * 11) FOOTER
 ****/
footer {
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c0c10;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-size: 12px;
  line-height: 1.6;
}

/****
 * 12) RESPONSIVE NAV
 ****/
@media (max-width: 900px) {
  .nav-center {
    display: none;
  }

  #menuToggleBtn {
    display: inline-grid;
  }
}

@media (min-width: 901px) {
  #menuToggleBtn {
    display: none;
  }
}

/****
 * 13) GLOW CARDS (shared)
 * - Services page overview: .card--glow
 * - Home services cards: #services .card
 * - Pricing cards: #pricing .card
 ****/
.card--glow,
#services .card,
#pricing .card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--glow-border);
  background: var(--card-bg);
  background: linear-gradient(45deg, black, #3192d9);
  box-shadow: none;
  padding: 22px;
}

.card--glow::after,
#services .card::after,
#pricing .card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  box-shadow: var(--glow-shadow);
  opacity: 0.95;
}

.card--glow:hover,
#services .card:hover,
#pricing .card:hover {
  border-color: rgba(210, 253, 255, 1);
}

.card--glow:hover::after,
#services .card:hover::after,
#pricing .card:hover::after {
  opacity: 1;
  box-shadow: var(--glow-shadow-hover);
}

.card--glow h3,
#services .card h3,
#pricing .card h3 {
  color: rgb(210 232 248);
  font-size: 1.5em;
  letter-spacing: 0.2px;
}

#services .card:hover h3,
#pricing .card:hover h3 {
  text-shadow: 0 0 8px rgba(35, 135, 221, 0.85),
    0 0 18px rgba(35, 135, 221, 0.55),
    0 0 34px rgba(35, 135, 221, 0.32);
}

#services .services-grid,
#services .services-col {
  overflow: visible;
}

#services .services-grid {
  gap: 28px;
  margin-top: 24px;
}

#services .services-col {
  gap: 22px;
}

/****
 * 14) SERVICES PAGE (./services/index.html)
 ****/
.page-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 16px 24px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.hero-badge {
  margin: 0 auto;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.5px;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65;
  max-width: 820px;
  margin-inline: auto;
}

.lead {
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.service-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(41, 151, 255, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.service-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 901px) {
  .service-inner {
    grid-template-columns: 42% 58%;
  }

  .service-inner.reverse {
    grid-template-columns: 58% 42%;
  }
}

.service-media {
  display: grid;
  place-items: center;
  padding: 34px 18px;
  background: rgba(255, 255, 255, 0.02);
  background: linear-gradient(45deg, black, #3192d9);
}

.service-media .icon-badge {
  width: min(240px, 65%);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.service-content {
  padding: 40px 18px;
  display: grid;
  gap: 16px;
  align-content: center;
}

@media (min-width: 901px) {
  .service-content {
    padding: 56px 44px;
  }

  .service-inner.reverse .service-content {
    order: -1;
  }
}

.service-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.service-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 60ch;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 6px;
}

@media (min-width: 901px) {
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mini {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
  padding: 14px 14px;
}

.mini h4 {
  margin: 0 0 8px;
  font-size: 13px;
  color: rgb(210 232 248);
  letter-spacing: 0.2px;
}

.mini ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  justify-content: flex-start;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(210, 253, 255, 0.35);
  background: rgba(41, 151, 255, 0.10);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.cta:hover {
  transform: translateY(-1px);
  border-color: rgba(210, 253, 255, 0.65);
  background: rgba(41, 151, 255, 0.16);
}

/****
 * 15) UNLOCK-2 (home) split layout (fixed to match your HTML)
 ****/
#unlock-2.unlock-split {
  padding: 0 !important;
  overflow: hidden;
}

#unlock-2.unlock-split .feature-white-inner {
  max-width: 100%;
  margin: 0;
}

#unlock-2.unlock-split .feature-white-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 901px) {
  #unlock-2.unlock-split .feature-white-content {
    grid-template-columns: 45% 55%;
  }
}

#unlock-2.unlock-split .feature-white-content > :first-child {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

#unlock-2.unlock-split .feature-white-content > :first-child img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  background: #fff;
}

#unlock-2.unlock-split .feature-white-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10% 80px 60px;
}

#unlock-2.unlock-split .feature-white-title h2 {
  text-align: left;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  #unlock-2.unlock-split .feature-white-content > :first-child img {
    height: 300px;
  }

  #unlock-2.unlock-split .feature-white-text {
    padding: 40px 20px;
    text-align: center;
  }

  #unlock-2.unlock-split .feature-white-title h2 {
    text-align: center;
  }
}




/* Contact page */
.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

@media (min-width: 901px) {
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.contact-actions .cta {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 14px;
  font-size: 14px;
}

.contact-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.company-embed img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}


/****
 * Solutions topics + modal
 ****/
.solutions-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 901px) {
  .solutions-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.topic-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: var(--card-bg);
  background: linear-gradient(45deg, black, #3192d9);
  color: var(--text);
}

.topic-card .topic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.topic-title {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.1px;
}

.topic-tag {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(210, 253, 255, 0.25);
  background: rgba(41, 151, 255, 0.10);
  color: rgb(210 232 248);
  font-size: 12px;
}

.topic-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.topic-action {
  margin: 12px 0 0;
  color: rgb(210 232 248);
  font-size: 13px;
}

.topic-card:focus-visible {
  outline: 2px solid rgba(41, 151, 255, 0.85);
  outline-offset: 3px;
}

/* Modal scroll lock - prevent layout shift when scrollbar hides */
body.modal-open {
  overflow: hidden !important;
}

body.modal-open .nav-wrap {
  /* padding-right is applied via JS with exact scrollbar width */
  box-sizing: border-box;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal-dialog {
  position: relative;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  margin: 14px auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(41, 151, 255, 0.16), transparent 60%),
    rgba(15, 15, 19, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.55);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.modal-close {
  width: 34px;
  height: 34px;
}

.modal-body {
  padding: 14px 18px 8px;
  color: var(--text);
}

.modal-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.modal-body strong {
  color: var(--text);
}

.modal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}


/****
 * Data tables
 ****/
.table-wrap {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.data-table thead th {
  text-align: left;
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(210 232 248);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.data-table tbody td {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.data-table tbody td:first-child {
  color: var(--text);
  font-weight: 600;
}

.data-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.data-table .count {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}


/****
 * Resources page
 ****/
.resources-grid { margin-top: 6px; }
.resource-card { min-height: unset; padding: 20px; text-decoration: none; color: inherit; display: block; }
.resource-row { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.resource-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid rgba(210, 253, 255, 0.22); background: rgba(41, 151, 255, 0.10); }
.resource-title { margin: 0; font-size: 15px; letter-spacing: -0.1px; }
.resource-subtitle { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.video-preview { width: 100%; border-radius: 14px; border: 1px solid rgba(210, 253, 255, 0.16); background: radial-gradient(700px 240px at 30% 0%, rgba(41, 151, 255, 0.18), transparent 55%), rgba(255, 255, 255, 0.03); padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.play-badge { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; border: 1px solid rgba(210, 253, 255, 0.28); background: rgba(41, 151, 255, 0.14); flex: 0 0 auto; }
.video-chip { padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(210, 253, 255, 0.22); background: rgba(255, 255, 255, 0.04); color: rgb(210 232 248); font-size: 12px; white-space: nowrap; flex: 0 0 auto; }

.video-modal video { width: 100%; height: auto; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.10); background: #000; }
.text-muted { color: var(--muted); }
.small-muted { color: var(--muted); font-size: 13px; line-height: 1.55; }


/****
 * Pricing page
 ****/
.data-table--pricing { min-width: 760px; }
.data-table .col-check { width: 110px; text-align: center; }
.feature-check { width: 18px; height: 18px; accent-color: var(--accent); }
.pricing-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; text-align: center; }
.pricing-note a { color: rgb(210 232 248); text-decoration: underline; text-underline-offset: 3px; }


/* Home: Services cards horizontal layout */
#services .service-card-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

#services .service-card-media {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#services .service-card-content {
  flex: 1 1 auto;
  min-width: 0;
}

#services .service-card-content h3 {
  margin: 0 0 8px;
}

#services .service-card-content p {
  margin: 0;
}

@media (max-width: 600px) {
  #services .service-card-row {
    align-items: flex-start;
  }
}



/* v7: unlock-ai full-bleed image adjustments */
#unlock-ai {
  border-top: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  #unlock-ai {
    padding: 120px 56px 16px 0 !important;
  }
}
#unlock-ai .feature-white-inner {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/* end v7 unlock-ai adjustments */



/* v10: remove gap between unlock-ai and services */
#unlock-ai {
  border-top: 0 !important;
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
@media (min-width: 992px) {
  #unlock-ai {
    padding-bottom: 0 !important;
  }
}
#unlock-ai .feature-white-inner {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#unlock-ai img {
  display: block;
  margin-bottom: 0 !important;
}
#services {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
#services > *:first-child {
  margin-top: 0 !important;
}
/* end v10 gap removal */


/* v12: services spacing */
#services{margin-top: 0 !important;
    padding-top: 5rem !important;
    border-top: 0 !important;}
/* end v12 services spacing */


/* v13: ops-carousel section + carousel */
.psc-section{
  padding-top: 32px;
  padding-bottom: 32px;
}

.psc-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 992px){
  .psc-grid{
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 32px;
    align-items: start;
  }
  .psc-copy{
    position: sticky;
    top: 120px;
  }
}

.psc-carousel{
  position: relative;
}

.psc-viewport{
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(210, 253, 255, 0.20);
  background: rgba(255,255,255,0.02);
}

.psc-track{
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 420ms ease;
  will-change: transform;
  outline: none;
}

.psc-slide{
  min-width: 100%;
  margin: 0;
}

.psc-slide img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.psc-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(210, 253, 255, 0.35);
  background: rgba(10, 16, 25, 0.55);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
}

.psc-btn:hover{
  border-color: rgba(210, 253, 255, 0.65);
  background: rgba(41, 151, 255, 0.16);
}

.psc-prev{ left: 12px; }
.psc-next{ right: 12px; }

.psc-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.psc-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(210, 253, 255, 0.35);
  background: transparent;
  cursor: pointer;
}

.psc-dot[aria-current="true"]{
  background: rgba(210, 253, 255, 0.75);
}

.psc-title{
  margin: 0 0 8px 0;
  letter-spacing: 0.04em;
}

.psc-subtitle{
  margin: 0 0 12px 0;
  color: var(--muted);
}

.psc-text{
  margin: 0 0 16px 0;
  color: var(--text);
  opacity: 0.92;
}
/* end v13 ops-carousel */

/* v14: solutions logo */
.solutions-logo{
  display:flex;
  justify-content:center;
  margin: 0 0 14px 0;
}
.solutions-logo-img{
  width: 88px;
  height: 88px;
  object-fit: contain;
}
/* end v14 solutions logo */


/* v.18: Solutions page - full width service-content + 4-column solutions grid */
.solutions-page .service-content {
  width: 100%;
  max-width: none;
  flex: 0 0 100%;
}

.solutions-page .solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Make each clickable solution card stretch nicely within the grid */
.solutions-page .solutions-grid a,
.solutions-page .solutions-grid button,
.solutions-page .solutions-grid .service-item,
.solutions-page .solutions-grid .feature,
.solutions-page .solutions-grid .feature-white-inner {
  width: 100%;
}

@media (max-width: 1199.98px) {
  .solutions-page .solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .solutions-page .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .solutions-page .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* v.22: Solutions page - normalize topic-card vertical flow */
.solutions-topics .topic-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.solutions-topics .topic-card .topic-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.solutions-topics .topic-card .topic-summary,
.solutions-topics .topic-card .topic-action {
  margin-top: 12px;
}

/* v.23: Solutions overview section (3 columns, icons, Read More) */
.solutions-page .solutions-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

@media (max-width: 991.98px) {
  .solutions-page .solutions-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .solutions-page .solutions-grid--3 {
    grid-template-columns: 1fr;
  }
}

.solutions-page .topic-card--static {
  cursor: default;
}

.solutions-page .topic-card--static .topic-head-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.solutions-page .topic-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(160, 220, 255, 1);
}

.solutions-page .topic-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.solutions-page .topic-actions {
  margin-top: auto;
  padding-top: 14px;
}

.solutions-page .topic-readmore {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  border: 1px solid rgba(140, 220, 255, .6);
  background: rgba(0,0,0,.25);
  color: #e9f7ff;
}

.solutions-page .topic-readmore:hover {
  background: rgba(0,0,0,.4);
  border-color: rgba(140, 220, 255, .9);
}



/* v.31: Solution cards with images - HORIZONTAL layout (image left, content right) */
.solutions-topics .topic-card.topic-card--with-image {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.solutions-topics .topic-card--with-image .topic-image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.solutions-topics .topic-card--with-image .topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.solutions-topics .topic-card--with-image:hover .topic-image img {
  transform: scale(1.05);
}

.solutions-topics .topic-card--with-image .topic-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  text-align: left;
}

.solutions-topics .topic-card--with-image .topic-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.solutions-topics .topic-card--with-image .topic-summary {
  margin-top: 10px;
  flex: 1;
}

.solutions-topics .topic-card--with-image .topic-action {
  margin-top: auto;
  padding-top: 10px;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 600px) {
  .solutions-topics .topic-card.topic-card--with-image {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .solutions-topics .topic-card--with-image .topic-image {
    width: 100px;
    height: 100px;
  }

  .solutions-topics .topic-card--with-image .topic-head {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .solutions-topics .topic-card--with-image .topic-summary {
    text-align: center;
  }
}



/* =====================================================
   SOLUTION CLASSES (copy of service-* classes)
   Used in: solutions/index.php
   ===================================================== */
.solution-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(41, 151, 255, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 901px) {
  .solution-inner {
    /*grid-template-columns: 42% 58%;*/
  }

  .solution-inner.reverse {
    /*grid-template-columns: 58% 42%;*/
  }
}

.solution-media {
  display: grid;
  place-items: center;
  padding: 34px 18px;
  background: rgba(255, 255, 255, 0.02);
}

.solution-media .icon-badge {
  width: min(240px, 65%);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.solution-content {
  padding: 40px 18px;
  display: grid;
  gap: 16px;
  align-content: center;
}

@media (min-width: 901px) {
  .solution-content {
    padding: 56px 44px;
  }

  .solution-inner.reverse .solution-content {
    order: -1;
  }
}

.solution-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.solution-title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.solution-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 60ch;
}

/* =====================================================
   CONTACT CLASSES (copy of service-* classes)
   Used in: contact/index.php
   ===================================================== */
.contact-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(41, 151, 255, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 901px) {
  .contact-inner {
    /*grid-template-columns: 42% 58%;*/
  }

  .contact-inner.reverse {
    /*grid-template-columns: 58% 42%;*/
  }
}

.contact-media {
  display: grid;
  place-items: center;
  padding: 34px 18px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-media .icon-badge {
  width: min(240px, 65%);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.contact-content {
  padding: 40px 18px;
  display: grid;
  gap: 16px;
  align-content: center;
}

@media (min-width: 901px) {
  .contact-content {
    padding: 56px 44px;
  }

  .contact-inner.reverse .contact-content {
    order: -1;
  }
}

.contact-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.contact-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 60ch;
}

/* =====================================================
   CASESTUDY CLASSES (copy of service-* classes)
   Used in: case-studies/index.php
   ===================================================== */
.casestudy-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(41, 151, 255, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.casestudy-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 901px) {
  .casestudy-inner {
    /*grid-template-columns: 42% 58%;*/
  }

  .casestudy-inner.reverse {
    /*grid-template-columns: 58% 42%;*/
  }
}

.casestudy-media {
  display: grid;
  place-items: center;
  padding: 34px 18px;
  background: rgba(255, 255, 255, 0.02);
}

.casestudy-media .icon-badge {
  width: min(240px, 65%);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.casestudy-content {
  padding: 40px 18px;
  display: grid;
  gap: 16px;
  align-content: center;
}

@media (min-width: 901px) {
  .casestudy-content {
    padding: 56px 44px;
  }

  .casestudy-inner.reverse .casestudy-content {
    order: -1;
  }
}

.casestudy-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.casestudy-title {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.casestudy-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 60ch;
}
