/* =========================================================
   CUBEON TECHNOLOGIES
   AGENTIC SYSTEMS
========================================================= */

.agentic-page {
  --agentic-navy: #07145c;
  --agentic-dark: #040a32;

  --agentic-blue: #2563ff;
  --agentic-purple: #6857ff;
  --agentic-cyan: #23b7e5;

  --agentic-text: #101828;
  --agentic-muted: #667085;

  --agentic-bg: #f7f9fd;
  --agentic-white: #ffffff;
  --agentic-border: #e3e8f2;

  --agentic-shadow: 0 20px 55px rgba(7, 20, 92, 0.09);

  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  color: var(--agentic-text);

  overflow-x: hidden;
}

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

.agentic-page .container {
  width: min(1200px, calc(100% - 48px));

  max-width: 1200px;

  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.agentic-header {
  position: sticky;

  top: 0;

  z-index: 99999;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid var(--agentic-border);

  backdrop-filter: blur(18px);

  box-shadow: 0 4px 20px rgba(7, 20, 92, 0.05);
}

.agentic-header-inner {
  min-height: 76px;

  display: flex;

  align-items: center;

  gap: 30px;
}

.agentic-logo img {
  width: auto;

  height: 60px;

  display: block;
}

.agentic-nav {
  display: flex;

  align-items: center;

  gap: 27px;

  margin-left: auto;
}

.agentic-nav a {
  color: #344054 !important;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: 0.25s;
}

.agentic-nav a:hover {
  color: var(--agentic-blue) !important;
}

.agentic-header-cta {
  min-height: 42px;

  padding: 0 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 8px;

  color: #fff !important;

  background: linear-gradient(
    135deg,
    var(--agentic-blue),
    var(--agentic-purple)
  ) !important;

  font-size: 14px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  white-space: nowrap;
}

.agentic-mobile-toggle {
  display: none;

  width: 42px;

  height: 42px;

  border: 1px solid var(--agentic-border);

  border-radius: 8px;

  background: white;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 5px;
}

.agentic-mobile-toggle span {
  width: 18px;

  height: 2px;

  background: var(--agentic-navy);
}

/* =========================================================
   MOBILE NAV
========================================================= */

.agentic-mobile-nav {
  display: none;

  position: fixed;

  top: 76px;

  left: 0;

  width: 100%;

  z-index: 99998;

  background: white;

  border-bottom: 1px solid var(--agentic-border);

  box-shadow: 0 15px 30px rgba(7, 20, 92, 0.1);
}

.agentic-mobile-nav.active {
  display: flex;

  flex-direction: column;
}

.agentic-mobile-nav a {
  padding: 15px 24px;

  color: var(--agentic-navy) !important;

  font-size: 14px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  border-bottom: 1px solid #f0f2f6;
}

/* =========================================================
   COMMON
========================================================= */

.agentic-section {
  padding: 100px 0;
}

.agentic-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 17px;

  color: var(--agentic-blue) !important;

  font-size: 13px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660 !important;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.agentic-eyebrow::before {
  content: "";

  width: 24px;

  height: 2px;

  background: linear-gradient(
    90deg,
    var(--agentic-blue),
    var(--agentic-purple)
  );
}

.agentic-section-heading {
  max-width: 760px;

  margin: 0 auto 55px;

  text-align: center;
}

.agentic-section-heading h2,
.agentic-two-column h2 {
  margin: 0 0 18px;

  color: var(--agentic-navy) !important;

  font-size: clamp(34px, 4vw, 49px) !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.12 !important;

  font-weight: 660 !important;

  letter-spacing: -1.6px;
}

.agentic-section-heading h2 span,
.agentic-two-column h2 span {
  color: var(--agentic-blue) !important;
}

.agentic-section-heading p {
  color: var(--agentic-muted) !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.75;
}

/* =========================================================
   BUTTONS
========================================================= */

.agentic-btn {
  min-height: 52px;

  padding: 0 22px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  border-radius: 8px;

  font-size: 15px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: 0.25s;
}

.agentic-btn-primary {
  color: white !important;

  background: linear-gradient(
    135deg,
    var(--agentic-blue),
    var(--agentic-purple)
  ) !important;

  box-shadow: 0 12px 28px rgba(37, 99, 255, 0.2);
}

.agentic-btn-primary:hover {
  color: white !important;

  transform: translateY(-2px);
}

.agentic-btn-outline {
  color: var(--agentic-navy) !important;

  background: white !important;

  border: 1px solid #d0d5dd !important;
}

.agentic-btn-outline:hover {
  color: var(--agentic-blue) !important;

  border-color: var(--agentic-blue) !important;
}

/* =========================================================
   HERO
========================================================= */

.agentic-hero {
  min-height: 720px;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;

  padding: 90px 0 100px;

  background-image: url("../../assets/images/hm8-bg01.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}

.agentic-hero-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

.agentic-hero-content {
  max-width: 650px;
}

.agentic-hero h1 {
  margin: 0 0 24px;

  color: #ffffff !important;

  font-size: clamp(47px, 5vw, 70px) !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.05 !important;

  letter-spacing: -3px;

  font-weight: 660 !important;
}

.agentic-hero h1 span {
  background: linear-gradient(90deg, #ffffff, var(--agentic-purple));

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent !important;
}

.agentic-hero-content > p {
  max-width: 620px;

  margin-bottom: 32px;

  color: var(--agentic-muted) !important;

  font-size: 17px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.75 !important;
}

.agentic-hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 30px;
}

.agentic-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 18px 24px;
}

.agentic-trust span {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--agentic-muted) !important;

  font-size: 14px !important;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-trust i {
  color: var(--agentic-blue);
}

/* =========================================================
   HERO VISUAL
========================================================= */

.agentic-hero-visual {
  position: relative;

  min-height: 540px;
}

.agentic-grid-bg {
  position: absolute;

  inset: 30px;

  border-radius: 50%;

  opacity: 0.5;

  background-image:
    linear-gradient(rgba(37, 99, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.06) 1px, transparent 1px);

  background-size: 28px 28px;

  mask-image: radial-gradient(circle, black, transparent 70%);
}

.agentic-core {
  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 6;

  width: 190px;

  height: 190px;

  transform: translate(-50%, -50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: white;

  background: radial-gradient(circle at 35% 30%, #283da5, #09155c 55%, #04092f);

  box-shadow:
    0 25px 70px rgba(7, 20, 92, 0.3),
    0 0 0 14px rgba(37, 99, 255, 0.06);
}

.agentic-core-icon {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 10px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    var(--agentic-blue),
    var(--agentic-purple)
  );
}

.agentic-core-icon i {
  font-size: 21px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  color: white;
}

.agentic-core > span {
  color: rgba(255, 255, 255, 0.5);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  letter-spacing: 2px;

  font-weight: 600;
}

.agentic-core strong {
  margin-top: 6px;

  color: white;

  font-size: 16px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-core small {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   NODES
========================================================= */

.agentic-node {
  position: absolute;

  z-index: 7;

  min-width: 180px;

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 13px 14px;

  border: 1px solid var(--agentic-border);

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow: 0 18px 40px rgba(7, 20, 92, 0.1);

  animation: agenticFloat 5s ease-in-out infinite;
}

.agentic-node-icon {
  width: 38px;

  height: 38px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 10px;

  color: var(--agentic-blue);

  background: #edf3ff;
}

.agentic-node strong {
  display: block;

  color: var(--agentic-navy);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-node small {
  display: block;

  margin-top: 3px;

  color: #98a2b3;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.node-one {
  top: 45px;

  left: 30px;
}

.node-two {
  top: 95px;

  right: 0;

  animation-delay: 1s;
}

.node-three {
  bottom: 70px;

  right: 15px;

  animation-delay: 2s;
}

.node-four {
  bottom: 50px;

  left: 15px;

  animation-delay: 3s;
}

@keyframes agenticFloat {
  50% {
    transform: translateY(-8px);
  }
}

/* connectors */

.agentic-line {
  position: absolute;

  z-index: 3;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 255, 0.4),
    transparent
  );

  transform-origin: left center;
}

.line-one {
  width: 180px;

  left: 170px;

  top: 170px;

  transform: rotate(25deg);
}

.line-two {
  width: 190px;

  right: 130px;

  top: 210px;

  transform: rotate(155deg);
}

.line-three {
  width: 190px;

  right: 140px;

  bottom: 175px;

  transform: rotate(205deg);
}

.line-four {
  width: 190px;

  left: 150px;

  bottom: 160px;

  transform: rotate(-25deg);
}

.agentic-status {
  position: absolute;

  bottom: 5px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 8px 13px;

  border-radius: 20px;

  color: var(--agentic-navy);

  background: white;

  border: 1px solid var(--agentic-border);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.agentic-status-dot {
  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #27c281;

  box-shadow: 0 0 0 4px rgba(39, 194, 129, 0.12);
}

/* =========================================================
   OVERVIEW
========================================================= */

.agentic-overview {
  background: white;
}

.agentic-two-column {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 85px;

  align-items: start;
}

.agentic-overview-text p {
  margin: 0 0 18px;

  color: var(--agentic-muted);

  font-size: 16px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  line-height: 1.8;
}

/* =========================================================
   ARCHITECTURE
========================================================= */

.agentic-architecture {
  background: var(--agentic-bg);
}

.agentic-architecture-grid {
  display: grid;

  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  gap: 13px;

  align-items: center;
}

.agentic-architecture-card {
  min-height: 230px;

  padding: 26px;

  position: relative;

  border: 1px solid var(--agentic-border);

  border-radius: 14px;

  background: white;

  transition: 0.3s;
}

.agentic-architecture-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--agentic-shadow);
}

.agentic-step-number {
  position: absolute;

  right: 18px;

  top: 15px;

  color: #e1e7ff;

  font-size: 27px;

  font-weight: 600;
}

.agentic-card-icon {
  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  border-radius: 12px;

  color: var(--agentic-blue);

  background: #edf3ff;
}

.agentic-architecture-card h3 {
  color: var(--agentic-navy);

  font-size: 17px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-architecture-card p {
  color: var(--agentic-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  line-height: 1.65;
}

.agentic-architecture-arrow {
  color: #a8b8e8;
}

/* =========================================================
   CAPABILITIES
========================================================= */

.agentic-capabilities {
  background: white;
}

.agentic-capability-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.agentic-capability-card {
  padding: 30px;

  border: 1px solid var(--agentic-border);

  border-radius: 14px;

  background: white;

  transition: 0.3s;
}

.agentic-capability-card:hover {
  transform: translateY(-5px);

  border-color: #c9d5ff;

  box-shadow: var(--agentic-shadow);
}

.agentic-feature-icon {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  border-radius: 12px;

  color: var(--agentic-blue);

  background: linear-gradient(135deg, #edf3ff, #f2edff);
}

.agentic-capability-card h3 {
  margin-bottom: 10px;

  color: var(--agentic-navy);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 17px;
}

.agentic-capability-card p {
  margin: 0;

  color: var(--agentic-muted);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 15px;

  line-height: 1.65;
}

/* =========================================================
   WORKFLOW
========================================================= */

.agentic-workflow {
  background: var(--agentic-bg);
}

.agentic-workflow-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 60px;

  padding: 55px;

  border-radius: 18px;

  background: var(--agentic-navy);
}

.agentic-workflow-content h2 {
  color: white;

  font-size: clamp(32px, 4vw, 44px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-weight: 660;

  line-height: 1.12;
}

.agentic-workflow-content h2 span {
  color: #7898ff;
}

.agentic-workflow-content p {
  color: rgba(255, 255, 255, 0.65);

  line-height: 1.7;
}

.agentic-text-link {
  display: inline-flex;

  gap: 8px;

  margin-top: 15px;

  color: #8ca7ff !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-weight: 600;

  text-decoration: none !important;
}

.agentic-workflow-flow {
  padding: 22px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);
}

.agentic-workflow-item {
  display: flex;

  gap: 15px;

  align-items: center;
}

.agentic-workflow-item > span {
  width: 39px;

  height: 39px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  background: linear-gradient(
    135deg,
    var(--agentic-blue),
    var(--agentic-purple)
  );

  color: white;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-weight: 660;
}

.agentic-workflow-item strong {
  display: block;

  color: white;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 15px;
}

.agentic-workflow-item small {
  color: rgba(255, 255, 255, 0.5);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-workflow-line {
  width: 1px;

  height: 22px;

  margin: 5px 0 5px 19px;

  background: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   USE CASES
========================================================= */

.agentic-use-cases {
  background: white;
}

.agentic-use-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.agentic-use-card {
  position: relative;

  min-height: 245px;

  padding: 30px;

  overflow: hidden;

  border: 1px solid var(--agentic-border);

  border-radius: 14px;

  transition: 0.3s;
}

.agentic-use-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--agentic-shadow);
}

.agentic-use-number {
  position: absolute;

  top: 16px;

  right: 20px;

  color: #e4e9ff;

  font-size: 34px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;
}

.agentic-use-card > i {
  display: block;

  margin-bottom: 22px;

  color: var(--agentic-blue);

  font-size: 24px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-use-card h3 {
  color: var(--agentic-navy);

  font-size: 18px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-use-card p {
  color: var(--agentic-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   INTEGRATIONS
========================================================= */

.agentic-integrations {
  background: var(--agentic-bg);
}

.agentic-integration-box {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 50px;

  padding: 55px;

  border-radius: 18px;

  background: linear-gradient(135deg, #09165f, #111d78);
}

.agentic-integration-box h2 {
  color: white;

  font-size: clamp(32px, 4vw, 44px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.15;

  font-weight: 660;
}

.agentic-integration-box h2 span {
  color: #7898ff;
}

.agentic-integration-box p {
  color: rgba(255, 255, 255, 0.65);
}

.agentic-integration-tags {
  display: flex;

  flex-wrap: wrap;

  align-content: center;

  gap: 10px;
}

.agentic-integration-tags span {
  padding: 11px 14px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  border-radius: 7px;

  color: rgba(255, 255, 255, 0.78);

  background: rgba(255, 255, 255, 0.05);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

/* =========================================================
   PROCESS
========================================================= */

.agentic-process {
  background: white;
}

.agentic-process-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.agentic-process-step {
  position: relative;

  padding: 30px;

  text-align: center;

  border: 1px solid var(--agentic-border);

  border-radius: 14px;

  background: white;
}

.agentic-process-step > span {
  position: absolute;

  right: 18px;

  top: 15px;

  color: #e2e7ff;

  font-weight: 660;
}

.agentic-process-step > i {
  width: 50px;

  height: 50px;

  margin: 0 auto 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--agentic-blue);

  background: #edf3ff;
}

.agentic-process-step h3 {
  color: var(--agentic-navy);

  font-size: 17px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.agentic-process-step p {
  color: var(--agentic-muted);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.65;
}

/* =========================================================
   CTA
========================================================= */

.agentic-cta {
  padding: 75px 0;

  color: white;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(104, 87, 255, 0.22),
      transparent 30%
    ),
    var(--agentic-dark);
}

.agentic-cta-inner {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 50px;
}

.agentic-cta h2 {
  margin-bottom: 12px;

  color: white;

  font-size: clamp(34px, 4vw, 47px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;
}

.agentic-cta h2 span {
  color: #829dff;
}

.agentic-cta p {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);
}

.agentic-btn-white {
  flex-shrink: 0;

  color: var(--agentic-navy) !important;

  background: white !important;
}

/* =========================================================
   CONTACT
========================================================= */

.agentic-contact {
  background: var(--agentic-bg);
}

.agentic-contact-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 70px;
}

.agentic-contact-content h2 {
  color: var(--agentic-navy);

  font-size: clamp(34px, 4vw, 49px);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 660;

  line-height: 1.12;
}

.agentic-contact-content h2 span {
  color: var(--agentic-blue);
}

.agentic-contact-content > p {
  color: var(--agentic-muted);

  line-height: 1.7;
}

.agentic-contact-details {
  display: flex;

  flex-direction: column;

  gap: 14px;

  margin-top: 28px;
}

.agentic-contact-details a {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--agentic-navy) !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  text-decoration: none !important;
}

.agentic-contact-details i {
  width: 37px;

  height: 37px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  color: var(--agentic-blue);

  background: #eaf0ff;
}

.agentic-contact-form-wrap {
  padding: 35px;

  border: 1px solid var(--agentic-border);

  border-radius: 16px;

  background: white;

  box-shadow: var(--agentic-shadow);
}

.agentic-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.agentic-form-group {
  margin-bottom: 18px;
}

.agentic-form-group label {
  display: block;

  margin-bottom: 7px;

  color: var(--agentic-navy);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  font-weight: 600;
}

.agentic-form-group input,
.agentic-form-group textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid #d9dfeb;

  border-radius: 7px;

  outline: 0;

  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
  background: white !important;
  font-size: 15px;
}

.agentic-form-group input:focus,
.agentic-form-group textarea:focus {
  border-color: var(--agentic-blue);
  background: white !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.08);
}

.agentic-form-message {
  margin-top: 12px;

  color: var(--agentic-blue);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   FOOTER
========================================================= */

.agentic-footer {
  padding: 65px 0 24px;

  background: var(--agentic-dark);

  color: white;
}

.agentic-footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 45px;

  padding-bottom: 45px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.agentic-footer-logo img {
  height: 32px;

  width: auto;

  filter: brightness(0) invert(1);
}

.agentic-footer p {
  max-width: 280px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  line-height: 1.7;
}

.agentic-footer h4 {
  color: white;

  font-size: 16px;
}

.agentic-footer a {
  display: block;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.58) !important;

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

  text-decoration: none !important;
}

.agentic-footer a:hover {
  color: white !important;
}

.agentic-footer-bottom {
  padding-top: 20px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: rgba(255, 255, 255, 0.42);

  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* =========================================================
   SCROLL TOP
========================================================= */

.agentic-scroll-top {
  position: fixed;

  right: 24px;

  bottom: 24px;

  z-index: 9999;

  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 0;

  border-radius: 50%;

  color: white;

  background: linear-gradient(
    135deg,
    var(--agentic-blue),
    var(--agentic-purple)
  );

  box-shadow: 0 10px 25px rgba(37, 99, 255, 0.25);

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: 0.25s;
}

.agentic-scroll-top.visible {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .agentic-nav {
    gap: 17px;
  }

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

  .agentic-architecture-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .agentic-nav,
  .agentic-header-cta {
    display: none !important;
  }

  .agentic-mobile-toggle {
    display: flex;
  }

  .agentic-hero-grid,
  .agentic-two-column,
  .agentic-workflow-box,
  .agentic-integration-box,
  .agentic-contact-grid {
    grid-template-columns: 1fr;
  }

  .agentic-hero-visual {
    min-height: 560px;
  }

  .agentic-capability-grid,
  .agentic-use-grid,
  .agentic-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agentic-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .agentic-page .container {
    width: calc(100% - 32px);
  }

  .agentic-section {
    padding: 70px 0;
  }

  .agentic-hero {
    padding: 60px 0;
  }

  .agentic-hero h1 {
    font-size: 40px !important;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif !important;

    letter-spacing: -1.8px;
  }

  .agentic-hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .agentic-btn {
    width: 100%;
  }

  .agentic-trust {
    flex-direction: column;

    gap: 10px;
  }

  .agentic-hero-visual {
    min-height: 470px;

    transform: scale(0.82);

    margin: -30px -40px;
  }

  .agentic-capability-grid,
  .agentic-use-grid,
  .agentic-process-grid,
  .agentic-architecture-grid {
    grid-template-columns: 1fr;
  }

  .agentic-workflow-box,
  .agentic-integration-box {
    padding: 30px 22px;
  }

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

  .agentic-contact-form-wrap {
    padding: 24px;
  }

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

  .agentic-footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }
}
/* =========================================================
   FORCE STICKY HEADER - AGENTIC SYSTEMS PAGE
========================================================= */

html,
body {
  overflow-x: clip !important;
}

.agentic-page {
  overflow: visible !important;
}

/* Main sticky header */
.agentic-page .agentic-header {
  position: sticky !important;
  position: -webkit-sticky !important;

  top: 0 !important;
  left: 0 !important;
  right: 0 !important;

  width: 100% !important;

  z-index: 999999 !important;

  background: rgba(255, 255, 255, 0.97) !important;

  border-bottom: 1px solid #e3e8f2 !important;

  box-shadow: 0 4px 20px rgba(7, 20, 92, 0.08) !important;

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

/* Prevent parent elements from breaking sticky */
.agentic-page,
.agentic-page > header,
.agentic-page > main {
  transform: none !important;
}

/* Header content */
.agentic-page .agentic-header-inner {
  min-height: 76px !important;

  display: flex !important;
  align-items: center !important;

  position: relative !important;

  z-index: 2 !important;
}
