
:root {

  --navy: #1a2b3c;
  --primary: #2f5f86;
  --primary-deep: #243f5c;
  --accent: #5b7f9a;
  --accent-bright: #7aa0b8;
  --accent-soft: #eef3f7;
  --violet: #6b7280;
  --dark: #1f2933;
  --ink: #2a3441;
  --muted: #6b7785;
  --line: #e6ebf0;
  --soft: #f5f7f9;
  --white: #ffffff;
  --success: #3d8b6e;

  --spark-magenta: #c45b9f;
  --spark-gold: #e0b04a;
  --spark-cyan: #4aa8c9;
  --spark-lime: #7db86a;
  --shadow: 0 16px 40px rgba(26, 43, 60, 0.1);
  --shadow-sm: 0 8px 20px rgba(26, 43, 60, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 78px;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
  --display: "Poppins", system-ui, sans-serif;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 1320px);
  margin-inline: auto;
}


.topbar {
  background: linear-gradient(90deg, #1a2b3c, #2f5f86);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #4aa8c9, #e0b04a, #c45b9f, #7db86a) 1;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: inherit;
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--accent-bright);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.topbar .dot {
  opacity: 0.35;
}

.socials {
  display: flex;
  gap: 0.55rem;
}

.socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 80, 145, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(11, 44, 77, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand img,
.brand svg,
.brand-logo {
  height: 44px;
  width: 44px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: #0b1220;
  box-shadow: 0 8px 18px rgba(47, 95, 134, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  letter-spacing: -0.5px;
  box-shadow: 0 8px 18px rgba(47, 95, 134, 0.22);
}

.brand-text {
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1;
}

.brand-text span {
  background: linear-gradient(90deg, #2f5f86 0%, #4aa8c9 45%, #c45b9f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand .brand-text {
  color: #ffffff;
}

.footer-brand .brand-text span {
  background: linear-gradient(90deg, #9ec9e0 0%, #e0b04a 50%, #e39ac8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand .brand-logo {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav > li {
  position: relative;
}

.nav > li > a,
.nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: var(--transition);
}

.nav > li > a:hover,
.nav > li > button:hover,
.nav > li > a.active:not(.nav-cta),
.nav > li.open > button {
  color: var(--primary);
  background: var(--accent-soft);
}

.nav .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.65;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  max-height: min(70vh, 520px);
  overflow: auto;
}

.dropdown-wide {
  min-width: min(640px, 92vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
  left: 50%;
  transform: translate(-50%, 8px);
}

.nav > li:hover > .dropdown-wide,
.nav > li.open > .dropdown-wide {
  transform: translate(-50%, 0);
}

.nav > li:hover > .dropdown,
.nav > li.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--soft);
}

.dropdown .d-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 166, 192, 0.14), rgba(17, 80, 145, 0.14));
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.dropdown strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.dropdown span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.nav-cta,
.nav > li > a.nav-cta,
.nav > li > a.nav-cta.active,
.nav > li > a.nav-cta:hover,
.nav > li > a.nav-cta:focus {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #243f5c, #2f5f86) !important;
  color: #ffffff !important;
  padding: 0.75rem 1.2rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 44, 77, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-shadow: none;
  opacity: 1;
  filter: none;
}

.nav-cta:hover,
.nav > li > a.nav-cta:hover,
.nav > li > a.nav-cta.active:hover {
  background: linear-gradient(135deg, #1a2b3c, #243f5c) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(11, 44, 77, 0.35);
  transform: translateY(-1px);
}

.nav > li > a.nav-cta.active {
  outline: 2px solid rgba(45, 200, 220, 0.55);
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0a6aa8);
  color: white;
  box-shadow: 0 12px 28px rgba(17, 80, 145, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 80, 145, 0.34);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #0b8ea5);
  color: white;
  box-shadow: 0 12px 28px rgba(15, 166, 192, 0.28);
}

.btn-accent:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(17, 80, 145, 0.25);
}

.btn-outline-dark:hover {
  background: var(--accent-soft);
  border-color: var(--primary);
}

.btn-light {
  background: white;
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}


.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #1a2b3c 0%, #2f5f86 58%, #4a6d88 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroKen 32s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(26, 43, 60, 0.88) 0%, rgba(36, 63, 92, 0.72) 52%, rgba(47, 95, 134, 0.55) 100%);
}

.hero-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(34vh, 280px);
  background-image: url("../assets/skyline.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 78%);
  pointer-events: none;
  opacity: 0.45;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  animation: floatOrb 14s ease-in-out infinite;
}

.hero-orb.one {
  width: 280px;
  height: 280px;
  background: var(--spark-cyan);
  top: -70px;
  right: 14%;
}

.hero-orb.two {
  width: 220px;
  height: 220px;
  background: var(--spark-magenta);
  bottom: 10%;
  left: 8%;
  animation-delay: -5s;
  opacity: 0.12;
}

@keyframes heroKen {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1%, -0.6%, 0); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -14px, 0); }
}

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

@keyframes nodePulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(45, 200, 220, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(45, 200, 220, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 200, 220, 0);
  }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  background: linear-gradient(90deg, #9ec9e0 0%, #e0b04a 48%, #e39ac8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 520px;
}

.hero-stats div {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.hero-stats span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-card {
  position: relative;
  border-radius: 28px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-card-top h3 {
  font-size: 1rem;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 159, 110, 0.18);
  color: #7dffc7;
  font-size: 0.72rem;
  font-weight: 600;
}

.solution-list {
  display: grid;
  gap: 0.7rem;
}

.solution-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.solution-list a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.solution-list .si {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(45, 200, 220, 0.25), rgba(17, 80, 145, 0.35));
  font-size: 1.1rem;
}

.solution-list strong {
  display: block;
  font-size: 0.92rem;
}

.solution-list span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}


.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: linear-gradient(160deg, #1a2b3c, #2a455f 55%, #3a5d7a);
  color: white;
}

.section-head {
  max-width: 700px;
  margin-bottom: 2.8rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #2f5f86, #4aa8c9 40%, #c45b9f 80%, #e0b04a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-dark .section-label {
  background: linear-gradient(90deg, #9ec9e0, #e0b04a 45%, #e39ac8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  color: var(--navy);
}

.section-dark .section-head h2 {
  color: white;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}


.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 166, 192, 0.28);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: linear-gradient(135deg, rgba(15, 166, 192, 0.14), rgba(17, 80, 145, 0.12));
  color: var(--primary);
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card .link::after {
  content: "→";
  transition: transform var(--transition);
}

.card:hover .link::after {
  transform: translateX(4px);
}

.feature-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 240px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background: linear-gradient(160deg, #0d3a66, #115091);
  box-shadow: var(--shadow-sm);
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(45, 200, 220, 0.28), transparent 35%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.feature-tile > * {
  position: relative;
  z-index: 1;
}

.feature-tile h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.feature-tile p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.feature-tile.iot {
  background: linear-gradient(160deg, #2a455f, #4a7a8c);
}
.feature-tile.cloud {
  background: linear-gradient(160deg, #243f5c, #3f6f96);
}
.feature-tile.cyber {
  background: linear-gradient(160deg, #3a3348, #5a4d6a);
}
.feature-tile.ai {
  background: linear-gradient(160deg, #2f5f86, #4d728f);
}
.feature-tile.voice {
  background: linear-gradient(160deg, #2b4d68, #4a7a94);
}
.feature-tile.ibms {
  background: linear-gradient(160deg, #334a5c, #56788f);
}


.feature-tile.cloud::after,
.feature-tile.voice::after,
.feature-tile.iot::after,
.feature-tile.cyber::after,
.feature-tile.ai::after,
.feature-tile.ibms::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  z-index: 2;
  opacity: 1;
}
.feature-tile.cloud::after { background: linear-gradient(180deg, #4aa8c9, #7db86a); }
.feature-tile.voice::after { background: linear-gradient(180deg, #e0b04a, #c45b9f); }
.feature-tile.iot::after { background: linear-gradient(180deg, #7db86a, #4aa8c9); }
.feature-tile.cyber::after { background: linear-gradient(180deg, #c45b9f, #e0b04a); }
.feature-tile.ai::after { background: linear-gradient(180deg, #4aa8c9, #c45b9f); }
.feature-tile.ibms::after { background: linear-gradient(180deg, #e0b04a, #7db86a); }

.card {
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, #4aa8c9, #e0b04a 50%, #c45b9f);
  opacity: 0.55;
}

.btn-primary {
  background: linear-gradient(135deg, #2f5f86, #3f7aa8);
  color: white;
  box-shadow: 0 12px 28px rgba(47, 95, 134, 0.25);
}

.btn-accent {
  background: linear-gradient(135deg, #4aa8c9, #2f5f86);
  color: white;
  box-shadow: 0 12px 28px rgba(74, 168, 201, 0.22);
}

.pill {
  border-color: rgba(74, 168, 201, 0.25);
}

.stat-card strong {
  background: linear-gradient(90deg, #2f5f86, #4aa8c9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.media-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 30% 20%, rgba(122, 160, 184, 0.18), transparent 40%),
    linear-gradient(145deg, #1a2b3c, #2f5f86 65%, #4a6d88);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: white;
  padding: 2rem;
  isolation: isolate;
}

.media-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 8s ease;
}

.media-frame:hover > img {
  transform: scale(1.06);
}

.media-frame > .glass {
  z-index: 2;
}

.media-frame.photo {
  background-size: cover;
  background-position: center;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.media-frame .glass {
  width: min(100%, 360px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.media-frame .glass h4 {
  margin-bottom: 0.5rem;
}

.media-frame .glass p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 26, 48, 0.05), rgba(7, 26, 48, 0.45));
}


.abstract-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 168, 201, 0.16), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(196, 91, 159, 0.1), transparent 40%),
    linear-gradient(145deg, #1a2b3c 0%, #2a455f 48%, #2f5f86 100%);
  box-shadow: var(--shadow);
  color: white;
  padding: 2rem;
  display: grid;
  align-content: center;
  gap: 1.1rem;
}

.abstract-panel .net {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, #2dc8dc 0 2px, transparent 3px),
    radial-gradient(circle at 55% 45%, #ffffff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 75% 25%, #2dc8dc 0 2px, transparent 3px),
    radial-gradient(circle at 40% 75%, #ffffff 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 85% 70%, #2dc8dc 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 48%, rgba(45, 200, 220, 0.35) 49%, transparent 51%),
    linear-gradient(35deg, transparent 48%, rgba(255, 255, 255, 0.18) 49%, transparent 51%);
  animation: nodePulse 5s ease-in-out infinite;
}

.abstract-panel .content {
  position: relative;
  z-index: 1;
}

.abstract-panel h4 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.abstract-panel p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.metric-row div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem 0.6rem;
  text-align: center;
}

.metric-row strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
}

.metric-row span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.feature-tile {
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bg-mesh {
  position: relative;
  overflow: hidden;
}

.bg-mesh::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 15% 20%, rgba(15, 166, 192, 0.08), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(17, 80, 145, 0.08), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(45, 200, 220, 0.06), transparent 32%);
  animation: floatSoft 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.bg-mesh > .container {
  position: relative;
  z-index: 1;
}

.section-soft.bg-mesh {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #eef5fa 100%);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dffc7;
  box-shadow: 0 0 0 0 rgba(125, 255, 199, 0.55);
  animation: pulse 2s infinite;
  display: inline-block;
}

.card-media {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 9;
  position: relative;
  background: linear-gradient(145deg, #0b2c4d, #115091);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-media .overlay-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 26, 48, 0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .page-hero-bg,
  .hero::before,
  .page-hero::before,
  .hero-orb,
  .bg-mesh::before,
  .abstract-panel .net,
  .live-dot,
  .eyebrow .pulse {
    animation: none !important;
  }
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.8rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
}

.check-list .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 166, 192, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}


.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}

.process-step h4 {
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}


.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}

.pill.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}


.page-hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2b3c, #2f5f86 70%, #4a6d88);
}

.page-hero.has-photo {
  background: #1a2b3c;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroKen 34s ease-in-out infinite alternate;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(26, 43, 60, 0.88) 0%, rgba(36, 63, 92, 0.74) 58%, rgba(74, 109, 136, 0.42) 100%);
}

.page-hero::before {
  content: none;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.1rem;
}

.breadcrumb a:hover {
  color: white;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 0.9rem;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}


.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: white;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(145deg, #0b2c4d, #0fa6c0);
  color: white;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.55));
}

.gallery-item > * {
  position: relative;
  z-index: 1;
}

.gallery-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.gallery-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.gallery-item.g2 {
  background: linear-gradient(145deg, #1b3a68, #4d51ff);
}
.gallery-item.g3 {
  background: linear-gradient(145deg, #12384d, #178f78);
}
.gallery-item.g4 {
  background: linear-gradient(145deg, #3a1d4f, #8a3d8f);
}
.gallery-item.g5 {
  background: linear-gradient(145deg, #4a1f2e, #c45b3e);
}
.gallery-item.g6 {
  background: linear-gradient(145deg, #0d3550, #2dc8dc);
}


.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.tab-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}


.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-card {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-info {
  background: linear-gradient(160deg, #1a2b3c, #2f5f86);
  color: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
}

.info-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row .ii {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45, 200, 220, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  margin-bottom: 0.15rem;
}

.info-row span,
.info-row a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: var(--soft);
  color: var(--ink);
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(15, 166, 192, 0.12);
}

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

.form-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(15, 159, 110, 0.1);
  color: var(--success);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.form-error-banner {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(207, 46, 46, 0.1);
  color: #b42318;
  font-weight: 600;
}

.form-error-banner.show {
  display: block;
}

.form-field .req {
  color: #c0392b;
}

.form-field .field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #b42318;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #d92d20;
  background: #fff8f7;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}

.field-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.char-count {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  margin-top: 0.25rem;
}


.hp-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}


.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 3rem;
  background:
    linear-gradient(135deg, #1a2b3c, #2f5f86 62%, #4a6d88);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 360px);
  height: 100%;
  background-image: url("../assets/skyline.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 88%;
  opacity: 0.28;
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  max-width: 560px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}


.site-footer {
  background: #171f28;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid-5 {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-brand p {
  margin: 1rem 0 1.3rem;
  max-width: 320px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand .brand-text {
  color: #ffffff;
}

.footer-brand .brand-text span {
  background: linear-gradient(90deg, #9ec9e0 0%, #e0b04a 50%, #e39ac8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-col h4 {
  color: white;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-bright);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.3rem 0 1.6rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
}

.ispa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
}


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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(17, 80, 145, 0.08);
  color: var(--primary);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 2rem 0;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.icon-box {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
}

.icon-box .emoji {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.icon-box h4 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.icon-box p {
  font-size: 0.85rem;
  color: var(--muted);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}

.logo-chip {
  padding: 0.85rem 1.2rem;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  min-width: 110px;
  text-align: center;
}

.notice {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(15, 166, 192, 0.08);
  border: 1px solid rgba(15, 166, 192, 0.18);
  color: var(--primary-deep);
  font-size: 0.92rem;
}


@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .cards-4,
  .process,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
    padding: 0.2rem 0 0.5rem 0.5rem;
    min-width: 0;
    max-height: none;
    overflow: visible;
  }

  .dropdown-wide {
    grid-template-columns: 1fr;
    left: 0;
    transform: none;
    min-width: 0;
  }

  .nav > li:hover > .dropdown-wide,
  .nav > li.open > .dropdown-wide {
    transform: none;
  }

  .nav > li.open > .dropdown {
    display: grid;
  }

  .nav > li > a,
  .nav > li > button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .cards-2,
  .cards-3,
  .cards-4,
  .process,
  .stats-row,
  .gallery,
  .form-grid,
  .icon-row,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.8rem 0;
  }

  .cta-band {
    padding: 2rem;
  }

  .topbar-left .hide-sm {
    display: none;
  }

  .page-hero {
    padding: 3.2rem 0 2.8rem;
  }
}



a.feature-tile,
a.card {
  text-decoration: none;
  color: inherit;
  display: flex;
}

a.feature-tile {
  flex-direction: column;
  justify-content: flex-end;
}

a.feature-tile:hover,
a.card:hover {
  text-decoration: none;
}


.feature-tile h3 {
  position: relative;
  padding-right: 0.5rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 1.45rem 1.4rem 1.35rem;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: linear-gradient(155deg, #1a2b3c 0%, #2f5f86 70%, #3d6f94 100%);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.solution-card .sc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.solution-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: auto;
}

.solution-card .sc-link {
  margin-top: 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}

.solution-card .sc-link::after {
  content: " →";
}


.solution-card.c1 { background: linear-gradient(155deg, #1b3348, #2f5f86 60%, #4aa8c9); }
.solution-card.c2 { background: linear-gradient(155deg, #243f5c, #3a6d93 65%, #5b8fb5); }
.solution-card.c3 { background: linear-gradient(155deg, #2a3148, #4a3d5c 55%, #c45b9f); }
.solution-card.c4 { background: linear-gradient(155deg, #1e3a4a, #2f6f86 60%, #e0b04a); }
.solution-card.c5 { background: linear-gradient(155deg, #22364a, #3d5f7a 60%, #7db86a); }
.solution-card.c6 { background: linear-gradient(155deg, #2a2838, #3f4d6a 55%, #8a6bb5); }
.solution-card.c7 { background: linear-gradient(155deg, #1a3d42, #2f6a6f 55%, #4aa8c9); }
.solution-card.c8 { background: linear-gradient(155deg, #243448, #2f5f86 60%, #7aa0b8); }
.solution-card.c9 { background: linear-gradient(155deg, #1d3b4d, #0f6a7a 60%, #2dc8a8); }
.solution-card.c10 { background: linear-gradient(155deg, #2a3040, #3d5a7a 55%, #e0b04a); }
.solution-card.c11 { background: linear-gradient(155deg, #1f3348, #355f86 60%, #9ec9e0); }
.solution-card.c12 { background: linear-gradient(155deg, #26324a, #4d51a8 55%, #7a8cff); }


.industry-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.industry-card {
  border-radius: 22px;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(47, 95, 134, 0.25);
}

.industry-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(74, 168, 201, 0.16), rgba(47, 95, 134, 0.12));
}

.industry-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.industry-card p {
  color: var(--muted);
  font-size: 0.94rem;
}


.page-hero h1 {
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.section-head h2 {
  max-width: 18ch;
}

.section-head.center h2 {
  max-width: none;
}

.split h2 {
  color: var(--navy);
}


.dropdown-wide {
  padding: 0.75rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.dropdown-wide a {
  border: 1px solid transparent;
}

.dropdown-wide a:hover {
  border-color: rgba(47, 95, 134, 0.12);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.dropdown .d-icon {
  background: linear-gradient(135deg, rgba(74, 168, 201, 0.16), rgba(47, 95, 134, 0.14));
}


.subnav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}

.subnav-chips a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.subnav-chips a:hover {
  background: var(--accent-soft);
  border-color: rgba(47, 95, 134, 0.28);
}


.site-header {
  background: rgba(255, 255, 255, 0.96);
}


.cards-3 > a.feature-tile,
.cards-4 > a.feature-tile {
  min-height: 230px;
}

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

  .dropdown-wide {
    background: transparent;
    padding: 0.2rem 0 0.5rem 0.5rem;
  }
}

@media (max-width: 720px) {
  .solutions-grid,
  .industry-band {
    grid-template-columns: 1fr;
  }
}



.d-icon,
.card-icon,
.ic,
.si,
.notice-icon,
.tick,
.ii {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.d-icon img,
.card-icon img,
.ic img,
.si img,
.notice-icon img,
.tick img,
.ii img {
  display: block;
  width: 20px;
  height: 20px;
  filter: none;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(47, 95, 134, 0.1), rgba(74, 168, 201, 0.12));
  color: var(--primary);
}

.card-icon img {
  width: 22px;
  height: 22px;

  filter: invert(28%) sepia(24%) saturate(900%) hue-rotate(170deg) brightness(90%);
}

.card-icon.num-badge {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.d-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74, 168, 201, 0.14), rgba(47, 95, 134, 0.12));
  color: var(--primary);
  flex-shrink: 0;
}

.d-icon img {
  width: 18px;
  height: 18px;
  filter: invert(28%) sepia(24%) saturate(900%) hue-rotate(170deg) brightness(90%);
}

.ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(74, 168, 201, 0.14), rgba(47, 95, 134, 0.12));
}

.ic img {
  width: 22px;
  height: 22px;
  filter: invert(28%) sepia(24%) saturate(900%) hue-rotate(170deg) brightness(90%);
}

.si {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45, 200, 220, 0.12), rgba(17, 80, 145, 0.2));
}

.si img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15, 166, 192, 0.12);
  flex-shrink: 0;
}

.tick img {
  width: 12px;
  height: 12px;
  filter: invert(42%) sepia(40%) saturate(500%) hue-rotate(140deg);
}

.notice-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(47, 95, 134, 0.1);
  flex-shrink: 0;
}

.notice-icon img {
  width: 18px;
  height: 18px;
  filter: invert(28%) sepia(24%) saturate(900%) hue-rotate(170deg) brightness(90%);
}

.info-row .ii {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45, 200, 220, 0.12);
}

.info-row .ii img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}


.dropdown-solutions {
  min-width: min(520px, 92vw);
  padding: 0.85rem;
  border-radius: 18px;
  left: 0;
  transform: translateY(8px);
  background: #fff;
}

.nav > li:hover > .dropdown-solutions,
.nav > li.open > .dropdown-solutions {
  transform: translateY(0);
}

.dropdown-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}

.dropdown-heading {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.35rem 0.4rem 0.55rem;
}

.dropdown-col {
  display: grid;
  gap: 0.15rem;
  align-content: start;
}

.dropdown-col .dropdown-heading {
  grid-column: auto;
}

.dropdown-solutions a {
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  gap: 0.7rem;
}

.dropdown-solutions a strong {
  font-size: 0.9rem;
  font-weight: 600;
}


.dropdown-solutions a span span {
  display: none;
}

.dropdown-wide {

  min-width: min(520px, 92vw);
}

@media (max-width: 1024px) {
  .dropdown-solutions,
  .dropdown-wide {
    min-width: 0;
    left: 0;
    transform: none;
    background: transparent;
    padding: 0.25rem 0 0.5rem 0.35rem;
  }
  .nav > li:hover > .dropdown-solutions,
  .nav > li.open > .dropdown-solutions {
    transform: none;
  }
  .dropdown-cols {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}


.partners-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.partners-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(74, 168, 201, 0.1), transparent 35%),
    linear-gradient(145deg, #ffffff 0%, #f4f8fb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.partners-copy h2 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0.35rem 0 0.85rem;
  max-width: 16ch;
}

.partners-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}

.partners-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners-capabilities li {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(27, 44, 60, 0.08);
  box-shadow: 0 8px 22px rgba(26, 43, 60, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 95, 134, 0.18);
  box-shadow: 0 14px 30px rgba(26, 43, 60, 0.1);
}

.partner-logo img {
  width: 100%;
  max-width: 148px;
  height: 44px;
  object-fit: contain;
}


.logo-strip.partners-strip {
  gap: 1rem;
  justify-content: stretch;
}

.logo-strip.partners-strip .partner-logo {
  flex: 1 1 140px;
}

@media (max-width: 1024px) {
  .partners-panel {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .partners-copy h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .partners-panel {
    padding: 1.35rem;
  }
  .partners-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.partners-logos-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accreditations-section {
  padding-top: 0.5rem;
}

.accreditations-panel {
  background:
    radial-gradient(circle at 12% 20%, rgba(11, 44, 77, 0.06), transparent 35%),
    linear-gradient(145deg, #ffffff 0%, #f3f7fb 100%);
}

.iso-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: center;
}

.iso-logo {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 0.75rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(27, 44, 60, 0.08);
  box-shadow: 0 8px 22px rgba(26, 43, 60, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.iso-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26, 43, 60, 0.1);
}

.iso-logo img {
  width: 100%;
  max-width: 140px;
  height: 100px;
  object-fit: contain;
}

.footer-grid-5 {
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .partners-logos-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .iso-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-grid-5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .partners-logos-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .iso-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid-5 {
    grid-template-columns: 1fr;
  }
}
