/* ============================================
   KVetoBusiness – Custom styles (separate from HTML)
   ============================================ */

@import url("css/main.css");

:root {
  --navy:    #0a1428;
  --deep:    #030712;
  --blue:    #00d4ff;
  --blue-glow: rgba(0, 212, 255, 0.22);
  --glass:   rgba(10, 20, 40, 0.55);
  --text:    #ffffff;
  --gray:    #ffffff;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  background: var(--deep);
  color: #ffffff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 115%;
}

/* Bootstrap theme tweaks */
.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-bg: #00b8e6;
  --bs-btn-hover-border-color: #00b8e6;
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
}

.btn-outline-info {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-bg: rgba(0, 212, 255, 0.1);
  --bs-btn-hover-border-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
}

.form-control {
  background: rgba(10, 20, 40, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.22);
  color: #ffffff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-control:focus {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.12);
  background: rgba(10, 20, 40, 0.78);
  color: #ffffff;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 1.25rem;
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, var(--blue) 60deg, var(--blue) 120deg, transparent 180deg);
  opacity: 0.7;
  animation: rotate 5s linear infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.particle {
  position: absolute;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 20px var(--blue-glow);
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0%   { transform: translateY(120vh) scale(0.3); opacity: 0; }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.85; }
  100% { transform: translateY(-30vh) scale(0.6); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.delay-100 { transition-delay: 0.10s; }
.reveal.delay-200 { transition-delay: 0.20s; }
.reveal.delay-300 { transition-delay: 0.30s; }

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.card-hover:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 25px 50px -12px rgba(0, 212, 255, 0.25);
}

/* ── Services section (card grid, image on top) ──────────────────── */
.services-section {
  position: relative;
  padding: clamp(2rem, 8vw, 4rem) 0;
  background: linear-gradient(180deg, #0a1428 0%, #061018 50%, #0a1428 100%);
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 10%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0, 212, 255, 0.03), transparent 40%, rgba(0, 212, 255, 0.02));
  opacity: 0.95;
}

.services-section .container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.services-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.services-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.services-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.services-sub {
  margin: 0.9rem auto 0;
  max-width: 48rem;
  color: #ffffff;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Services tiers (L1/L2/L3) */
.tier-card {
  height: 100%;
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.tier-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse 60% 45% at 20% 15%, rgba(0, 212, 255, 0.18) 0%, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.tier-card-featured {
  border-color: rgba(0, 212, 255, 0.14);
  background: rgba(15, 23, 42, 0.72);
}

.tier-card-featured::before {
  background: radial-gradient(ellipse 60% 45% at 20% 15%, rgba(0, 212, 255, 0.18) 0%, transparent 55%);
  opacity: 0.9;
}

.tier-ribbon {
  position: absolute;
  top: 18px;
  right: -48px;
  transform: rotate(45deg);
  width: 180px;
  text-align: center;
  padding: 0.45rem 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.22);
  z-index: 2;
}

.tier-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  z-index: 1;
}

.tier-head-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.tier-subtitle {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.25;
}

.tier-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.16);
  margin: 0.75rem 0 1rem;
  z-index: 1;
}

.tier-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.75) 0%, rgba(3, 7, 18, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

.tier-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.92);
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.tier-card:hover .tier-img {
  transform: scale(1.06);
  filter: saturate(0.95) contrast(1.08) brightness(0.98);
}

.tier-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 44px;
  padding: 0 0.65rem;
  border-radius: 9999px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.22);
}

.tier-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tier-desc {
  position: relative;
  margin: 0 0 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  z-index: 1;
}

.tier-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  z-index: 1;
}

.tier-list li {
  padding-left: 1.35rem;
  position: relative;
  color: #ffffff;
  line-height: 1.5;
}

.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(0, 212, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.tier-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 212, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.tier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.10);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-pill-strong {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.14);
}

.tier-cta {
  border-radius: 9999px;
  font-weight: 900;
  padding: 0.7rem 1rem;
  line-height: 1;
  white-space: nowrap;
}

.services-strip {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding: 1.25rem 1.25rem;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.services-strip-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.services-strip-text {
  color: #ffffff;
  line-height: 1.6;
}

.services-strip-btn {
  border-radius: 9999px;
  font-weight: 800;
  padding: 0.8rem 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00d4ff, transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(0, 212, 255, 0.06);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.55;
}

/* ── Why Trust KVetoBusiness (Trust Section) ─────────────────────── */
.trust-section {
  position: relative;
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  background: #030712;
}

.trust-section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #061018 0%, #0a1428 35%, #061018 100%);
  pointer-events: none;
}

.trust-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 75% 25%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 20% 85%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  opacity: 0.95;
}

.trust-inner {
  position: relative;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* New trust layout (split + cards) */
.trust-split {
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.trust-lead {
  margin: 0.9rem 0 1.25rem;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 34rem;
}

.trust-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.75rem;
  max-width: 34rem;
}

.trust-check li {
  position: relative;
  padding-left: 1.85rem;
  color: #ffffff;
  line-height: 1.55;
}

.trust-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.02em;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.14);
  border: 1px solid rgba(0, 212, 255, 0.22);
  color: #ffffff;
  font-weight: 900;
}

.trust-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.trust-btn {
  border-radius: 9999px;
  font-weight: 900;
  padding: 0.9rem 1.25rem;
}

.trust-card {
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.25rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(0, 212, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse 65% 50% at 15% 20%, rgba(0, 212, 255, 0.14) 0%, transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.45);
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.14);
  border: 1px solid rgba(0, 212, 255, 0.22);
  font-size: 1.4rem;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.06);
}

.trust-card-body {
  position: relative;
  z-index: 1;
}

.trust-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.trust-card-desc {
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .trust-actions { justify-content: center; }
  .trust-lead, .trust-check { max-width: none; }
}

.trust-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.trust-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.25);
}

.trust-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00d4ff;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
  fill: currentColor;
  stroke: none;
}

.trust-item-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.trust-item-desc {
  font-size: 0.9375rem;
  color: #ffffff;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  max-width: 280px;
}

.trust-item-btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, #00d4ff 0%, #0099cc 100%);
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: auto;
}

.trust-item-btn:hover {
  opacity: 0.95;
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.trust-counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 2.5rem 1.5rem;
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 1.25rem;
}

.trust-counter {
  text-align: center;
  min-width: 140px;
}

.trust-counter-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-counter-suffix {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-left: 1px;
}

.trust-counter-label {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0.35rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Industries section ─────────────────────────────────────────── */
.industries-section {
  position: relative;
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a1428 0%, #061018 30%, #0a1428 70%, #070e1e 100%);
  pointer-events: none;
}

.industries-inner {
  position: relative;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.industries-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.industries-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.industries-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.industries-sub {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.industries-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.industries-view-all {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(10, 20, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.industries-view-all:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

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

.industry-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 280px;
  border-radius: 1.5rem;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  isolation: isolate;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
}

/* Per-card gradient backgrounds (reference: dark navy, blue, green, green-gray) */
.industry-card-1 {
  background: linear-gradient(135deg, #0c1929 0%, #0f2847 50%, #0a1628 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.industry-card-2 {
  background: linear-gradient(135deg, #0a1f3a 0%, #0d3d5c 50%, #0a2840 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.industry-card-3 {
  background: linear-gradient(135deg, #0d2a1a 0%, #0f3d28 50%, #0a2418 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.industry-card-4 {
  background: linear-gradient(135deg, #141e28 0%, #1a2f3d 50%, #0f1c26 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.industry-card-content {
  flex: 1;
  min-width: 0;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border-radius: 1.5rem 0 0 1.5rem;
  z-index: 1;
}

.industry-card-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 52%;
  max-width: 320px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 0 1rem 1rem;
  overflow: visible;
  border-radius: 0 1.5rem 1.5rem 0;
}

/* Soft fade so image blends into card on the left */
.industry-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  left: 0;
  width: 45%;
  pointer-events: none;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
  border-radius: 0 1.5rem 1.5rem 0;
}

/* Reference style: large image, extends past right edge, light/translucent look */
.industry-card-image {
  position: relative;
  z-index: 0;
  width: 130%;
  max-width: 130%;
  height: auto;
  max-height: 260px;
  min-height: 200px;
  object-fit: contain;
  object-position: right center;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  /* Light, slightly monochromatic blend like reference product shots */
  filter: brightness(1.25) contrast(0.92) saturate(0.5);
  opacity: 0.82;
  /* Soft left edge blends into card */
  mask-image: linear-gradient(to right, transparent 0%, black 28%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28%, black 100%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.industry-card:hover .industry-card-image {
  transform: scale(1.03);
  opacity: 0.9;
}

.industry-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  padding-bottom: 0;
  border-bottom: none;
}

.industry-brief {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.65;
  max-width: 34rem;
}

.industry-block {
  margin-bottom: 0.85rem;
  display: block;
}

.industry-block:last-of-type {
  margin-bottom: 1rem;
}

.industry-block-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin: 0 0 0.35rem;
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-list li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.4;
}

.industry-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.industry-text {
  font-size: 0.8rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.45;
}

.industry-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  background: none;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: auto;
}

.industry-cta-arrow {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.9;
}

.industry-cta:hover {
  color: #fff;
  gap: 0.65rem;
}

.industry-cta:hover .industry-cta-arrow {
  opacity: 1;
}

@media (max-width: 700px) {
  .industry-card {
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
  }

  .industry-card-content {
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .industry-card-image-wrap {
    width: 100%;
    max-width: none;
    min-height: 180px;
    order: -1;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .industry-card-image-wrap::after {
    width: 60%;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .industry-card-image {
    width: 100%;
    max-width: 100%;
    max-height: 180px;
    min-height: auto;
    object-position: center center;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  }
}

/* ── Case Studies (Problem → Risk → Solution → Outcome) ─────────── */
.case-studies-section {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.case-studies-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 31, 63, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #0a1428 0%, #030712 100%);
  pointer-events: none;
}

.case-studies-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.case-studies-head {
  text-align: center;
  margin-bottom: 3rem;
}

.case-studies-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.case-studies-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

.case-studies-sub {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 36rem;
  margin: 0 auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1320px;
}

@media (min-width: 900px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.case-study-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Hero: image area + dark overlay (reference style) */
.case-study-card-hero {
  position: relative;
  min-height: 200px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.case-study-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.case-study-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.4) 45%, transparent 70%);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.case-study-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.case-study-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.case-study-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px var(--blue-glow);
}

.case-study-card-arrow:hover {
  background: #00b8e6;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 20px var(--blue-glow);
}

.case-study-card-body {
  position: relative;
  padding: 1.25rem 1.75rem;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  border-radius: 0 0 24px 24px;
}

.case-study-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.4);
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.case-study-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

.case-study-industry {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(0, 212, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  width: fit-content;
}

.case-study-flow {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.case-study-step-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.case-study-step-text {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.case-study-metrics {
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-top: 0.25rem;
}

.case-study-metric {
  font-weight: 700;
  color: #ffffff;
}

.case-study-quote {
  margin: 0;
  padding: 1rem 0 0 0;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.case-study-quote p {
  font-size: 0.95rem;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}

.case-study-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: #ffffff;
}

/* ── Awards & certificates (home) ───────────────────────────────── */
.awards-section {
  position: relative;
  padding: 3.5rem 0 3.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.5) 0%, #0c1223 100%);
  overflow: hidden;
}

.awards-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.awards-head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.awards-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.awards-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.awards-sub {
  font-size: 1rem;
  color: #ffffff;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.55;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.awards-card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.awards-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.awards-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(10, 20, 40, 0.8) 100%);
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
}

.awards-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.35rem;
}
.awards-card-meta {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.45;
}

/* ── Team page ───────────────────────────────────────────────────── */
.page-team .team-page-main {
  padding-bottom: 0;
}

.team-expertise-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-roster-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.35) 0%, transparent 100%);
}

.team-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.team-section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.team-section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.team-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.team-section-lead {
  color: #ffffff;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.55;
}

.team-expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .team-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .team-expertise-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-expertise-card {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  height: 100%;
  transition: border-color 0.2s ease;
}

.team-expertise-card:hover {
  border-color: rgba(0, 212, 255, 0.28);
}

.team-expertise-icon {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.team-expertise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.team-expertise-card p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.team-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-member-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.25rem;
}

.team-member-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0f172a;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 1rem 1rem 0.25rem;
}

.team-member-role {
  font-size: 0.85rem;
  color: #ffffff;
  margin: 0 1rem;
  line-height: 1.4;
}

.team-cta-bar {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 18, 0.9);
}

.team-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.team-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* ── Blog (theme colors: cyan #00d4ff, dark blue) ─────────────────── */
.blog-section {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #0a1428 0%, #061018 50%, #0a1428 100%);
  overflow: hidden;
}

.blog-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.blog-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blog-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.blog-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.blog-view-more-wrap {
  flex-shrink: 0;
}

.blog-view-more {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(10, 20, 40, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-view-more:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.25);
}

.blog-card-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  margin: 12px;
  margin-bottom: 0;
}

.blog-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 50%, #020617 100%);
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #00d4ff;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  z-index: 1;
}

.blog-card-cat-highlight {
  background: #00d4ff;
  color: #ffffff;
}

.blog-card-details {
  padding: 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
}

.blog-card__link:hover .blog-card-title {
  color: #00d4ff;
}

.blog-card__link:focus-visible {
  outline: 2px solid rgba(0, 212, 255, 0.65);
  outline-offset: 3px;
}

.blog-card-details-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.blog-card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: #ffffff;
}

.blog-card-arrow {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #00d4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.4);
  align-self: center;
  margin-top: 0.125rem;
}

.blog-card-arrow::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: 2px solid #0a1428;
  border-right: 2px solid #0a1428;
  transform: translateX(-1px) rotate(45deg);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #ffffff;
}

.blog-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 31, 63, 0.5) 100%);
  flex-shrink: 0;
}

.blog-date {
  font-size: 0.8rem;
  color: #ffffff;
}

.blog-post-wrap {
  max-width: 48rem;
  margin: 1rem auto 0;
  padding: 0 1.25rem 4rem;
  position: relative;
  z-index: 1;
}

.blog-post-article {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 1rem;
  padding: 1.75rem 1.35rem 2.25rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .blog-post-article {
    padding: 2.25rem 2.25rem 2.75rem;
  }
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s ease;
}

.blog-post-back:hover {
  color: #00d4ff;
}

.blog-post-back::before {
  content: '←';
  font-size: 1rem;
  line-height: 1;
}

.blog-post-article .blog-post-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a1428;
  background: #00d4ff;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.blog-post-article .blog-post-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-article h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  margin: 1.75rem 0 0.65rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.blog-post-article h2:first-of-type {
  margin-top: 0;
}

.blog-post-article p,
.blog-post-article li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.blog-post-article p {
  margin: 0 0 1rem;
}

.blog-post-article ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
}

.blog-post-article li {
  margin-bottom: 0.5rem;
}

.blog-post-article .blog-post-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
}

.blog-post-article code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: rgba(0, 212, 255, 0.12);
  color: #b8ecff;
}

/* ── Hero (cyber-themed: binary rain, scan line, hex grid) ───────── */
.hero-simple {
  background: #030712;
  position: relative;
}

/* Hero overlay layers (replaces Tailwind absolute/inset utilities) */
.hero-cyber-glow,
.hero-cyber-circuit,
.hero-hex-grid,
.hero-grid-simple,
.hero-binary-rain,
#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-binary-rain {
  overflow: hidden;
}

/* Hero: video background */
.hero-video-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.65);
  transform: scale(1.02);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(0, 212, 255, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.35) 0%, rgba(3, 7, 18, 0.85) 70%, rgba(3, 7, 18, 0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 1.25rem;
  font-size: 3.5rem;
}

.hero-accent {
  color: #ffffff;
}

.hero-subtitle {
  margin: 0 auto 2rem;
  max-width: 52rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  line-height: 1.6;
}

.hero-lead {
  margin: 0 auto 1.75rem;
  color: #ffffff;
}

.hero-lead a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-lead a:hover {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 0.95rem 1.4rem;
  border-radius: 9999px;
  font-weight: 700;
}

.hero-btn-primary {
  box-shadow: 0 18px 50px rgba(0, 212, 255, 0.22);
}

.hero-btn-primary:hover {
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.35);
  transform: translateY(-1px);
}

.hero-btn-secondary:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
}

/* Binary rain: falling 0s and 1s (Matrix / hacker style) */
.hero-binary-rain {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  user-select: none;
}

.hero-binary-digit {
  position: absolute;
  top: -1em;
  animation: binaryFall linear infinite;
  pointer-events: none;
}

@keyframes binaryFall {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}

/* Security scan line (thin line moving top to bottom like a system scan) */
.hero-scan-line {
  overflow: hidden;
}

.hero-scan-line-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.3) 20%,
    rgba(0, 212, 255, 0.7) 50%,
    rgba(0, 212, 255, 0.3) 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  animation: scanLineDown 5s linear infinite;
}

@keyframes scanLineDown {
  0% { top: 0; }
  100% { top: 100%; }
}

/* Hexagon / security grid (cyber dashboard style) */
.hero-hex-grid {
  background-image:
    radial-gradient(circle at center, rgba(0, 212, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 28px;
  background-position: 0 0, 16px 14px;
  opacity: 0.5;
  animation: circuitPulse 4s ease-in-out infinite;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.65; }
}

/* Cybersecurity: circuit / network lines (diagonal data flow) */
.hero-cyber-circuit {
  background-image:
    linear-gradient(105deg, transparent 48%, rgba(0, 212, 255, 0.08) 49%, rgba(0, 212, 255, 0.08) 51%, transparent 52%),
    linear-gradient(75deg, transparent 48%, rgba(0, 212, 255, 0.06) 49%, rgba(0, 212, 255, 0.06) 51%, transparent 52%);
  background-size: 120px 80px, 80px 120px;
  animation: circuitFlow 25s linear infinite;
  opacity: 0.8;
}

@keyframes circuitFlow {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 120px 80px, 80px 120px; }
}

/* Central shield-style glow (secure core) */
.hero-cyber-glow {
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(0, 212, 255, 0.02) 40%,
    transparent 70%
  );
  animation: cyberGlow 6s ease-in-out infinite;
}

@keyframes cyberGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-grid-simple {
  background-image:
    linear-gradient(to right, rgba(0, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 212, 255, 0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gridMoveSimple 90s linear infinite;
}

@keyframes gridMoveSimple {
  0% { background-position: 0 0; }
  100% { background-position: 70px 70px; }
}

/* ── Hero full animated background (legacy, kept for reference) ───── */
.hero-section {
  background: #000000;
}

/* 1. Shifting gradient */
.hero-bg-gradient {
  background: linear-gradient(
    125deg,
    #000000 0%,
    #0a0a0a 25%,
    #050505 50%,
    #0a0a0a 75%,
    #000000 100%
  );
  background-size: 400% 400%;
  animation: heroGradientShift 8s ease-in-out infinite;
}

@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 2. Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-orb-1 {
  width: 60vmax;
  height: 60vmax;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation: orbFloat1 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 50vmax;
  height: 50vmax;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.3) 0%, transparent 70%);
  bottom: -15%;
  right: -10%;
  animation: orbFloat2 12s ease-in-out infinite;
}

.hero-orb-3 {
  width: 40vmax;
  height: 40vmax;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 9s ease-in-out infinite;
}

.hero-orb-4 {
  width: 35vmax;
  height: 35vmax;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28) 0%, transparent 70%);
  top: 20%;
  right: 20%;
  animation: orbFloat4 11s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15%, 20%) scale(1.12); }
  66% { transform: translate(-10%, -12%) scale(0.9); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-18%, -15%) scale(1.15); }
  66% { transform: translate(12%, 10%) scale(0.88); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-45%, -55%) scale(1.2); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-18%, 12%); }
  75% { transform: translate(12%, -18%); }
}

/* 3. Moving grid */
.hero-grid {
  background-image:
    linear-gradient(to right, rgba(0, 212, 255, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 212, 255, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.7;
  animation: gridMove 15s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* 4. Scan line */
.hero-scan {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 212, 255, 0.06) 50%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: scanMove 4s linear infinite;
  opacity: 0.8;
}

@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}

/* ── Header (dark theme) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  overflow: visible;
}

@media (min-width: 769px) {
  .header-menu-btn {
    display: none !important;
  }

  .header-logo {
    flex-shrink: 0;
  }

  .header-nav-wrap {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-cta--toolbar {
    flex-shrink: 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  overflow: visible;
  min-width: 0;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0.25rem 0;
  flex-shrink: 0;
  min-height: 52px;
}

.header-logo img {
  display: block;
  height: 72px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.header-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.04);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.header-menu-btn:hover {
  background: rgba(15, 23, 42, 0.08);
}

.header-menu-btn__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.nav-open .header-menu-btn__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .header-menu-btn__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .header-menu-btn__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.header-nav-scrim {
  display: none;
}

.header-nav-panel {
  display: contents;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  padding: 0.4rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 42px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.04);
  overflow: visible;
}

.header-nav-dropdown {
  position: relative;
}

.header-nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  line-height: inherit;
}

.header-nav-dropdown__toggle:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.08);
}

.header-nav-dropdown__toggle.active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.22);
}

.header-nav-dropdown__chev {
  font-size: 0.65em;
  opacity: 0.85;
}

.header-nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 16.5rem;
  padding: 0.4rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.header-nav-dropdown:hover .header-nav-dropdown__panel,
.header-nav-dropdown:focus-within .header-nav-dropdown__panel,
.header-nav-dropdown.is-open .header-nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-nav-dropdown__panel a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: #0f172a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease;
}

.header-nav-dropdown__panel a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #0f172a;
}

.header-nav a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.header-nav a:hover {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.08);
}

.header-nav a.active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.22);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(120deg, #1a6ba3 0%, #00b4d8 50%, #00d4ff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 180, 216, 0.35);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.header-cta:hover {
  opacity: 0.95;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.45);
  transform: translateY(-1px);
}

.header-cta.is-current {
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.45), 0 4px 20px rgba(0, 180, 216, 0.35);
}

.header-cta--drawer {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    display: block;
    padding: 0;
    max-width: none;
    margin: 0;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 200;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  }

  .header-logo { min-height: 46px; }
  .header-logo img { height: 56px; max-height: 56px; }

  .header-menu-btn {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .header-cta--toolbar {
    display: none !important;
  }

  .header-cta--drawer {
    display: inline-flex;
    width: auto;
    align-self: stretch;
    margin: 1rem 0.75rem 0;
    margin-top: auto;
    justify-content: center;
    text-align: center;
  }

  .header-nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    z-index: 90;
    display: block;
    margin: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
  }

  .header-nav-wrap.is-open {
    pointer-events: auto;
  }

  .header-nav-scrim {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .header-nav-wrap.is-open .header-nav-scrim {
    opacity: 1;
  }

  .header-nav-panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 2;
    width: min(88vw, 300px);
    max-width: 100%;
    height: 100%;
    max-height: 100dvh;
    background: #fff;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem 0 1.25rem;
  }

  .header-nav-wrap.is-open .header-nav-panel {
    transform: translate3d(0, 0, 0);
  }

  .header-nav {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    min-height: 0;
  }

  .header-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .header-nav-dropdown {
    width: 100%;
  }

  .header-nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }

  .header-nav-dropdown__panel {
    position: static;
    min-width: 0;
    margin: 0.25rem 0 0.5rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    border: none;
    box-shadow: none;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .header-nav-dropdown.is-open .header-nav-dropdown__panel {
    display: block;
  }

  .header-nav-dropdown__panel a {
    padding: 0.6rem 0.75rem;
  }

  .header-nav a.active {
    color: #0c4a6e;
    background: rgba(0, 180, 216, 0.14);
    box-shadow: none;
  }

  .header-nav-dropdown__toggle.active {
    color: #0c4a6e;
    background: rgba(0, 180, 216, 0.14);
    box-shadow: none;
  }
}

body.nav-drawer-open {
  overflow: hidden;
}

/* Loader (replaces Tailwind utilities) */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030712;
  transition: opacity 0.7s ease;
}

.site-loader-spinner {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  border: 4px solid rgba(148, 163, 184, 0.45);
  border-top-color: #ffffff;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Threats section */
.threats-section {
  padding: clamp(2rem, 8vw, 4rem) 0;
  background: linear-gradient(180deg, #030712 0%, #0a1428 100%);
}

.threats-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.threats-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.6rem;
}

.threats-title {
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.threats-sub {
  margin: 0 auto;
  max-width: 44rem;
  color: #ffffff;
  line-height: 1.6;
}

.threat-card {
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.threat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.28);
}

.threat-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.22);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.threat-name {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.threat-desc {
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
}

.threats-strip {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding: 1.25rem 1.25rem;
  border-radius: 18px;
}

.threats-strip-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.threats-strip-text {
  color: #ffffff;
  line-height: 1.6;
}

.threats-strip-btn {
  border-radius: 9999px;
  font-weight: 700;
  padding: 0.8rem 1.2rem;
}

/* CTA section (replaces Tailwind utilities) */
#cta {
  padding: clamp(2rem, 8vw, 4rem) 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.5) 0%, #0c1223 100%);
}

.cta-inner {
  max-width: 980px;
}

.cta-title {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.cta-sub {
  margin: 0 auto 2rem;
  max-width: 42rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.cta-btn {
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  font-weight: 800;
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.18);
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.75rem;
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.5) 0%, #0c1223 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.12);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 1rem;
  text-decoration: none;
  background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}

.footer-text {
  margin: 0 0 1rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 30rem;
}

.footer-mini {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-mini-item {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-mini-item a {
  color: #ffffff;
  text-decoration: none;
}

.footer-mini-item a:hover {
  color: #ffffff;
}

.footer-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-card {
  padding: 1.25rem;
  border-radius: 18px;
}

.footer-card-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.footer-card-text {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-form .btn {
  border-radius: 12px;
  font-weight: 800;
}

.footer-form .form-control {
  border-radius: 12px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.14);
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: inline-flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links--powered {
  font-size: 0.78rem;
  line-height: 1.35;
  max-width: min(100%, 14rem);
  text-align: right;
}

.footer-bottom-links--powered a {
  display: inline-block;
}

/* ── Services hub (sidebar + panels) ── */
.page-services .kveto-services-layout {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kveto-panel-media {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.kveto-panel--consulting .kveto-panel-media {
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(34, 211, 238, 0.08);
}

.kveto-panel--infra .kveto-panel-media {
  border-color: rgba(52, 211, 153, 0.28);
}

.kveto-panel--products .kveto-panel-media {
  border-color: rgba(167, 139, 250, 0.3);
}

.kveto-panel--bpo .kveto-panel-media {
  border-color: rgba(251, 191, 36, 0.28);
}

.kveto-panel-media img {
  width: 100%;
  height: auto;
  max-height: min(360px, 42vw);
  object-fit: cover;
  display: block;
}

.kveto-panel-body > h2:first-child {
  margin-top: 0;
}

.kveto-about-media {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.kveto-about-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.kveto-services-layout {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: 2rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  align-items: start;
}

.kveto-services-sidebar {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  padding-right: 0.25rem;
}

.kveto-services-sidebar button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.85rem;
  border: none;
  border-radius: 10px;
  border-left: 3px solid transparent;
  background: transparent;
  color: #ffffff;
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.35;
}

.kveto-services-sidebar .svc-nav-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
}

.kveto-services-sidebar .svc-nav-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.3;
}

.kveto-services-sidebar button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.kveto-services-sidebar button:hover .svc-nav-meta {
  color: #ffffff;
}

.kveto-services-sidebar button.is-active {
  background: rgba(0, 212, 255, 0.14);
  color: #e0f2fe;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.28);
}

.kveto-services-sidebar button.is-active .svc-nav-meta {
  color: #ffffff;
}

.kveto-services-sidebar button[data-svc-pattern="narrative-callout"].is-active {
  border-left-color: #22d3ee;
}

.kveto-services-sidebar button[data-svc-pattern="split-aside"].is-active {
  border-left-color: #34d399;
}

.kveto-services-sidebar button[data-svc-pattern="product-chips"].is-active {
  border-left-color: #a78bfa;
}

.kveto-services-sidebar button[data-svc-pattern="card-matrix"].is-active {
  border-left-color: #fbbf24;
}

.kveto-services-main {
  min-width: 0;
}

.kveto-layout-hint {
  font-size: 0.88rem;
  color: #ffffff;
  margin: 0 0 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.45;
}

.kveto-panel {
  display: none;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.65;
}

.kveto-panel.is-active {
  display: block;
}

.kveto-panel--consulting .kveto-panel-body {
  padding: 0.25rem 0 0;
  border-radius: 0 0 14px 14px;
}

.kveto-panel--consulting .kveto-lead {
  max-width: 40rem;
}

.kveto-panel--consulting .kveto-callout {
  border-left: 3px solid #22d3ee;
}

.kveto-panel--infra .kveto-panel-body {
  padding: 0.25rem 0 0;
}

.kveto-panel--infra .kveto-infra-aside {
  border-color: rgba(52, 211, 153, 0.25);
  background: linear-gradient(160deg, rgba(52, 211, 153, 0.08) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.kveto-panel--infra .kveto-infra-checks li::before {
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.45);
}

.kveto-panel--products .kveto-panel-body {
  padding: 0.25rem 0 0;
}

.kveto-panel--products .svc-product-chip {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(15, 23, 42, 0.65);
}

.kveto-panel--products .svc-product-chip:hover {
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(167, 139, 250, 0.08);
}

.kveto-panel--bpo .kveto-panel-body {
  padding: 0.25rem 0 0;
}

.kveto-panel--bpo .svc-bpo-card {
  border-color: rgba(251, 191, 36, 0.15);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.05) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.kveto-panel--bpo .svc-bpo-card:nth-child(even) {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.55);
}

.kveto-panel h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.kveto-panel h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1.5rem 0 0.75rem;
}

.kveto-panel h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #cbd5e1;
  margin: 1.25rem 0 0.5rem;
}

.kveto-panel p {
  margin-bottom: 1rem;
}

.kveto-panel ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.kveto-panel li {
  margin-bottom: 0.35rem;
}

.kveto-panel .svc-highlight {
  background: linear-gradient(120deg, rgba(250, 204, 21, 0.25), rgba(250, 204, 21, 0.12));
  padding: 0.1rem 0.25rem;
  border-radius: 4px;
  color: #fef9c3;
  font-weight: 600;
}

.kveto-panel a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kveto-panel a:hover {
  color: #ffffff;
}

.kveto-lead {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 52rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.kveto-callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.kveto-callout__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.kveto-callout__list {
  margin: 0;
  padding-left: 1.15rem;
}

.kveto-callout__list li {
  margin-bottom: 0.45rem;
}

.kveto-infra-split {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .kveto-infra-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    align-items: start;
  }
}

.kveto-infra-aside {
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kveto-infra-aside__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.65rem;
}

.kveto-infra-checks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kveto-infra-checks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: #ffffff;
}

.kveto-infra-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.svc-product-intro {
  margin-bottom: 1.25rem;
}

.svc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.svc-product-chip {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.svc-product-chip:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.06);
}

.svc-bpo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .svc-bpo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.svc-bpo-card {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kveto-panel .svc-bpo-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  color: #ffffff;
}

.svc-bpo-card ul {
  margin: 0 0 0.75rem 1.05rem;
}

.svc-bpo-card__foot {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  font-style: italic;
}

/* ── Services creative option page ── */
.page-services-creative .svc-creative {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.35) 0%, #030712 100%);
}

.svc-creative-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.svc-creative-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.svc-creative-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.svc-creative-title {
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  margin: 0;
  color: #ffffff;
}

.svc-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .svc-bento-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.svc-bento-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
}

.svc-bento-card--consulting,
.svc-bento-card--infra {
  grid-column: span 3;
}

.svc-bento-card--products,
.svc-bento-card--bpo {
  grid-column: span 3;
}

.svc-bento-card--consulting { border-color: rgba(34, 211, 238, 0.35); }
.svc-bento-card--infra { border-color: rgba(52, 211, 153, 0.35); }
.svc-bento-card--products { border-color: rgba(167, 139, 250, 0.35); }
.svc-bento-card--bpo { border-color: rgba(251, 191, 36, 0.35); }

.svc-bento-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.svc-bento-card h3 {
  font-size: 1.08rem;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.svc-bento-card p {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.7rem;
}

.svc-bento-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.svc-bento-card li {
  margin-bottom: 0.35rem;
}

.svc-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.svc-chip-list span {
  display: inline-block;
  font-size: 0.82rem;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
}

.svc-track {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.55);
}

.svc-track-title {
  font-size: 1.05rem;
  color: #ffffff;
  margin: 0 0 0.9rem;
}

.svc-track-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .svc-track-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.svc-track-grid article {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0.85rem;
  background: rgba(3, 7, 18, 0.55);
}

.svc-track-grid h4 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  color: #ffffff;
}

.svc-track-grid p {
  font-size: 0.82rem;
  margin: 0;
  color: #ffffff;
}

.kveto-connect-form .form-label {
  color: #ffffff;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.kveto-connect-form .form-control,
.kveto-connect-form textarea {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.kveto-connect-form .form-control:focus,
.kveto-connect-form textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
}

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

  .kveto-services-sidebar {
    position: static;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .kveto-services-sidebar button {
    width: auto;
    flex: 1 1 auto;
    min-width: calc(50% - 0.25rem);
    font-size: 0.8rem;
    padding: 0.5rem 0.65rem;
  }
}

/* ── About page (section-by-section, not services sidebar) ── */
.page-about .about-page-main {
  padding-bottom: 4rem;
}

.page-about .about-section[id] {
  scroll-margin-top: 6rem;
}

.about-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.45) 0%, rgba(3, 7, 18, 0.75) 45%, rgba(3, 7, 18, 0.96) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 55%);
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.about-hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.about-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.about-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #ffffff;
  max-width: 42rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
}

.about-section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-section--muted {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.35) 0%, transparent 100%);
}

.about-section--deep {
  background: rgba(10, 20, 40, 0.55);
  border-top-color: rgba(0, 212, 255, 0.1);
}

.about-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.about-section__head {
  margin-bottom: 2rem;
}

.about-section__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.about-section__title {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.about-section__intro {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 62ch;
  line-height: 1.65;
  margin: 0;
}

.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.about-prose {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
}

.about-prose p {
  margin-bottom: 1.1rem;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-prose a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-aside-card {
  border-radius: 1.25rem;
  padding: 1.75rem;
  background: rgba(10, 20, 40, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.about-aside-card__stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-aside-card__label {
  font-size: 0.9rem;
  color: #ffffff;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .pill-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-pill {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  transition: border-color 0.2s, background 0.2s;
}

.about-pill:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.06);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
}

.why-card::before {
  content: '✓';
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.about-vision {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(10, 20, 40, 0.6) 50%, rgba(0, 212, 255, 0.05) 100%);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.06);
}

.about-vision p {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.strength-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .strength-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.strength-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.strength-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.benefits-grid {
  display: grid;
  gap: 0.65rem 1.25rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-grid li {
  list-style: none;
  position: relative;
  padding-left: 1.35rem;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.5;
}

.benefits-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.about-cta {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.about-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(120deg, rgba(0, 212, 255, 0.12) 0%, rgba(10, 20, 40, 0.8) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-cta__text {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 767px) {
  .about-hero {
    min-height: 58vh;
    padding-top: 5rem;
  }
}

/* About — enhanced layouts, icons, imagery */
.about-svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: #ffffff;
}

.about-svg--lg {
  width: 1.75rem;
  height: 1.75rem;
}

.about-svg--xl {
  width: 2.25rem;
  height: 2.25rem;
}

.about-media-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-media-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.about-media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.15);
}

.about-media-frame img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .about-media-frame img {
    min-height: 340px;
  }
}

.about-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  font-weight: 700;
  font-size: 0.95rem;
  color: #e0f2fe;
}

.about-do-banner {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

@media (min-width: 992px) {
  .about-do-banner {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

.about-do-banner__img {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-1deg);
  transition: transform 0.35s ease;
}

.about-do-banner__img:hover {
  transform: rotate(0deg);
}

.about-do-banner__img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.about-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.35rem 0.85rem;
}

.about-pill .about-svg {
  opacity: 0.95;
}

.why-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem 1.25rem;
  padding-top: 1.65rem;
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.18), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.25);
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.why-card__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #ffffff;
  margin: 0;
}

.why-card::before {
  display: none;
}

.about-vision-split {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .about-vision-split {
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
  }
}

.about-vision-split__media {
  position: relative;
  min-height: 280px;
}

@media (min-width: 900px) {
  .about-vision-split__media {
    min-height: 100%;
  }
}

.about-vision-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-vision-split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(3, 7, 18, 0.85) 100%);
  pointer-events: none;
}

@media (max-width: 899px) {
  .about-vision-split__media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 18, 0.9) 100%);
  }
}

.about-vision-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, rgba(10, 20, 40, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%);
}

@media (min-width: 900px) {
  .about-vision-split__body {
    padding: 2.5rem 2.25rem;
  }
}

.about-vision-split__body .about-vision {
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.about-vision-split__body .about-vision p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.about-vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.strength-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.strength-item__icon .about-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.strength-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.28);
}

.strength-row--img {
  margin-top: 2rem;
}

.about-strength-hero {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  max-height: 220px;
}

.about-strength-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.about-section--process {
  border-top-color: rgba(0, 212, 255, 0.12);
}

.about-process {
  margin-top: 0.25rem;
}

.about-process__lead {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 auto 2rem;
  max-width: 36rem;
  line-height: 1.55;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .how-steps {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }
}

.how-steps__arrow {
  display: none;
}

@media (min-width: 900px) {
  .how-steps__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.25rem;
    align-self: center;
    color: #ffffff;
  }

  .how-steps__arrow svg {
    width: 26px;
    height: 26px;
  }
}

.how-step {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.35rem;
  border-radius: 1.25rem;
  background: rgba(3, 7, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.how-step:hover {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.how-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  border: 2px solid rgba(0, 212, 255, 0.35);
  color: #ffffff;
}

.how-step__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.4rem;
}

.how-step__title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.65rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.how-step__desc {
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.6;
}

.benefits-showcase {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .benefits-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, background 0.2s;
}

.benefit-item:hover {
  border-color: rgba(0, 212, 255, 0.22);
  background: rgba(0, 212, 255, 0.05);
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  color: #ffffff;
}

.benefit-item p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: #ffffff;
}

.about-benefits-visual {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.15);
  margin-bottom: 2rem;
}

.about-benefits-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .about-benefits-visual img {
    height: 240px;
  }
}

.about-cta {
  position: relative;
}

.about-cta__inner {
  position: relative;
  overflow: hidden;
}

.about-cta__inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 45%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Contact page (unified form + details) ── */
.page-contact .contact-page-main {
  padding-bottom: 3rem;
}

.page-contact .contact-section[id] {
  scroll-margin-top: 6rem;
}

.contact-hero {
  position: relative;
  min-height: min(52vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: 5.5rem 1.5rem 3rem;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
}

.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.5) 0%, rgba(3, 7, 18, 0.88) 100%),
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 55%);
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.contact-hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.contact-hero__lead {
  font-size: 1.05rem;
  color: #ffffff;
  max-width: 40rem;
  margin: 0;
  line-height: 1.55;
}

.contact-hero .breadcrumb-inline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 1rem;
}

.contact-hero .breadcrumb-inline a {
  color: #ffffff;
  text-decoration: none;
}

.contact-hero .breadcrumb-inline a:hover {
  text-decoration: underline;
}

.contact-hero .breadcrumb-inline .breadcrumb-sep {
  margin: 0 0.5rem;
  color: #ffffff;
}

.contact-hero__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.page-blog .blog-section--standalone,
.page-case-studies .blog-section--standalone {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-blog .blog-header-text,
.page-case-studies .blog-header-text {
  align-items: flex-start;
  text-align: left;
}

.contact-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-section--muted {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.4) 0%, transparent 100%);
}

.contact-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-section__head {
  margin-bottom: 2rem;
}

.contact-section__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.contact-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.contact-section__intro {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 52rem;
  margin: 0;
}

.contact-connect-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-connect-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.15fr);
    gap: 2.5rem;
  }
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-aside__media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4/3;
}

.contact-aside__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(10, 20, 40, 0.65);
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: border-color 0.2s, background 0.2s;
}

.contact-detail-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(10, 20, 40, 0.85);
}

.contact-detail-card__icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-detail-card__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.contact-detail-card__value {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-detail-card__value a {
  color: #ffffff;
  text-decoration: none;
}

.contact-detail-card__value a:hover {
  text-decoration: underline;
}

.contact-form-wrap {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: rgba(10, 20, 40, 0.55);
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
  .contact-form-wrap {
    padding: 2rem 2rem;
  }
}

.contact-form-wrap .contact-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.contact-form-wrap .contact-form-desc {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.contact-form-wrap .form-group--contact label {
  color: #ffffff;
}

.contact-form-wrap .form-success {
  margin-bottom: 1rem;
}

.contact-fields-note {
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.contact-fields-note ul {
  margin: 0.5rem 0 0.75rem 1.1rem;
  padding: 0;
}

.contact-fields-note li {
  margin-bottom: 0.25rem;
}

.contact-details-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-details-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-details-tile {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  background: rgba(3, 7, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details-tile__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.contact-details-tile__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.contact-details-tile__value {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-word;
}

.contact-details-tile__value a {
  color: #ffffff;
  text-decoration: none;
}

.contact-details-tile__value a:hover {
  text-decoration: underline;
}

.contact-closing {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.08) 0%, rgba(10, 20, 40, 0.6) 100%);
}

.contact-closing h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
}

.contact-closing p {
  color: #ffffff;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.contact-closing p:last-child {
  margin-bottom: 0;
}

/* ── Homepage: Schedule meeting modal ── */
.schedule-meeting-modal .schedule-meeting-modal__content {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98) 0%, rgba(3, 7, 18, 0.99) 100%);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 1rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
}

.schedule-meeting-modal .schedule-meeting-modal__header {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.14);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06) 0%, transparent 100%);
}

.schedule-meeting-modal .schedule-meeting-modal__head {
  flex: 1;
  min-width: 0;
  padding-right: 0.5rem;
}

.schedule-meeting-modal .schedule-meeting-modal__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.schedule-meeting-modal .schedule-meeting-modal__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.schedule-meeting-modal .schedule-meeting-modal__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 36rem;
}

.schedule-meeting-modal .schedule-meeting-modal__close {
  opacity: 0.85;
  margin: 0;
  flex-shrink: 0;
}

.schedule-meeting-modal .schedule-meeting-modal__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.schedule-meeting-modal .schedule-meeting-modal__section {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(48, 54, 61, 0.85);
}

.schedule-meeting-modal .schedule-meeting-modal__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0.25rem;
  padding-bottom: 0;
}

.schedule-meeting-modal .schedule-meeting-modal__section-title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.schedule-meeting-modal .schedule-meeting-modal__hint {
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.schedule-meeting-modal .contact-form .form-group--contact:last-child {
  margin-bottom: 0;
}

.schedule-meeting-modal .form-group--checkbox {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.schedule-meeting-modal .contact-form .form-group--contact textarea {
  min-height: 5.5rem;
}

/* ── Careers page (modern layout) ── */
.page-careers .contact-page-main {
  padding-bottom: 0;
}

.page-careers .careers-main {
  scroll-behavior: smooth;
}

.page-careers [id="roles"] {
  scroll-margin-top: 5.5rem;
}

/* Hero */
.page-careers .careers-hero-x {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background: #030712;
}

.page-careers .careers-hero-x__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 212, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(139, 92, 246, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #0a1628 0%, #030712 55%, #020617 100%);
}

.page-careers .careers-hero-x__gridlines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 15%, transparent 70%);
  pointer-events: none;
}

.page-careers .careers-hero-x__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .page-careers .careers-hero-x__inner {
    grid-template-columns: 1.2fr 0.85fr;
    gap: 3rem;
  }
}

.page-careers .careers-hero-x__crumb {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}

.page-careers .careers-hero-x__crumb a {
  color: rgba(255, 255, 255, 0.75);
}

.page-careers .careers-hero-x__crumb a:hover {
  color: #ffffff;
}

.page-careers .careers-hero-x__crumb-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.page-careers .careers-hero-x__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
}

.page-careers .careers-hero-x__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.8);
  animation: careers-pulse 2.2s ease-in-out infinite;
}

@keyframes careers-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.15); }
}

.page-careers .careers-hero-x__title {
  font-family: "Outfit", "Inter", system-ui, sans-serif;
  font-size: clamp(2.35rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 1rem;
}

.page-careers .careers-hero-x__title-gradient {
  display: inline-block;
  background: linear-gradient(105deg, #00d4ff 0%, #7dd3fc 35%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-careers .careers-hero-x__lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.page-careers .careers-hero-x__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.page-careers .careers-hero-x__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-careers .careers-hero-x__pills li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 20, 40, 0.5);
  color: rgba(255, 255, 255, 0.88);
}

.page-careers .careers-hero-x__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-careers .careers-hero-x__orbit {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-careers .careers-hero-x__orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.2);
  pointer-events: none;
}

.page-careers .careers-hero-x__orbit-ring--a {
  inset: 0;
  animation: careers-spin 28s linear infinite;
}

.page-careers .careers-hero-x__orbit-ring--b {
  inset: 18%;
  border-color: rgba(167, 139, 250, 0.25);
  animation: careers-spin 20s linear infinite reverse;
}

@keyframes careers-spin {
  to { transform: rotate(360deg); }
}

.page-careers .careers-hero-x__orbit-core {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.25) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(0, 212, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 212, 255, 0.12);
}

.page-careers .careers-hero-x__statboard {
  width: 100%;
  max-width: 320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(10, 20, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.page-careers .careers-hero-x__stat {
  text-align: center;
  padding: 0.35rem;
}

.page-careers .careers-hero-x__stat-val {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.page-careers .careers-hero-x__stat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Bands */
.page-careers .careers-band {
  padding: clamp(3rem, 5vw, 4.5rem) 1.5rem;
  position: relative;
}

.page-careers .careers-band--roles {
  background: linear-gradient(180deg, #030712 0%, #0a1628 100%);
}

.page-careers .careers-band--culture {
  background: 
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
    #030712;
}

.page-careers .careers-band--process {
  background: linear-gradient(180deg, #0a1628 0%, #030712 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-careers .careers-band--cta {
  padding-bottom: 4rem;
  background: #030712;
}

.page-careers .careers-band__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-careers .careers-band__head {
  margin-bottom: 2.5rem;
  max-width: 38rem;
}

.page-careers .careers-band__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-careers .careers-band__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.page-careers .careers-band__title {
  font-family: "Outfit", "Inter", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 0.65rem;
}

.page-careers .careers-band__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.page-careers .careers-band__head--center .careers-band__lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Jobs grid — uniform cards */
.page-careers .careers-jobs-bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-careers .careers-jobs-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .page-careers .careers-jobs-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-careers .careers-job {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.35rem;
  background: rgba(10, 20, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-careers .careers-job:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.page-careers .careers-job__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.page-careers .careers-job__accent--cyan {
  background: linear-gradient(180deg, #00d4ff, #0891b2);
}

.page-careers .careers-job__accent--violet {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}

.page-careers .careers-job__accent--amber {
  background: linear-gradient(180deg, #fbbf24, #ea580c);
}

.page-careers .careers-job__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-careers .careers-job__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.page-careers .careers-job__accent--cyan + .careers-job__head .careers-job__icon {
  color: #22d3ee;
}

.page-careers .careers-job__accent--violet + .careers-job__head .careers-job__icon {
  color: #a78bfa;
}

.page-careers .careers-job__accent--amber + .careers-job__head .careers-job__icon {
  color: #fbbf24;
}

.page-careers .careers-job__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
}

.page-careers .careers-job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.page-careers .careers-job__desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.page-careers .careers-job__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.page-careers .careers-job__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
}

.page-careers .careers-job__apply-btn {
  border-radius: 10px;
  font-weight: 600;
  margin-top: auto;
  padding: 0.55rem 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-careers .careers-hero-x__orbit-ring--a,
  .page-careers .careers-hero-x__orbit-ring--b {
    animation: none;
  }
  .page-careers .careers-hero-x__dot {
    animation: none;
  }
}

/* Mosaic */
.page-careers .careers-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-careers .careers-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-careers .careers-mosaic__item--wide {
    grid-column: 1 / -1;
  }
  .page-careers .careers-mosaic__item--tall {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.page-careers .careers-mosaic__item {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: 1.15rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s, background 0.2s;
}

.page-careers .careers-mosaic__item:hover {
  border-color: rgba(0, 212, 255, 0.22);
  background: rgba(15, 23, 42, 0.85);
}

.page-careers .careers-mosaic__n {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 212, 255, 0.85);
  margin-bottom: 0.65rem;
  display: block;
}

.page-careers .careers-mosaic__h {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.page-careers .careers-mosaic__p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.page-careers .careers-mosaic__item--wide {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(15, 23, 42, 0.9) 100%);
  border-color: rgba(0, 212, 255, 0.15);
}

.page-careers .careers-mosaic__item--wide .careers-mosaic__h {
  font-size: 1.35rem;
}

/* Timeline */
.page-careers .careers-timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .page-careers .careers-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 1.5rem;
  }
  .page-careers .careers-timeline__track {
    position: absolute;
    top: 1.4rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.35), transparent);
    border-radius: 2px;
  }
}

.page-careers .careers-timeline__step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem 0;
}

@media (min-width: 900px) {
  .page-careers .careers-timeline__step {
    padding-top: 0;
  }
}

.page-careers .careers-timeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.35) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid rgba(0, 212, 255, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}

.page-careers .careers-timeline__h {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.page-careers .careers-timeline__p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* CTA */
.page-careers .careers-cta-x {
  position: relative;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.1) 0%, rgba(3, 7, 18, 0.95) 100%);
  overflow: hidden;
}

.page-careers .careers-cta-x__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.page-careers .careers-cta-x__title {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.page-careers .careers-cta-x__text {
  position: relative;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.page-careers .careers-cta-x__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Careers apply modal — file upload */
.career-apply-modal .career-apply-file__input,
.page-careers .career-apply-file__input {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.career-apply-modal .career-apply-file__input::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
}

.career-apply-modal .career-apply-file__hint {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Careers — dark content below shared contact-hero */
.page-careers .careers-simple-below {
  background: #030712;
  color: rgba(255, 255, 255, 0.9);
}

.page-careers .careers-simple-btn-outline {
  color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.06);
  font-weight: 600;
  border-radius: 10px;
  padding: 0.5rem 1.1rem;
}

.page-careers .careers-simple-btn-outline:hover {
  color: #ffffff;
  background: rgba(0, 212, 255, 0.14);
  border-color: rgba(0, 212, 255, 0.65);
}

.page-careers .careers-simple-band {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.45);
}

.page-careers .careers-simple-band__inner {
  max-width: 42rem;
}

.page-careers .careers-simple-band__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
}

.page-careers .careers-simple-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-careers .careers-simple-steps li {
  margin-bottom: 0.5rem;
}

.page-careers .careers-simple-steps li:last-child {
  margin-bottom: 0;
}

.page-careers .careers-simple-cta {
  text-align: center;
}

.page-careers .careers-simple-cta__inner {
  max-width: 32rem;
  margin: 0 auto;
}

.page-careers .careers-simple-cta__text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.page-careers .careers-simple-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Careers — role cards (dark) */
.page-careers .careers-roles-section {
  background:
    linear-gradient(180deg, #0a1628 0%, #030712 100%);
  scroll-margin-top: 5rem;
}

.page-careers .careers-roles-wrap {
  max-width: 52rem;
}

.page-careers .careers-roles-head {
  margin-bottom: 1.75rem;
}

.page-careers .careers-roles-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.page-careers .careers-roles-lead {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 36rem;
  line-height: 1.55;
}

.page-careers .careers-no-openings {
  max-width: 36rem;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.page-careers .careers-role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-careers .careers-role-card {
  position: relative;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 16px 40px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.page-careers .careers-role-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
}

.page-careers .careers-role-card--cyan::before {
  background: linear-gradient(180deg, #00d4ff 0%, #0891b2 100%);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.45);
}

.page-careers .careers-role-card--violet::before {
  background: linear-gradient(180deg, #a78bfa 0%, #6366f1 100%);
  box-shadow: 0 0 18px rgba(99, 102, 241, 0.35);
}

.page-careers .careers-role-card--amber::before {
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
  box-shadow: 0 0 18px rgba(217, 119, 6, 0.3);
}

.page-careers .careers-role-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 48px -8px rgba(0, 212, 255, 0.15);
}

.page-careers .careers-role-card__inner {
  padding: 1.25rem 1.35rem 1.35rem 1.5rem;
}

.page-careers .careers-role-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
  min-width: 0;
}

.page-careers .careers-role-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
  flex: 1 1 12rem;
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-careers .careers-role-card__btn {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.15rem;
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 16px rgba(0, 180, 216, 0.35);
  max-width: 100%;
}

.page-careers .careers-role-card__btn:hover {
  box-shadow: 0 4px 22px rgba(0, 180, 216, 0.45);
}

.page-careers .careers-role-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.page-careers .careers-role-card__meta li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-careers .careers-role-card__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .page-careers .careers-roles-head {
    margin-bottom: 1.25rem;
  }

  .page-careers .careers-role-list {
    gap: 0.85rem;
  }

  .page-careers .careers-role-card__inner {
    padding: 1rem 1rem 1.15rem 1.2rem;
  }

  .page-careers .careers-role-card__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }

  .page-careers .careers-role-card__title {
    flex: 1 1 auto;
    font-size: 1rem;
  }

  .page-careers .careers-role-card__btn {
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
  }

  .page-careers .careers-role-card__meta {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .page-careers .careers-role-card__meta li {
    font-size: 0.6875rem;
    padding: 0.22rem 0.55rem;
  }

  .page-careers .careers-role-card__desc {
    font-size: 0.875rem;
  }

  .page-careers .careers-role-card:hover {
    transform: none;
  }

  .page-careers .careers-simple-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-careers .careers-simple-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .page-careers .careers-role-card__inner {
    padding: 0.85rem 0.85rem 1rem 1rem;
  }
}

