@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #1f1f1f;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

/* =========================
   HEADER / NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 20px 50px;
  transition: 0.3s ease;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;

}

.navbar.scrolled {
  padding: 10px 50px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

}

.nav-wrapper {

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 200px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.42);
  padding: 14px 30px;
  border-radius: 50px;
  /* backdrop-filter: blur(12px); */
}

.nav-links>a,
.services-toggle {
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links>a:hover,
.services-toggle:hover {
  color: #f25532;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-btn {
  background: #ffffff;
  color: #0a0a0a;
  padding: 0px 8px 0px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-btn span,
.primary-btn span,
.roadmap-cta-btn span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.contact-btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  justify-self: end;
  line-height: 1;
  color: #111111;
  z-index: 100001;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.services-toggle {
  cursor: pointer;
  user-select: none;
  color: #f25532;
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-menu {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 10px 12px;
  display: none;
  z-index: 99999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.services-dropdown.active .services-menu {
  display: block;
}

.services-menu a {
  display: block;
  color: #101828 !important;
  text-align: start;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 8px;
  text-decoration: none;
  border-bottom: 1px solid #ebebeb;
  border-radius: 6px;
}

.services-menu a:hover {
  color: #f25532 !important;
  /* background: rgba(242, 85, 50, 0.06); */
}

.services-menu a:last-child {
  border-bottom: none;
}

/* =========================
   HERO
========================= */
.agentic-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 90px 80px 70px;
  /* min-height: 680px; */
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleY(-1);
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 42%,
      #ffffff 76%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.version-tabs {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 38px;
}

.version-tabs a {
  font-size: 12px;
  border-radius: 22px;
  color: #101828;
  padding: 6px 10px;
}

.version-tabs a.active {
  color: #f25532;
  font-weight: 700;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #000000;
}

.hero-content h1 {
  font-size: clamp(30px, 64px, 67px);
  line-height: 1.05;
  font-weight: 600;
  color: #292524;
  margin-bottom: 12px;
}

.hero-content h1 em {
  font-family: 'Playfair Display', serif;
  color: #f25532;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #4f4f4f;
  max-width: 900px;
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #292524;
  color: #FAFAF9;
  padding: 5px 7px 5px 24px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
}

.primary-btn span {
  width: 34px;
  height: 34px;
  background: #f25532;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  padding: 13px 30px;
  border: 1px solid #d6d6d6;
  border-radius: 40px;
  color: #4b4b4b;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
}

/* =========================
   HONEST SECTION
========================= */
.honest-section {
  background: #ffffff;
  padding: 28px 8% 70px;
  border-top: 1px solid #e3e3e3;
}

.honest-container,
.services-practice-container,
.capabilities-container,
.work-container,
.capability-showcase-container,
.process-container,
.roadmap-cta-container {
  max-width: 1180px;
  margin: 0 auto;
}

.honest-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}

.honest-stats span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.honest-stats p {
  font-size: 14px;
  font-weight: 600;
  color: #101828;
}

.honest-title {
  margin-bottom: 24px;
}

.honest-title span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000000;
}

.honest-title h2 {
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  color: #101828;
  margin: 8px 0 0;
}

.honest-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 42px 64px;
  min-height: 190px;
  border: 1px solid #f1f1f1;
  background-image: url("asset/Container-card-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.honest-card-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.honest-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #101828;
  margin: 0 0 22px;
}

.honest-card em {
  color: #F25532;
  font-style: italic;
}

.honest-card a {
  font-size: 13px;
  color: #f25532;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
   PRACTICE CARDS
========================= */
.services-practice-section {
  background: #ffffff;
  padding: 40px 8% 100px;
}

.services-practice-title {
  margin-bottom: 15px;
}

.services-practice-title span,
.capabilities-title span,
.capability-showcase-title span,
.process-title span,
.principle-content span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.services-practice-title h2,
.capabilities-title h2,
.capability-showcase-title h2,
.process-title h2,
.principle-content h2 {
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  color: #101828;
  margin: 0;
  letter-spacing: -1px;
}

.services-practice-title h2 em,
.capabilities-title h2 em,
.cap-main em,
.work-title h2 em,
.work-card h3 em,
.capability-showcase-title h2 em,
.capability-card h3 em,
.process-title em,
.principle-content em,
.roadmap-cta-content h2 em {
  color: #f25532;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.practice-grid,
.capability-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.practice-card {
  position: relative;
  background: #F1F1F1;
  padding: 15px 16px 22px;
  min-height: 350px;
  border-radius: 6px 6px 0 0;

  clip-path: polygon(0 0,
      100% 0,
      100% calc(100% - 42px),
      calc(100% - 30px) calc(100% - 42px),
      calc(100% - 42px) 100%,
      0 100%);

  /* Correct shadow */
  filter: drop-shadow(30 44px 44px rgba(0, 0, 0, 0.82));
}

.active {
  color: #ff5b2e !important;
}

.practice-card:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px !important;
}

.practice-card:hover,
.capability-card:hover {
  /* transform: translateY(-8px) scale(1.02); */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}


.practice-card::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.card-no {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #F25532;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.practice-card h3,
.capability-card h3 {
  font-size: 22px;
  line-height: 1.28;
  font-weight: 700;
  color: #101828;
  margin: 0 0 15px;
}

.practice-card p,
.capability-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4A5565;
  margin: 0 0 15px;
}

.tags,
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags {
  border-top: 1px solid #dcdcdc;
  padding-top: 12px;
}

.tags span,
.work-tags span {
  font-size: 11px;
  line-height: 1;
  color: #6B7280;
  background: #ffffff;
  border-top: 1px solid #E3E3E3;
  border-radius: 30px;
  padding: 8px 12px;
  white-space: nowrap;
}

/* =========================
   CAPABILITIES LIST
========================= */
.capabilities-section {
  background: #ffffff;
  padding: 0px 8% 50px;
}

.capabilities-title {
  margin-bottom: 30px;
}

.capability-row {
  display: grid;
  grid-template-columns: 190px 330px 1fr;
  gap: 35px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  align-items: start;
}

.capability-row:first-child {
  border-top: none;
}

.cap-label {
  font-size: 11px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.cap-main {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  color: #101828;
}

.cap-desc {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: #4A5565;
}

/* =========================
   WORK SECTION
========================= */
.work-section {
  background: #ffffff;
  padding: 0px 8% 80px;
}

.work-title {
  margin-bottom: 15px;
}

.work-title h2 {
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1.22;
  font-weight: 500;
  color: #111827;
  margin: 0;
  letter-spacing: -0.8px;
}

.work-list {
  border-radius: 16px;
  overflow: hidden;
}

.work-card {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 80px;
  padding: 42px 48px;
  min-height: 190px;
}

.light-card {
  background: #f1f1f1;
  color: #111827;
}

.dark-card {
  background: #292524;
  color: #ffffff;
  border-radius: 10px;
}

.work-left>span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.work-card h3 {
  font-size: 24px;
  line-height: 1.24;
  font-weight: 700;
  margin: 0 0 18px;
  color: #101828;
}

.work-right p {
  font-size: 13px;
  line-height: 1.65;
  color: #536070;
  margin: 0;
}

.dark-card .work-right p {
  color: #FFFFFFA6;
}

.dark-card .work-tags span {
  color: #FFFFFFB2;
  border-top: 1px solid #FFFFFF26;
  background: #FFFFFF12;

}

/* =========================
   CAPABILITY SHOWCASE
========================= */
.capability-showcase-section {
  background: #ffffff;
  padding: 0px 8% 80px;
}

.capability-showcase-title {
  margin-bottom: 20px;
}

.capability-showcase-title p {
  max-width: 1120px;
  font-size: 14px;
  line-height: 1.45;
  color: #4A5565;
  margin: 10px 0 0;
}

.capability-card {
  background: #f1f1f1;
  padding: 20px 28px 42px;
  min-height: 290px;
  border-radius: 6px 6px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), calc(100% - 30px) calc(100% - 42px), calc(100% - 42px) 100%, 0 100%);
}

.capability-card span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* =========================
   PROCESS
========================= */
.process-section {
  background: #ffffff;
  padding: 0px 8% 80px;
}

.process-title {
  margin-bottom: 25px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 90px;
}

.process-step {
  min-height: 290px;
  padding: 18px 22px 34px;
  color: #ffffff;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.process-step:last-child {
  border-right: none;
}

.process-step strong {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 34px;
  font-weight: 500;
  color: #D4D4D5;
  margin-bottom: auto;
}

.process-step h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 10px;
  color: #FFFFFF;
}

.process-step p {
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  color: #FFFFFF;
}

.step-one {
  background: #A88DFF;
}

.step-two {
  background: #6787FD;
}

.step-three {
  background: #3FB3B2;
}

.step-four {
  background: #3487EF;
}

.principle-card {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: center;
  gap: 70px;
  border: 2px solid #EEEEEE;
  background: #FFFFFF66;
  border-radius: 10px;
  padding: 30px 45px;
  box-shadow: 0 2px 12px rgba(16, 24, 40, 0.04);
}

.principle-content h2 {
  margin-bottom: 15px;
}

.principle-content p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #4F4F4F;
  margin: 0;
}

.orbit-box {
  position: relative;
  width: 250px;
  height: 250px;
  margin-left: auto;
}

.orbit {
  position: absolute;
  border: 1.5px solid #e1e1e1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 250px;
  height: 250px;
}

.orbit-2 {
  width: 180px;
  height: 180px;
}

.orbit-3 {
  width: 112px;
  height: 112px;
}

.orbit-center {
  position: absolute;
  width: 52px;
  height: 52px;
  background: #f25532;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  z-index: 3;
}

.dot-1 {
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f1f1f;
}

.dot-2 {
  bottom: 55px;
  left: 190px;
  right: 62px;
  background: #a7b0bb;
}

.dot-3 {
  left: 27px;
  top: 92px;
  width: 5px;
  height: 5px;
  background: #c7cbd0;
}

.orbit-box::before,
.orbit-box::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background: repeating-linear-gradient(to right,
      #d9d9d9 0 5px,
      transparent 5px 9px);
  left: 50%;
  top: 50%;
  transform-origin: left center;
  z-index: 1;
}

.orbit-box::before {
  transform: rotate(-90deg);
}

.orbit-box::after {
  transform: rotate(43deg);
}

/* =========================
   CTA
========================= */
.roadmap-cta-section {
  position: relative;
  background: #ffffff;
  padding: 0 8% 100px;
  overflow: hidden;
}

.roadmap-cta-container {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.roadmap-cta-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.roadmap-cta-content h2 {
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  color: #252525;
  margin: 0 0 15px;
  letter-spacing: -1.6px;
}

.roadmap-cta-content p {
  max-width: 560px;
  font-size: 12px;
  line-height: 1.7;
  color: #4F4F4F;
  margin: 0;
}

.roadmap-cta-btn {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #292524;
  color: #FAFAF9;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  padding: 5px 7px 5px 24px;
  white-space: nowrap;
}

.roadmap-cta-btn span {
  width: 32px;
  height: 32px;
  background: #f25532;
  color: #ffffff;
  border-radius: 50%;
}

.roadmap-bg-text {
  position: absolute;
  left: 0;
  bottom: -140px;
  z-index: 1;
  margin: 0;
  letter-spacing: -8px;
  width: 100%;
  text-align: center;
  font-size: clamp(64px, 14vw, 180px);
  font-weight: 800;
  line-height: 0.8;
  color: rgba(15, 23, 42, 0.06);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  margin-bottom: 6px;
}

/* =========================
   FOOTER - unchanged design
========================= */
.footer {
  background: #07142b;
  padding: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top img {
  width: 180px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b8bcc8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-bottom p {
  color: #8d93a1;
  font-size: 14px;
  font-weight: 400;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .navbar {
    padding: 18px 28px;
  }

  .navbar.scrolled {
    padding: 12px 28px;
  }

  .logo img {
    width: 175px;
  }

  .nav-links {
    gap: 14px;
    padding: 12px 20px;
  }

  .contact-btn {
    font-size: 13px;
  }

  .agentic-hero {
    padding: 120px 40px 70px;
  }

  .work-card {
    gap: 45px;
  }
}

@media (max-width: 991px) {

  .navbar,
  .navbar.scrolled {
    padding: 14px 24px;
  }

  .nav-wrapper {
    grid-template-columns: 1fr auto;
  }

  .logo img {
    width: 170px;
  }

  .mobile-menu {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px;
    border-radius: 18px;
    z-index: 100000;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links>a,
  .services-toggle {
    width: 100%;
    font-size: 15px;
    padding: 10px 8px;
  }

  .services-toggle {
    justify-content: space-between;
  }

  .services-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    background: #ffffff;
    border: 1px solid #eeeeee;
  }



  .agentic-hero {
    min-height: auto;
    padding: 110px 24px 70px;
  }

  .hero-content h1 br,
  .hero-desc br {
    display: none;
  }

  .honest-section,
  .services-practice-section,
  .capabilities-section,
  .work-section,
  .capability-showcase-section,
  .process-section,
  .roadmap-cta-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .honest-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 70px;
  }

  .honest-card {
    padding: 32px 28px;
    background-size: cover;
    background-position: center right;
  }

  .practice-grid,
  .capability-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .capabilities-title {
    margin-bottom: 30px;
  }

  .work-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 15px 28px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 70px;
  }

  .principle-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .orbit-box {
    margin: 0 auto;
  }

  .roadmap-cta-section {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .roadmap-cta-container {
    flex-direction: column;
    min-height: 300px;
  }

  .roadmap-cta-btn {
    margin-top: 10px;
  }

  .roadmap-bg-text {
    bottom: -80px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 18px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 575px) {

  .navbar,
  .navbar.scrolled {
    padding: 12px 16px;
  }

  .logo img {
    width: 145px;
  }

  .mobile-menu {
    font-size: 26px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 14px;
  }

  .agentic-hero {
    padding: 95px 18px 55px;
  }

  .version-tabs {
    margin-bottom: 28px;
    padding: 7px 10px;
  }

  .version-tabs a {
    font-size: 11px;
    padding: 6px 8px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.14;
  }

  .hero-desc {
    font-size: 13px;
    margin-bottom: 34px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .honest-section,
  .services-practice-section,
  .capabilities-section,
  .work-section,
  .capability-showcase-section,
  .process-section,
  .roadmap-cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .honest-section {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  .honest-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 55px;
  }

  .honest-card {
    padding: 24px 20px;
    min-height: auto;
    background-size: cover;
    background-position: center right;
  }

  .honest-card p {
    font-size: 13px;
  }

  .services-practice-section,
  .capabilities-section,
  .work-section,
  .capability-showcase-section,
  .process-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .services-practice-title,
  .work-title {
    margin-bottom: 15px;
  }

  .services-practice-title h2,
  .capabilities-title h2,
  .capability-showcase-title h2,
  .process-title h2,
  .principle-content h2 {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .practice-grid,
  .capability-card-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .capability-card {
    min-height: auto;
    padding: 28px 22px 42px;
  }

  .practice-card h3,
  .capability-card h3 {
    font-size: 20px;
  }

  .practice-card p,
  .capability-card p,
  .cap-desc {
    font-size: 13px;
  }

  .work-card {
    padding: 28px 20px;
  }

  .work-card h3 {
    font-size: 21px;
  }

  .work-right p {
    font-size: 12px;
  }

  .process-step {
    min-height: 290px;
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .principle-card {
    padding: 30px 22px;
  }

  .orbit-box {
    width: 220px;
    height: 220px;
  }

  .roadmap-cta-section {
    padding-top: 55px;
    padding-bottom: 75px;
  }

  .roadmap-cta-content h2 {
    font-size: 34px;
  }

  .roadmap-bg-text {
    font-size: 64px;
    bottom: -88px;
    letter-spacing: -5px;
  }

  .footer {
    padding: 28px 18px;
  }

  .footer-top img {
    width: 160px;
  }

  .footer-links {
    flex-direction: row;
    gap: 14px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .roadmap-cta-content h2 {
    font-size: 30px;
  }

  .tags span,
  .work-tags span {
    white-space: normal;
  }
}
















/* popup design start */

body.popup-open {
  overflow: hidden;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.contact-popup.show {
  display: flex;
}

.popup-box {
  width: min(100%, 540px);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h2 {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 8px;
}

.popup-box h2 em {
  color: #ef5b2a;
  font-family: Georgia, serif;
}

.popup-box>p {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-box label {
  font-size: 12px;
  color: #172033;
  margin-top: 4px;
}

.popup-box label span {
  color: #ef3f28;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f1f1f3;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111;
}

.popup-box textarea {
  min-height: 70px;
  resize: none;
}

.popup-box form button {
  margin-top: 10px;
  border: none;
  background: #302824;
  color: #ffffff;
  border-radius: 999px;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
}


/* popup design end */
