:root {
  --navy: #07243c;
  --navy-2: #0c3557;
  --blue: #0a77a8;
  --teal: #05a7a0;
  --teal-dark: #067b78;
  --gold: #f2b23f;
  --green: #69b65b;
  --ink: #142534;
  --muted: #637286;
  --soft: #f4f8fb;
  --white: #ffffff;
  --line: rgba(20, 37, 52, 0.12);
  --shadow: 0 24px 80px rgba(7, 36, 60, 0.16);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 76px 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9999;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(7, 36, 60, 0.12);
}

.navbar {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.site-header.scrolled .brand {
  color: var(--navy);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.78;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .nav-links {
  border-color: rgba(7, 36, 60, 0.12);
  background: rgba(244, 248, 251, 0.9);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header.scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  background: rgba(10, 119, 168, 0.1);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), #ffd981);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(242, 178, 63, 0.25);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--white);
}

.site-header.scrolled .nav-toggle span {
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(5, 167, 160, 0.35), transparent 34%),
              linear-gradient(135deg, #071b2e 0%, #092a4e 49%, #075d70 100%);
  color: var(--white);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-bg::before {
  width: 520px;
  height: 520px;
  top: 12%;
  right: -160px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-bg::after {
  width: 240px;
  height: 240px;
  left: 6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(242, 178, 63, 0.28), transparent 65%);
  animation: pulseGlow 5s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.1rem, 3.65vw, 3.95rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffd977);
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(242, 178, 63, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

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

.full {
  width: 100%;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card img {
  width: min(100%, 640px);
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.25));
}

.metric-card {
  position: absolute;
  width: 172px;
  min-height: 106px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--blue);
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.25;
}

.metric-one {
  left: 0;
  top: 19%;
}

.metric-two {
  right: 0;
  bottom: 8%;
  animation-delay: 1.1s;
}

.section-heading h2,
.center-heading h2,
.ai-copy h2,
.trust-card h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.75vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.center-heading {
  max-width: 850px;
  margin: 0 auto 44px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading .eyebrow::before {
  display: none;
}

.center-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}


.about .section-heading {
  max-width: 900px;
}

.about-copy {
  max-width: 100%;
}

.about-copy > p {
  margin: 0;
  max-width: 1040px;
  color: var(--muted);
  font-size: 1.06rem;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.vision-mission article {
  position: relative;
  min-height: 178px;
  padding: 30px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(7, 36, 60, 0.06);
}

.vision-mission span {
  color: var(--teal);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.vision-mission h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.vision-mission p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.pillar-wrap {
  margin-top: 58px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(7, 36, 60, 0.08);
}

.pillar-title {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.pillar-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pillar-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 22px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--blue), var(--teal));
}

.pillar-grid article:nth-child(2) { background: linear-gradient(145deg, #078b87, #6abe76); }
.pillar-grid article:nth-child(3) { background: linear-gradient(145deg, #f09a3e, #f2c24e); color: var(--navy); }
.pillar-grid article:nth-child(4) { background: linear-gradient(145deg, #14609a, #0aa3b3); }
.pillar-grid article:nth-child(5) { background: linear-gradient(145deg, #d95761, #f0a35b); }

.pillar-grid i {
  font-style: normal;
  font-size: 2rem;
  margin-bottom: auto;
}

.pillar-grid strong {
  display: block;
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.15;
}

.pillar-grid small {
  display: block;
  margin-top: 8px;
  opacity: 0.84;
  line-height: 1.35;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 286px;
  padding: 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 18px 44px rgba(7, 36, 60, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(5, 167, 160, 0.35);
  box-shadow: 0 26px 70px rgba(7, 36, 60, 0.12);
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(5, 167, 160, 0.1);
  font-size: 1.8rem;
}

.service-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.highlight-card {
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  color: var(--ink);
  border-color: var(--line);
}

.highlight-card h3 {
  color: var(--navy);
}

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

.highlight-card .icon {
  background: rgba(5, 167, 160, 0.1);
}

.motion-panel {
  overflow: hidden;
  margin-top: 28px;
  border-radius: 999px;
  border: 1px solid rgba(7, 36, 60, 0.1);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 22px 70px rgba(7, 36, 60, 0.12);
}

.motion-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.motion-track span {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  font-weight: 900;
}

.ai-section {
  color: var(--white);
  background: radial-gradient(circle at 15% 20%, rgba(242, 178, 63, 0.18), transparent 28%),
              linear-gradient(135deg, #071b2e, #063d56 56%, #087c80);
  overflow: hidden;
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: center;
}

.ai-copy h2 {
  color: var(--white);
}

.ai-copy p {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.flow-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.flow-step {
  min-height: 220px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}

.flow-step.active {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

.flow-step span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 40px;
}

.flow-step strong {
  display: block;
  font-size: 1.28rem;
}

.flow-step small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.flow-arrow {
  display: none;
}

.markets {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.markets-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.markets .section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.market-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

.market-map {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #092a4e, #0a8a8f);
  box-shadow: var(--shadow);
}

.market-map::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.market-map::after {
  content: "";
  position: absolute;
  inset: 92px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: rotateSlow 22s linear infinite;
}

.map-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(242, 178, 63, 0.45);
  animation: rotateSlow 28s linear infinite reverse;
}

.orbit-one { inset: 134px; }
.orbit-two { inset: 190px; animation-duration: 17s; }

.map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #fff1ba);
  font-weight: 1000;
  font-size: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.pin {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  animation: floatCard 5s ease-in-out infinite;
}

.pin small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.pin-one { top: 54px; left: 60px; }
.pin-two { right: 48px; top: 138px; animation-delay: 0.8s; }
.pin-three { left: 64px; bottom: 86px; animation-delay: 1.4s; }
.pin-four { right: 72px; bottom: 58px; animation-delay: 2s; }

.trust {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}

.trust-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

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

.trust-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-stack article {
  min-height: 100%;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 36, 60, 0.06);
}

.trust-stack h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.trust-stack article:nth-child(1) h3 { color: var(--teal-dark); }
.trust-stack article:nth-child(2) h3 { color: #d9822b; }
.trust-stack article:nth-child(3) h3 { color: var(--blue); }

.trust-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.cyber-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #07243c, #0a687e);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cyber-panel h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cyber-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.cyber-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cyber-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 800;
}

.advantage {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-item {
  min-height: 210px;
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(7, 36, 60, 0.06);
}

.advantage-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
}

.advantage-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.values span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff7df;
  border: 1px solid rgba(242, 178, 63, 0.3);
  font-weight: 900;
}

.contact {
  color: var(--white);
  background: radial-gradient(circle at 85% 20%, rgba(242, 178, 63, 0.18), transparent 28%),
              linear-gradient(135deg, #071b2e, #064056 57%, #087c80);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.looking-ahead {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.looking-ahead strong {
  color: var(--gold);
}

.looking-ahead span {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 36, 60, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fbfd;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(5, 167, 160, 0.13);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 32px 0;
  background: #041827;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid p {
  margin: 6px 0 0;
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

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

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

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

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50% { transform: scale(1.08); opacity: 0.45; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .ai-grid,
  .markets-grid,
  .trust-grid,
  .cyber-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

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

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

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

  .pillar-grid article:last-child {
    grid-column: 1 / -1;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .trust-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .site-header.scrolled .nav-links a {
    justify-content: flex-start;
    color: var(--navy);
    min-height: 46px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .metric-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-card {
    display: block;
    min-height: auto;
  }

  .flow-card,
  .service-grid,
  .advantage-grid,
  .cyber-grid {
    grid-template-columns: 1fr;
  }

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

  .market-map {
    min-height: 470px;
  }

  .pin {
    max-width: 210px;
  }

  .pin-one { top: 38px; left: 30px; }
  .pin-two { right: 26px; top: 126px; }
  .pin-three { left: 26px; bottom: 96px; }
  .pin-four { right: 28px; bottom: 42px; }

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

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-pad-sm {
    padding: 58px 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .pillar-wrap,
  .contact-form,
  .cyber-panel,
  .trust-card {
    padding: 22px;
  }

  .market-map {
    min-height: 420px;
  }

  .map-core {
    width: 96px;
    height: 96px;
    font-size: 1.5rem;
  }
}
