* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
}

/* Navbar */
.navbar {
  background: #0b2148;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(7, 16, 36, 0.28);
  border-bottom: 1px solid rgba(245, 183, 84, 0.28);
}

.navbar-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 28px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.navbar-tagline {
  color: #9fb0c8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
  max-width: 130px;
  line-height: 1.35;
}

/* Center nav */
.navbar-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu li a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #e8edf5;
  text-decoration: none;
  padding: 8px 4px;
  margin: 0 10px;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  background-color: transparent;
  color: #f5b754;
  box-shadow: none;
  border-bottom-color: #f5b754;
}

.caret {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .caret {
  transform: rotate(180deg);
}

/* Dropdowns */
.dropdown {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(11, 33, 72, 0.18);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  color: #374151;
  text-transform: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: normal;
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
}

.dropdown li a:hover {
  background-color: #fef3e2;
  color: #b45309;
  box-shadow: none;
}

/* CTA button */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: #f5b754;
  color: #0b2148;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 6px;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-cta:hover {
  transform: none;
  background: #ffffff;
  color: #0b2148;
  box-shadow: none;
}

.navbar-cta-mobile {
  display: none;
}

/* Hamburger toggle (mobile) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 720px;
  padding: 80px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0b2148;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 72, 0.75) 0%, rgba(11, 33, 72, 0.5) 45%, rgba(11, 33, 72, 0.85) 100%);
  z-index: 1;
}

/* Tech / AI network overlay */
.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(11, 33, 72, 0.58);
  border: 1px solid rgba(245, 183, 84, 0.42);
  color: #f5b754;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  animation: heroFloat 5.6s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-float--1 { top: 16%; left: 5%; }
.hero-float--2 { top: 24%; right: 6%; animation-delay: 0.7s; }
.hero-float--3 { top: 58%; left: 4%; animation-delay: 1.3s; }
.hero-float--4 { top: 66%; right: 5%; animation-delay: 1.8s; }
.hero-float--5 { bottom: 14%; left: 14%; animation-delay: 0.4s; }
.hero-float--6 { bottom: 18%; right: 12%; animation-delay: 2.2s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero-float--3,
  .hero-float--4,
  .hero-float--5,
  .hero-float--6 {
    display: none;
  }

  .hero-float--1 { top: 8%; left: 4%; }
  .hero-float--2 { top: 8%; right: 4%; }
}

.hero-text-bg {
  position: relative;
  z-index: 3;
  background: linear-gradient(165deg, rgba(11, 33, 72, 0.72), rgba(11, 33, 72, 0.5));
  border: 1px solid rgba(245, 183, 84, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 52px 56px;
  max-width: 920px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 183, 84, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-text-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d97706, #f5b754);
}

.hero-eyebrow {
  display: inline-block;
  color: #f5b754;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Playfair Display", "Inter", serif;
  color: #ffffff;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  max-width: 820px;
  margin: 0 auto 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-categories {
  color: #f5b754;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 700px;
  margin: 0 auto 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 183, 84, 0.3);
  display: inline-block;
}

.hero-lead {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 0.1px;
  max-width: 760px;
  margin: 0 auto 22px;
}

.hero-desc {
  color: #c3cbdb;
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 16px;
}

.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-tagline {
  color: #f5b754;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  max-width: 700px;
  margin: 30px auto 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #d97706, #f5b754);
  color: #0b2148;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 16px;
    min-height: 640px;
  }

  .hero-text-bg {
    padding: 32px 22px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-lead,
  .hero-desc {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cloud {
    animation: none;
  }
}

@media (max-width: 900px) {
  .navbar-tagline {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #0b2148;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden auto;
    transition: max-height 0.3s ease;
  }

  .navbar-menu.open {
    max-height: 80vh;
  }

  .navbar-menu li a {
    padding: 16px 20px;
    margin: 0;
    border-radius: 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Dropdowns become static, always expanded under their parent */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background-color: #fbf3e4;
    padding: 4px 0;
  }

  .dropdown li a {
    padding: 12px 36px;
  }

  .navbar-cta-mobile {
    display: block;
    padding: 16px 20px;
  }

  .navbar-cta-mobile .btn {
    display: block;
    text-align: center;
    color: #0b2148;
    border-bottom: none;
    margin: 0;
  }

  .navbar-cta-mobile .btn:hover,
  .navbar-cta-mobile .btn.active {
    color: #0b2148;
    border-bottom: none;
  }
}

/* ===================================================
   Solutions Page
=================================================== */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Page intro hero */
.sol-hero {
  background: linear-gradient(180deg, #fdf6ec 0%, #ffffff 100%);
  padding: 90px 0 70px;
  text-align: center;
}

.sol-hero h1 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 2.6rem;
  line-height: 1.25;
  margin: 14px auto 26px;
  max-width: 780px;
}

.sol-lead {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 16px;
}

.sol-lead strong {
  color: #0b2148;
}

.sol-lead--muted {
  color: #6b7280;
  font-size: 0.98rem;
}

.sol-eyebrow {
  display: inline-block;
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Generic content sections */
.sol-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.sol-section--alt {
  background-color: #f8f7f4;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 2.1rem;
  line-height: 1.3;
  margin: 12px 0 16px;
}

.text-accent {
  color: #0b2148;
}

.sol-subtitle-sm {
  color: #b45309;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Badge row (feature tags) */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 32px;
}

.badge {
  background-color: #fef3e2;
  color: #b45309;
  border: 1px solid #eecd93;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Product / feature card */
.product-card {
  background: linear-gradient(160deg, #0b2148, #163566);
  color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 45px rgba(11, 33, 72, 0.2);
}

.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.product-card p {
  color: #d7deea;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Stat pills */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 26px;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 183, 84, 0.35);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 110px;
}

.stat-pill strong {
  color: #ffffff;
  font-size: 1.15rem;
}

.stat-pill small {
  color: #cbd5e1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.product-card .stat-pill {
  background-color: rgba(255, 255, 255, 0.06);
}

/* Flow row (Understand -> Reason -> ...) */
.flow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}

.flow-step {
  background-color: #ffffff;
  border: 1px solid #eecd93;
  color: #0b2148;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 33, 72, 0.08);
}

.flow-arrow {
  color: #6b7280;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Platform blocks (CallZenix / Ozynix) */
.platform-block {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e5e7eb;
}

.platform-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.platform-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.platform-name {
  display: inline-block;
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.platform-tagline {
  color: #b45309;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.platform-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.platform-links a {
  color: #0b2148;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid #d97706;
  padding-bottom: 2px;
}

.platform-links a:hover {
  color: #b45309;
}

.suite-title {
  text-align: center;
  color: #0b2148;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  justify-content: center;
  margin-bottom: 44px;
}

.suite-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #0b2148;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: center;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(11, 33, 72, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.suite-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

/* Info panel (sub-block within a platform) */
.info-panel {
  max-width: 760px;
  margin: 0 auto 36px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 34px 36px;
  text-align: center;
}

.info-panel:last-child {
  margin-bottom: 0;
}

.info-panel h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.info-panel p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.info-panel-note {
  font-weight: 600;
  color: #0b2148;
}

.btn-dark {
  background-color: transparent;
  color: #0b2148;
  border: 1px solid #cbd5e1;
}

.btn-dark:hover {
  background-color: #f3f4f6;
}

/* Info grid (hardware / security / managed services) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-grid--narrow {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.info-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

.info-card h4 {
  color: #0b2148;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.info-card p {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.6;
}

.sol-section--alt .info-card {
  background-color: #ffffff;
}

/* How We Build cards */
.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.build-card {
  background: linear-gradient(160deg, #0b2148, #163566);
  color: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 16px 36px rgba(11, 33, 72, 0.18);
}

.build-tag {
  display: inline-block;
  color: #f5b754;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.build-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.build-card p {
  color: #d7deea;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.build-card .stat-row {
  justify-content: flex-start;
  margin-bottom: 0;
}

.build-card .stat-pill {
  align-items: flex-start;
  min-width: 0;
  padding: 10px 14px;
}

@media (max-width: 640px) {
  .sol-hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .platform-name {
    font-size: 1.6rem;
  }

  .info-panel {
    padding: 26px 22px;
  }

  .product-card,
  .build-card {
    padding: 28px 22px;
  }
}

/* ===================================================
   Icons & extra premium detail
=================================================== */

/* Capability stats bar (hero) */
.capability-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eecd93;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cap-stat {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  border-left: 1px solid #e5d3b3;
}

.cap-stat:first-child {
  border-left: none;
}

.cap-stat strong {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.7rem;
  line-height: 1.2;
}

.cap-stat span {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: center;
}

/* Section icon badge (above eyebrow) */
.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(160deg, #0b2148, #1c3d75);
  color: #f5b754;
  margin: 0 auto 18px;
  box-shadow: 0 12px 26px rgba(11, 33, 72, 0.18);
}

.section-icon svg {
  width: 26px;
  height: 26px;
}

/* Icons inside badges / pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.badge-plain svg {
  display: none;
}

/* Product card icon */
.product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 183, 84, 0.12);
  border: 1px solid rgba(245, 183, 84, 0.35);
  color: #f5b754;
  margin-bottom: 18px;
}

.product-card-icon svg {
  width: 26px;
  height: 26px;
}

/* Flow step icon */
.flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-step svg {
  width: 18px;
  height: 18px;
  color: #d97706;
  flex-shrink: 0;
}

/* Platform icon beside name */
.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fef3e2;
  color: #b45309;
  margin-bottom: 14px;
}

.platform-icon svg {
  width: 24px;
  height: 24px;
}

/* Info panel icon */
.info-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fef3e2;
  color: #b45309;
  margin: 0 auto 16px;
}

.info-panel-icon svg {
  width: 24px;
  height: 24px;
}

/* Info card icon (hardware / security / managed services) */
.info-card {
  text-align: left;
}

.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fef3e2;
  color: #b45309;
  margin-bottom: 14px;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
}

/* Build card icon */
.build-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 183, 84, 0.12);
  border: 1px solid rgba(245, 183, 84, 0.3);
  color: #f5b754;
  margin-bottom: 16px;
}

.build-card-icon svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 600px) {
  .capability-stats {
    gap: 20px 0;
  }

  .cap-stat {
    flex: 1 1 45%;
    border-left: none;
    border-top: 1px solid #e5d3b3;
    padding-top: 14px;
  }

  .cap-stat:first-child {
    border-top: none;
  }
}

/* ===================================================
   Solutions page — richer detail components
=================================================== */

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-cta-row .mini-link {
  margin-top: 0;
}

.btn-light {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

/* Technology pillars row */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 48px;
}

.pillar-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #0b2148, #1c3d75);
  color: #f5b754;
  margin: 0 0 14px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar-card .why-number {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.pillar-card h4 {
  color: #0b2148;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.pillar-card p {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* AI capability cards */
.ai-cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.ai-cap-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 26px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ai-cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

.ai-cap-card--product {
  padding: 0 0 24px;
  overflow: hidden;
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 20px;
  background: linear-gradient(155deg, #0b2148, #1c3d75);
  position: relative;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.45;
}

.product-visual--callzenix {
  background: linear-gradient(155deg, #0b2148, #0e4f6e);
}

.product-visual--ozynix {
  background: linear-gradient(155deg, #0b2148, #7c3a00);
}

.product-visual--custom {
  background: linear-gradient(155deg, #0b2148, #14532d);
}

.product-visual .ai-cap-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(245, 183, 84, 0.16);
  border: 1px solid rgba(245, 183, 84, 0.4);
  color: #f5b754;
  margin: 0;
  position: relative;
  z-index: 1;
}

.product-visual .ai-cap-icon svg {
  width: 28px;
  height: 28px;
}

.ai-cap-card--product h4,
.ai-cap-card--product .sol-subtitle-sm,
.ai-cap-card--product p,
.ai-cap-card--product .mini-link {
  padding-left: 24px;
  padding-right: 24px;
}

.ai-cap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fef3e2;
  color: #b45309;
  margin-bottom: 14px;
}

.ai-cap-icon svg {
  width: 22px;
  height: 22px;
}

.ai-cap-card h4 {
  color: #0b2148;
  font-size: 1rem;
  margin-bottom: 8px;
}

.ai-cap-card p {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Voicebot demo: info + chat mockup */
.voicebot-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.voicebot-info h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.voicebot-info > p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.info-panel-note {
  font-weight: 600;
  color: #0b2148;
  margin-bottom: 10px;
}

/* Chat mockup */
.chat-mock {
  background-color: #0b2148;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(11, 33, 72, 0.2);
}

.chat-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  flex-shrink: 0;
}

.chat-bubble {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}

.chat-bubble-label {
  display: block;
  color: #f5b754;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.chat-bubble p {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: italic;
}

.chat-analysis {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 183, 84, 0.25);
  border-radius: 14px;
  padding: 6px 18px;
}

.chat-analysis-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-analysis-row:last-child {
  border-bottom: none;
}

.chat-analysis-row span {
  color: #9fb0c8;
  font-size: 0.82rem;
}

.chat-analysis-row strong {
  color: #ffffff;
  font-size: 0.88rem;
  text-align: right;
}

.chat-confidence {
  color: #4ade80 !important;
}

/* Mini flow (compact architecture steps) */
.mini-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.mini-flow-step {
  background-color: #fef3e2;
  color: #b45309;
  border: 1px solid #eecd93;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.mini-flow-arrow {
  color: #d97706;
  font-size: 0.9rem;
}

.mini-flow--dark .mini-flow-step {
  background-color: rgba(245, 183, 84, 0.12);
  color: #f5b754;
  border-color: rgba(245, 183, 84, 0.3);
}

.mini-flow--dark .mini-flow-arrow {
  color: #f5b754;
}

.mini-flow--cta {
  justify-content: center;
  margin: 30px 0;
}

.mini-flow--cta .mini-flow-step {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.mini-flow--cta .mini-flow-arrow {
  color: #f5b754;
}

/* Agent detail grid (under flow-row) */
.agent-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 36px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.agent-detail {
  text-align: center;
  padding: 18px 14px;
  border-left: 1px solid #e5e7eb;
}

.agent-detail:first-child {
  border-left: none;
}

.agent-detail h4 {
  color: #b45309;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.agent-detail p {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* Suite items with icons */
.suite-item {
  display: flex;
}

.suite-item img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.suite-item > span {
  padding: 0 10px;
}

.suite-item svg {
  display: none;
}

/* Dashboard mockups (CallZenix / Security) */
.dash-mock {
  background: linear-gradient(160deg, #0b2148, #163566);
  border-radius: 18px;
  padding: 26px 28px;
  margin: 36px auto;
  max-width: 900px;
  box-shadow: 0 20px 45px rgba(11, 33, 72, 0.18);
}

.dash-mock--dark {
  max-width: 100%;
}

.dash-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 20px;
}

.dash-live {
  margin-left: auto;
  background-color: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.4);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.8px;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.dash-tile {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 183, 84, 0.2);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}

.dash-tile strong {
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
}

.dash-tile small {
  display: block;
  color: #cbd5e1;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
}

/* Hub diagrams (Ozynix / Managed Services) */
.hub-diagram {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.hub-center {
  display: inline-block;
  background: linear-gradient(90deg, #0b2148, #163566);
  color: #f5b754;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11, 33, 72, 0.2);
}

.hub-center--wide {
  padding: 14px 40px;
}

.hub-connector {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #d97706, #eecd93);
  margin: 0 auto;
}

.hub-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hub-node {
  background-color: #ffffff;
  border: 1px solid #eecd93;
  color: #0b2148;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(11, 33, 72, 0.08);
}

/* Section banner (image header for Hardware & Infrastructure) */
.section-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  margin-bottom: 60px;
}

.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 33, 72, 0.93) 0%, rgba(11, 33, 72, 0.75) 55%, rgba(11, 33, 72, 0.5) 100%);
}

.section-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-banner-title {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1.3;
  margin: 12px 0 16px;
}

.sol-eyebrow--light {
  color: #f5b754;
}

.sol-lead--light {
  color: #d7deea;
}

.section-icon--light {
  background: rgba(245, 183, 84, 0.15);
  border: 1px solid rgba(245, 183, 84, 0.4);
  box-shadow: none;
}

/* Final CTA section */
.final-cta {
  background: linear-gradient(135deg, #0b2148 0%, #163566 100%);
  padding: 90px 0;
  text-align: center;
}

.final-cta-title {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 2.3rem;
  line-height: 1.3;
  max-width: 760px;
  margin: 14px auto 20px;
}

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

  .agent-detail {
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }

  .agent-detail:first-child {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .section-banner {
    padding: 60px 0;
  }

  .section-banner-title {
    font-size: 1.6rem;
  }

  .final-cta-title {
    font-size: 1.7rem;
  }

  .hub-nodes {
    gap: 8px;
  }

  .hub-node {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

/* ===================================================
   Animation touches
=================================================== */

/* Video hero (Solutions page) */
.sol-hero--video {
  position: relative;
  background: none;
  overflow: hidden;
  padding: 110px 0 80px;
}

.sol-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 72, 0.88) 0%, rgba(11, 33, 72, 0.75) 55%, rgba(11, 33, 72, 0.92) 100%);
  z-index: 1;
}

.sol-hero--video .container {
  position: relative;
  z-index: 2;
}

.sol-hero--video .sol-eyebrow {
  color: #f5b754;
}

.sol-hero--video h1 {
  color: #ffffff;
}

.sol-hero--video .sol-lead {
  color: #e2e8f0;
}

.sol-hero--video .sol-lead strong {
  color: #ffffff;
}

.sol-hero--video .sol-lead--muted {
  color: #b9c4d6;
}

.sol-hero--video .capability-stats {
  border-top-color: rgba(245, 183, 84, 0.35);
}

.sol-hero--video .cap-stat {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.sol-hero--video .cap-stat strong {
  color: #ffffff;
}

.sol-hero--video .cap-stat span {
  color: #b9c4d6;
}

/* Scroll-reveal system */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.19s; }
.reveal-delay-4 { transition-delay: 0.26s; }
.reveal-delay-5 { transition-delay: 0.33s; }
.reveal-delay-6 { transition-delay: 0.4s; }

/* Live pulse dot (chat mockup + dashboards) */
.chat-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0.05); }
}

/* Flow arrows: gentle nudge to suggest motion */
.flow-arrow,
.mini-flow-arrow {
  display: inline-block;
  animation: arrowNudge 1.6s ease-in-out infinite;
}

@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Section icons: gentle float */
.section-icon {
  animation: none;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hub connector: pulse to suggest data flow to nodes */
.hub-connector {
  animation: hubPulse 2s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Dashboard tiles: subtle glow sweep on the live badge */
.dash-live {
  animation: livePulse 2.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.25); }
  50% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.08); }
}

/* ===================================================
   AI-touch flow animation (sequential pulse wave)
=================================================== */

.flow-step,
.mini-flow-step {
  animation: none;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
  50% { box-shadow: 0 0 16px 3px rgba(217, 119, 6, 0.5); }
}

.mini-flow--dark .mini-flow-step {
  animation-name: stepPulseDark;
}

@keyframes stepPulseDark {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 183, 84, 0); }
  50% { box-shadow: 0 0 16px 3px rgba(245, 183, 84, 0.45); }
}

.mini-flow--cta .mini-flow-step {
  animation-name: stepPulseCta;
}

@keyframes stepPulseCta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 14px 2px rgba(255, 255, 255, 0.35); }
}

/* Sequential delay so the glow "travels" step by step, like data moving through the pipeline */
.flow-row > :nth-child(1), .mini-flow > :nth-child(1) { animation-delay: 0s; }
.flow-row > :nth-child(3), .mini-flow > :nth-child(3) { animation-delay: 0.3s; }
.flow-row > :nth-child(5), .mini-flow > :nth-child(5) { animation-delay: 0.6s; }
.flow-row > :nth-child(7), .mini-flow > :nth-child(7) { animation-delay: 0.9s; }
.flow-row > :nth-child(9), .mini-flow > :nth-child(9) { animation-delay: 1.2s; }
.flow-row > :nth-child(11), .mini-flow > :nth-child(11) { animation-delay: 1.5s; }
.flow-row > :nth-child(13), .mini-flow > :nth-child(13) { animation-delay: 1.8s; }

/* Arrows glow in sync with the step just before them, reinforcing the travel direction */
.flow-arrow,
.mini-flow-arrow {
  animation: none;
}

@keyframes arrowGlow {
  0%, 100% { color: inherit; opacity: 0.55; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(217, 119, 6, 0.6); }
}

.flow-row > :nth-child(2), .mini-flow > :nth-child(2) { animation-delay: 0.15s, 0.15s; }
.flow-row > :nth-child(4), .mini-flow > :nth-child(4) { animation-delay: 0.45s, 0.45s; }
.flow-row > :nth-child(6), .mini-flow > :nth-child(6) { animation-delay: 0.75s, 0.75s; }
.flow-row > :nth-child(8), .mini-flow > :nth-child(8) { animation-delay: 1.05s, 1.05s; }
.flow-row > :nth-child(10), .mini-flow > :nth-child(10) { animation-delay: 1.35s, 1.35s; }
.flow-row > :nth-child(12), .mini-flow > :nth-child(12) { animation-delay: 1.65s, 1.65s; }

/* ===================================================
   Browser-frame product mockup (Suite sections)
=================================================== */

.browser-frame {
  max-width: 900px;
  margin: 36px auto 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(11, 33, 72, 0.22);
  border: 1px solid rgba(11, 33, 72, 0.08);
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background-color: #0d1b33;
  padding: 12px 16px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.browser-dot--red { background-color: #f87171; }
.browser-dot--yellow { background-color: #facc15; }
.browser-dot--green { background-color: #4ade80; }

.browser-url {
  margin-left: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #9fb0c8;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 6px;
}

.dash-mock--framed {
  margin: 0;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chat-dot,
  .hero-float,
  .flow-arrow,
  .mini-flow-arrow,
  .flow-step,
  .mini-flow-step,
  .section-icon,
  .hub-connector,
  .dash-live {
    animation: none;
  }
}

/* ===================================================
   Homepage — new sections
=================================================== */

.mini-flow--center {
  justify-content: center;
  margin: 0 auto;
}

/* Small text link with arrow (ecosystem cards) */
.mini-link {
  display: inline-block;
  color: #b45309;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mini-link:hover {
  color: #0b2148;
  border-bottom-color: #0b2148;
}

.ai-cap-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 60px;
}

.ai-cap-grid--six .ai-cap-card {
  text-align: center;
}

.ai-cap-grid--six .ai-cap-icon {
  margin-left: auto;
  margin-right: auto;
}

.ai-cap-grid--six h4 {
  margin-bottom: 0;
}

/* Quote block (industries section) */
.quote-block {
  max-width: 780px;
  margin: 40px auto 0;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #0b2148;
  font-size: 1.35rem;
  line-height: 1.6;
  padding-top: 28px;
  border-top: 1px solid #e5d3b3;
  position: relative;
}

/* Split grid (Infrastructure + Security) */
.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.split-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.split-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(11, 33, 72, 0.1);
}

.split-card h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.3rem;
  margin: 6px 0 20px;
}

.split-card .badge-row {
  margin-bottom: 0;
}

.split-card--photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 40px 36px;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  background-color: #0b2148;
  background-size: cover;
  background-position: center;
  text-align: left;
}

.split-card--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(11, 33, 72, 0.28);
}

.split-card--infra {
  background-image: url("images/infra-datacenter.jpg");
}

.split-card--secure {
  background-image: url("images/hero-tech.jpg");
}

.split-card--web {
  background-image: url("images/home-web.jpg");
}

.split-card--app {
  background-image: url("images/home-app.jpg");
}

.home-build-head {
  margin-bottom: 36px;
}

.home-build-tags {
  justify-content: flex-start;
  margin: 28px 0 0;
}

.split-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 72, 0.25) 0%, rgba(11, 33, 72, 0.82) 100%);
}

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

.split-card--photo h3 {
  color: #ffffff;
  margin: 10px 0 12px;
}

.split-card--photo p {
  color: #d7deea;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.mini-link--light {
  color: #f5b754;
}

.mini-link--light:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Managed technology statement */
.managed-statement {
  text-align: center;
  max-width: 700px;
  margin: 36px auto 0;
  border-top: none;
  padding-top: 0;
}

/* Why Tech Rajeshwar */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.why-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

.why-number {
  display: block;
  font-family: "Playfair Display", serif;
  color: #d1d5db;
  -webkit-text-stroke: 1px #9ca3af;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card h4 {
  color: #0b2148;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .quote-block {
    font-size: 1.1rem;
  }

  .split-card {
    padding: 28px 22px;
  }

  .split-card--photo {
    min-height: 300px;
    padding: 28px 22px;
  }
}

/* ===================================================
   About page
=================================================== */

.container--narrow {
  max-width: 820px;
}

/* Narrative copy blocks */
.story-copy {
  max-width: 760px;
  margin: 0 auto;
}

.story-copy p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: left;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-copy strong {
  color: #0b2148;
}

.story-copy--top {
  margin-top: 40px;
}

.story-flow-label {
  text-align: center;
  margin: 44px 0 20px;
}

/* Split card text variant (Mission / Vision) */
.split-card--text {
  text-align: left;
  padding: 40px 36px;
}

.split-card--text h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.split-card--text p {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.split-card--text p:last-child {
  margin-bottom: 0;
}

.split-card--text strong {
  color: #0b2148;
}

/* Engineering & security card tag line */
.info-card-tags {
  color: #9ca3af;
  font-size: 0.78rem !important;
  margin-top: 8px;
}

/* Leadership */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.leader-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(11, 33, 72, 0.06);
}

.leader-photo-wrap {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eecd93;
  box-shadow: 0 12px 28px rgba(11, 33, 72, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0b2148, #1c3d75);
}

.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.35) contrast(1.08) saturate(0.55);
}

.leader-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 72, 0.06) 0%, rgba(11, 33, 72, 0.28) 100%);
  pointer-events: none;
}

.leader-avatar-initials {
  font-family: "Playfair Display", serif;
  color: #f5b754;
  font-size: 2.6rem;
  font-weight: 700;
}

.leader-card h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.5rem;
  margin: 4px 0 6px;
}

.leader-card .platform-tagline {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.leader-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: left;
  margin-bottom: 14px;
}

.leader-card .info-panel-note {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
}

.leader-focus-list {
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leader-focus-list li {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.leader-focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, #d97706, #f5b754);
}

/* By the numbers */
.numbers-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.numbers-stat {
  text-align: center;
  padding: 20px;
  border-left: 1px solid #e5e7eb;
}

.numbers-stat:first-child {
  border-left: none;
}

.numbers-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: #b45309;
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.numbers-stat--label strong {
  font-size: 1.35rem;
}

.numbers-stat span {
  display: block;
  color: #0b2148;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.numbers-stat p {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* More than a vendor comparison list */
.compare-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 30px;
  text-align: center;
}

.compare-list li {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 2;
}

.compare-highlight {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}

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

  .numbers-stat {
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }

  .numbers-stat:first-child {
    border-top: none;
  }
}

@media (max-width: 640px) {
  .leader-card {
    padding: 32px 24px;
  }

  .split-card--text {
    padding: 30px 24px;
  }
}

/* ===================================================
   Contact page
=================================================== */

.form-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-form {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(11, 33, 72, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  color: #0b2148;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  color: #0b2148;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
  background-color: #ffffff;
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 15px 20px;
}

.form-note {
  text-align: center;
  color: #9ca3af;
  font-size: 0.78rem;
  margin-top: 14px;
}

.form-note.is-success {
  color: #15803d;
  font-weight: 600;
}

/* What Happens Next sidebar */
.next-steps {
  background-color: #f8f7f4;
  border-radius: 20px;
  padding: 36px 32px;
}

.next-steps > .sol-eyebrow {
  display: block;
  margin-bottom: 22px;
}

.next-step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.next-step-item .why-number {
  flex-shrink: 0;
  font-size: 1.6rem;
  margin-bottom: 0;
}

.next-step-item h4 {
  color: #0b2148;
  font-size: 1rem;
  margin-bottom: 4px;
}

.next-step-item p {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.6;
}

.next-steps-footnote {
  color: #b45309;
  font-size: 0.82rem;
  font-style: italic;
  border-top: 1px solid #e5d3b3;
  padding-top: 18px;
  margin-top: 4px;
}

/* Reach us directly cards */
.contact-detail {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.split-card .sol-subtitle-sm {
  margin-bottom: 20px;
}

/* Final CTA extras */
.final-cta-tagline {
  color: #b9c4d6;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin: -6px 0 8px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-block strong {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.contact-info-block span {
  color: #b9c4d6;
  font-size: 0.85rem;
}

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .next-steps {
    padding: 28px 22px;
  }
}

/* ===================================================
   Site-wide footer
=================================================== */

.site-footer {
  background-color: #0a1830;
  color: #b9c4d6;
  padding-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo img,
.footer-logo-img {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.footer-logo-sub {
  display: block;
  color: #8b98ad;
  font-size: 0.78rem;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.footer-desc {
  color: #9fb0c8;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 480px;
}

.footer-cta {
  display: none;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  color: #b9c4d6;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #f5b754;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: #6b7891;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #6b7891;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #f5b754;
}

.footer-region {
  display: flex;
  gap: 16px;
  color: #6b7891;
}

@media (max-width: 1000px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-tagline {
    font-size: 1.4rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================================================
   Careers page
=================================================== */

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.track-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.track-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 33, 72, 0.08);
  border-color: #eecd93;
}

.track-card h4 {
  color: #0b2148;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.track-card > p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.track-card .badge-row {
  justify-content: flex-start;
  margin-bottom: 0;
}

/* Job cards */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.job-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 33, 72, 0.08);
  border-color: #eecd93;
}

.job-card h4 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-meta span {
  background-color: #fef3e2;
  color: #b45309;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}

.job-note {
  text-align: center;
  color: #9ca3af;
  font-size: 0.82rem;
  font-style: italic;
}

/* Recruitment notice */
.notice-box {
  background-color: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 18px;
  padding: 32px 36px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.notice-box p {
  color: #7c2d12;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

.notice-box strong {
  color: #9a3412;
}

@media (max-width: 640px) {
  .track-card,
  .job-card {
    padding: 22px 20px;
  }

  .notice-box {
    padding: 26px 24px;
  }
}

/* ===================================================
   Insights page
=================================================== */

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-pill {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-pill:hover {
  border-color: #eecd93;
  color: #b45309;
}

.filter-pill.is-active {
  background: linear-gradient(90deg, #d97706, #f5b754);
  border-color: transparent;
  color: #0b2148;
}

/* Category-tinted thumbnails (no stock photography) */
.insight-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #f5b754;
  position: relative;
  overflow: hidden;
}

.insight-thumb svg {
  width: 30%;
  height: 30%;
  max-width: 64px;
  max-height: 64px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.insight-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.15;
}

.insight-thumb--ai { background: linear-gradient(155deg, #0b2148, #7c3a00); }
.insight-thumb--communication { background: linear-gradient(155deg, #0b2148, #0e4f6e); }
.insight-thumb--software { background: linear-gradient(155deg, #0b2148, #1c3d75); }
.insight-thumb--infrastructure { background: linear-gradient(155deg, #111827, #374151); color: #cbd5e1; }
.insight-thumb--cybersecurity { background: linear-gradient(155deg, #1f2937, #7f1d1d); }
.insight-thumb--engineering { background: linear-gradient(155deg, #0b2148, #14532d); }

/* Featured article (large horizontal card) */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 44px;
  box-shadow: 0 20px 45px rgba(11, 33, 72, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(11, 33, 72, 0.14);
}

.featured-article .insight-thumb--lg {
  border-radius: 0;
  min-height: 280px;
}

.featured-article-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-article-body h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.7rem;
  line-height: 1.3;
  margin: 14px 0 14px;
}

.featured-article-body p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Article grid cards */
.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

.insight-card .insight-thumb {
  width: 100%;
  height: 160px;
  border-radius: 0;
  flex-shrink: 0;
}

.insight-card > .insight-category,
.insight-card h4,
.insight-card > p,
.insight-card .insight-meta,
.insight-card .mini-link {
  padding-left: 22px;
  padding-right: 22px;
}

.insight-card .insight-category {
  margin-top: 20px;
}

.insight-card h4 {
  color: #0b2148;
  font-size: 1.02rem;
  line-height: 1.4;
  margin: 12px 0 8px;
}

.insight-card > p {
  color: #6b7280;
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.insight-card .insight-meta {
  margin-bottom: 14px;
}

.insight-card .mini-link {
  margin-bottom: 22px;
}

.insight-category {
  display: inline-block;
}

.insight-meta {
  display: block;
  color: #9ca3af;
  font-size: 0.78rem;
}

/* Engineering perspective bullet list */
.perspective-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  max-width: 620px;
  margin: 0 auto 36px;
}

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

  .featured-article .insight-thumb--lg {
    min-height: 200px;
  }
}

@media (max-width: 640px) {
  .featured-article-body {
    padding: 28px 24px;
  }

  .perspective-list {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   Case studies page
=================================================== */

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.case-study-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-study-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11, 33, 72, 0.1);
}

.case-study-card .insight-thumb {
  width: 100%;
  height: 140px;
  border-radius: 0;
}

.case-study-body {
  padding: 28px 26px;
  text-align: left;
}

.case-study-body h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 12px 0 12px;
}

.case-study-body > p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.case-study-label {
  color: #b45309;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.case-study-body .badge-row {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.case-study-body .mini-flow {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.case-study-tags {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Latest insights simple list */
.latest-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.latest-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.latest-list li:last-child {
  border-bottom: none;
}

.latest-list li span:last-child {
  color: #0b2148;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .latest-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===================================================
   Legal pages (Privacy / Terms)
=================================================== */

.legal-doc p {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.legal-doc h2 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.25rem;
  margin: 40px 0 14px;
}

.legal-doc ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-doc li {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-doc strong {
  color: #0b2148;
}

.legal-doc a {
  color: #b45309;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #eecd93;
}

.legal-doc a:hover {
  color: #0b2148;
}

/* ===================================================
   Technology stack & integrations (Solutions page)
=================================================== */

.tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 28px 0 44px;
}

.tech-stack-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 112px;
  padding: 8px;
  border-radius: 14px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(11, 33, 72, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.tech-stack-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(11, 33, 72, 0.12);
}

.tech-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.integration-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.integration-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(11, 33, 72, 0.1);
  border-color: #eecd93;
}

.integration-badge img {
  width: 32px;
  height: 32px;
}

@media (max-width: 640px) {
  .tech-stack-item {
    width: 70px;
    height: 94px;
  }

  .integration-badge {
    width: 54px;
    height: 54px;
  }

  .integration-badge img {
    width: 26px;
    height: 26px;
  }
}

/* ===================================================
   Marquee wall (sliding logo strip)
=================================================== */

.marquee-wall {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.marquee-wall--sm {
  max-width: 100%;
  margin: 0 0 28px;
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 16px;
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
}

.marquee-row--left .marquee-track {
  animation: marqueeLeft 32s linear infinite;
}

.marquee-row--right .marquee-track {
  animation: marqueeRight 32s linear infinite;
}

.marquee-wall:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee-fade--left,
.marquee-fade--right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
  z-index: 1;
}

.marquee-fade--left {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.marquee-fade--right {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.sol-section--alt .marquee-fade--left {
  background: linear-gradient(90deg, #f8f7f4, transparent);
}

.sol-section--alt .marquee-fade--right {
  background: linear-gradient(270deg, #f8f7f4, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .marquee-fade--left,
  .marquee-fade--right {
    width: 40px;
  }
}

/* ===================================================
   Premium polish — photos, badges, heroes, trust
=================================================== */

.marquee-wall--sm .tech-stack-item {
  background-color: #ffffff;
  border-color: #e5e7eb;
}

.marquee-wall--sm .tech-stack-item img {
  filter: none;
  opacity: 1;
}

.badge-solid {
  background-color: #0b2148;
  color: #ffffff;
  border-color: #0b2148;
}

.badge-row--topics {
  justify-content: flex-start;
  gap: 6px 18px;
}

.badge-row--topics .badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2px 0;
  color: #4b5563;
  font-weight: 500;
  font-size: 0.84rem;
}

.badge-solid svg {
  color: #f5b754;
}

.sol-hero--compact {
  padding: 64px 0 48px;
}

.sol-hero--compact h1 {
  margin-bottom: 16px;
}

.sol-hero--editorial {
  padding: 56px 0 40px;
  text-align: left;
  background: linear-gradient(180deg, #f8f7f4 0%, #ffffff 100%);
}

.sol-hero--editorial .container {
  max-width: 820px;
}

.sol-hero--editorial h1 {
  font-size: 2.15rem;
  max-width: 720px;
  margin: 12px 0 14px;
}

.sol-hero--editorial .sol-lead {
  max-width: 640px;
  margin: 0;
}

.sol-hero--editorial .sol-eyebrow {
  margin-bottom: 4px;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  max-width: 640px;
}

.section-header--left .sol-eyebrow,
.section-header--left h2,
.section-header--left .sol-lead {
  margin-left: 0;
}

.trust-strip {
  background-color: #0b2148;
  padding: 36px 0;
}

.trust-strip .numbers-row {
  gap: 0;
}

.trust-strip .numbers-stat {
  padding: 8px 20px;
  border-left-color: rgba(255, 255, 255, 0.12);
}

.trust-strip .numbers-stat p {
  display: none;
}

.trust-strip .numbers-stat strong {
  color: #f5b754;
  font-size: 2rem;
  margin-bottom: 4px;
}

.trust-strip .numbers-stat span {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.insight-thumb--ai::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.42) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity: 0.22;
}

.insight-thumb--communication::before {
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 11px);
  opacity: 0.35;
}

.insight-thumb--software::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.28;
}

.insight-thumb--infrastructure::before {
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 13px);
  opacity: 0.4;
}

.insight-thumb--cybersecurity::before {
  background-image: repeating-radial-gradient(circle at 50% 115%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px);
  opacity: 0.4;
}

.insight-thumb--engineering::before {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 7px, transparent 7px 16px);
  opacity: 0.32;
}

.insight-thumb--ai svg {
  transform: translate(-10px, 8px);
}

.insight-thumb--communication svg {
  transform: translate(12px, -8px);
}

.insight-thumb--software svg {
  align-self: flex-end;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: 22px;
}

.insight-thumb--infrastructure svg {
  transform: translate(-8px, -10px);
}

.insight-thumb--cybersecurity svg {
  transform: translate(10px, 10px);
}

.insight-thumb--engineering svg {
  transform: translate(0, 12px);
}

.insight-thumb--lg svg {
  transform: none;
  margin: 0;
  align-self: center;
}

.proof-bar {
  padding: 28px 0 8px;
  background: #ffffff;
  border-bottom: 1px solid #eeeae3;
}

.proof-bar-label {
  text-align: center;
  color: #9ca3af;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
}

.proof-logos img {
  height: 28px;
  width: auto;
  opacity: 0.72;
  filter: grayscale(0.15);
}

.dash-caption {
  display: block;
  text-align: center;
  color: #9ca3af;
  font-size: 0.75rem;
  margin: -8px auto 28px;
}

@media (max-width: 900px) {
  .pillar-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sol-hero--editorial h1 {
    font-size: 1.7rem;
  }

  .pillar-row {
    grid-template-columns: 1fr;
  }

  .trust-strip .numbers-stat {
    padding: 16px 12px;
  }

  .leader-photo-wrap {
    width: 148px;
    height: 148px;
  }
}

/* ===================================================
   About page
=================================================== */

.about-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0b2148;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/about-global.jpg");
  background-size: cover;
  background-position: center 42%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 33, 72, 0.88) 0%, rgba(11, 33, 72, 0.58) 48%, rgba(11, 33, 72, 0.22) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 72px;
}

.about-hero h1 {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 3.15rem;
  line-height: 1.15;
  margin: 14px 0 22px;
  max-width: 16ch;
}

.about-hero p {
  color: #d7deea;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 560px;
}

.about-section-head {
  margin-bottom: 40px;
}

#what-we-build .badge-row,
#what-we-build .hero-cta-row {
  justify-content: flex-start;
}

#what-we-build .ai-cap-grid {
  margin-bottom: 4px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.about-story-copy .sol-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.about-story-copy h2 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 2.15rem;
  line-height: 1.25;
  margin-bottom: 28px;
  max-width: 18ch;
}

.about-story-copy p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-story-aside {
  position: sticky;
  top: 110px;
  color: #e8edf5;
  padding: 44px 40px;
  border-radius: 4px 20px 20px 4px;
  border-left: 4px solid #d97706;
  overflow: hidden;
  background-color: #0b2148;
  background-image: url("images/about-towers.jpg");
  background-size: cover;
  background-position: center;
}

.about-story-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 72, 0.84) 0%, rgba(11, 33, 72, 0.9) 100%);
}

.about-story-aside > * {
  position: relative;
  z-index: 1;
}

.about-story-aside blockquote {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 24px;
}

.about-story-aside p {
  color: #b9c4d6;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e5e7eb;
}

.about-principles li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #e5e7eb;
}

.about-principles span {
  font-family: "Playfair Display", serif;
  color: #d97706;
  font-size: 1.35rem;
  font-weight: 700;
  padding-top: 4px;
}

.about-principles h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.about-principles p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 0;
  min-height: 460px;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 33, 72, 0.06);
}

.about-mv-copy {
  padding: 48px 44px;
}

.about-mv-copy .sol-eyebrow {
  display: inline-block;
  margin-bottom: 28px;
}

.about-mv-block + .about-mv-block {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #eeeae3;
}

.about-mv-block h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.about-mv-block p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-mv-photo {
  position: relative;
  background-image: url("images/about-atrium.jpg");
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.about-mv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 33, 72, 0.08) 0%, rgba(11, 33, 72, 0.28) 100%);
}

.about-leader {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 36px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid #eeeae3;
}

.about-leader:first-of-type {
  border-top: 1px solid #eeeae3;
}

.about-leader .leader-photo-wrap {
  margin: 0;
}

.about-leader-body .sol-subtitle-sm {
  display: block;
  margin-bottom: 6px;
}

.about-leader-body h3 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.about-leader-body > p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 640px;
}

.about-leader-focus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.about-leader-quote {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.45rem;
  line-height: 1.45;
  max-width: 720px;
  margin: 40px 0 0;
  padding-left: 24px;
  border-left: 3px solid #d97706;
}

.about-eng-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #e5e7eb;
}

.about-eng-item {
  padding: 28px 24px 8px 0;
  border-right: 1px solid #e5e7eb;
  padding-right: 24px;
}

.about-eng-item:last-child {
  border-right: none;
  padding-right: 0;
}

.about-eng-item h4 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.about-eng-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-close {
  position: relative;
  background-color: #0b2148;
  background-image: url("images/about-city.jpg");
  background-size: cover;
  background-position: center 40%;
  padding: 100px 0;
  overflow: hidden;
}

.about-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 33, 72, 0.9) 0%, rgba(11, 33, 72, 0.72) 55%, rgba(11, 33, 72, 0.5) 100%);
}

.about-close .container {
  position: relative;
  z-index: 1;
}

.about-close-kicker {
  color: #f5b754;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-close h2 {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 2.15rem;
  line-height: 1.3;
  max-width: 18ch;
  margin-bottom: 22px;
}

.about-close p:last-child {
  color: #b9c4d6;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}

@media (max-width: 980px) {
  .about-story,
  .about-mv,
  .about-eng-grid {
    grid-template-columns: 1fr;
  }

  .about-story-aside {
    position: static;
    border-radius: 16px;
  }

  .about-mv-photo {
    min-height: 240px;
  }

  .about-eng-item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
  }

  .about-eng-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .about-hero {
    min-height: 440px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero-inner {
    padding: 80px 24px 52px;
  }

  .about-story-copy h2,
  .about-close h2 {
    font-size: 1.7rem;
  }

  .about-leader {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .about-leader-focus {
    grid-template-columns: 1fr;
  }

  .about-principles li {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .about-mv-copy {
    padding: 36px 24px;
  }
}

/* ===================================================
   Contact page
=================================================== */

.contact-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0b2148;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/about-towers.jpg");
  background-size: cover;
  background-position: center 30%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 33, 72, 0.9) 0%, rgba(11, 33, 72, 0.62) 50%, rgba(11, 33, 72, 0.28) 100%);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 64px;
}

.contact-hero h1 {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1.15;
  margin: 14px 0 20px;
  max-width: 16ch;
}

.contact-hero p {
  color: #d7deea;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
}

.contact-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero-links a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: min(100%, 260px);
  padding: 16px 20px 18px;
  background: #f5b754;
  color: #0b2148;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.contact-hero-links a:hover {
  background: #f7c56e;
}

.contact-hero-links span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7a4a0a;
}

.contact-hero-links strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b2148;
  line-height: 1.3;
  word-break: break-word;
}

.contact-desk-section {
  background-color: #f8f7f4;
}

.contact-desk {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.contact-desk-copy .sol-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.contact-desk-copy h2 {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 2.15rem;
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 16ch;
}

.contact-desk-copy > p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 460px;
}

.contact-desk .badge-row {
  justify-content: flex-start;
  margin-bottom: 36px;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.contact-direct a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: #fff8eb;
  border: 1px solid #f0d7a3;
  border-left: 4px solid #d97706;
  border-radius: 12px;
  text-decoration: none;
}

.contact-direct a:hover {
  background: #fff1d4;
  border-color: #e8c57a;
}

.contact-direct span {
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-direct strong {
  font-family: "Playfair Display", serif;
  color: #0b2148;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.contact-direct a:hover strong {
  color: #92400e;
}

.contact-next {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.contact-next li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eeeae3;
}

.contact-next span {
  font-family: "Playfair Display", serif;
  color: #d97706;
  font-size: 1.05rem;
  font-weight: 700;
  padding-top: 2px;
}

.contact-next h3 {
  font-family: "Inter", Arial, sans-serif;
  color: #0b2148;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-next p {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-partner {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 420px;
}

.contact-partner a {
  color: #0b2148;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #d97706;
}

.contact-partner a:hover {
  color: #d97706;
}

.contact-form-kicker {
  color: #9ca3af;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.contact-desk .contact-form {
  position: sticky;
  top: 110px;
}

@media (max-width: 980px) {
  .contact-desk {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-desk .contact-form {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    min-height: 400px;
  }

  .contact-hero h1 {
    font-size: 2.1rem;
  }

  .contact-hero-inner {
    padding: 80px 24px 48px;
  }

  .contact-desk-copy h2 {
    font-size: 1.7rem;
  }
}
