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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

button {
  font-family: "Inter", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

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

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: #d26010e6;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  z-index: 0;
}

.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hs-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hs-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d26010e6;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

.hs-slide.active .hs-tag {
  opacity: 1;
  transform: translateY(0);
}

.hs-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.65s ease 0.35s,
    transform 0.65s ease 0.35s;
}

.hs-slide.active .hs-content h1 {
  opacity: 1;
  transform: translateY(0);
}

.hs-accent {
  color: #d26010e6;
}

.hs-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease 0.5s,
    transform 0.65s ease 0.5s;
}

.hs-slide.active .hs-sub {
  opacity: 1;
  transform: translateY(0);
}

.hs-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease 0.65s,
    transform 0.65s ease 0.65s;
}

.hs-slide.active .hs-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  backdrop-filter: blur(6px);
}

.hs-arrow:hover {
  background: rgba(249, 115, 22, 0.75);
  transform: translateY(-50%) scale(1.1);
}

.hs-prev {
  left: 24px;
}

.hs-next {
  right: 24px;
}

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}

.hs-dot.active {
  background: #d26010e6;
  transform: scale(1.35);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* ===== REMIX ICONS ===== */
[class^="ri-"],
[class*=" ri-"] {
  font-style: normal;
  line-height: 1;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #0a0a0a;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left a {
  font-size: 0.78rem;
  color: #bbb;
  transition: color 0.2s;
}

.topbar-left a i {
  font-size: 0.85rem;
  vertical-align: -2px;
  margin-right: 4px;
  color: #d26010e6;
}

.topbar-left a:hover {
  color: #d26010e6;
}

.topbar-right {
  display: flex;
  gap: 8px;
}

.tb-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  border-radius: 4px;
  font-size: 0.65rem;
  color: #aaa;
  transition: all 0.2s;
}

.tb-icon:hover {
  background: #d26010e6;
  color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid #ebebeb;
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 8px;
  position: relative;
}

/* Logo always stays left, hamburger pushed all the way right on mobile */
.logo {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-i {
  color: #d26010e6;
}

.logo-c {
  color: #0ea5c8;
}

.flogo {
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  padding: 8px 5px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link:hover {
  color: #d26010e6;
  background: #fff5ee;
}

.nav-link span {
  font-size: 0.7rem;
  color: #999;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}

.btn-teal {
  background: #0ea5c8;
  color: #fff;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-teal:hover {
  background: #0891b2;
  box-shadow: 0 4px 16px rgba(14, 165, 200, 0.35);
}

.btn-orange-ol {
  border: 2px solid #d26010e6;
  color: #d26010e6;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-orange-ol:hover {
  background: #d26010e6;
  color: #fff;
}

/* ===== MEGA MENU — TECHNOLOGIES ===== */
.nav-item-mega {
  position: static;
}

.mega-trigger {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  padding: 8px 6px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.mega-trigger:hover,
.mega-trigger.open {
  color: #d26010e6;
  background: #fff5ee;
}

.mega-trigger span {
  font-size: 0.7rem;
  color: #999;
  transition: transform 0.25s;
}

.mega-trigger.open span {
  transform: rotate(90deg);
}

/* Dropdown panel */
.mega-menu {
  display: none;
  position: fixed;
  top: 75px;
  /* start exactly below the sticky navbar */
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid #d26010e6;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 998;
  animation: megaFadeIn 0.18s ease;
}

/* Open on HOVER — pure CSS */
.nav-item-mega:hover .mega-menu,
.mega-menu:hover {
  display: flex;
  align-items: stretch;
}

/* Also keep .open class for JS fallback */
.mega-menu.open {
  display: flex;
  align-items: stretch;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* LEFT sidebar */
.mega-sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  background: #f9f9f9;
}

.mega-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-align: left;
  border-left: 3px solid transparent;
  transition:
    color 0.15s,
    background 0.15s,
    border-color 0.15s;
}

.mega-tab i {
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #999;
  transition: color 0.15s;
}

.mega-tab:hover {
  color: #d26010e6;
  background: #fff5ee;
}

.mega-tab:hover i {
  color: #d26010e6;
}

.mega-tab.active {
  color: #d26010e6;
  background: #fff5ee;
  border-left-color: #d26010e6;
  font-weight: 600;
}

.mega-tab.active i {
  color: #d26010e6;
}

/* RIGHT content area */
.mega-content {
  flex: 1;
  padding: 24px 36px 32px;
  min-height: 300px;
}

/* Each tab panel */
.mega-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mega-panel.active {
  display: grid;
}

/* Individual tech card */
.mega-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 10px;
  border: 1.5px solid #ebebeb;
  background: #fafafa;
  text-decoration: none;
  color: #444;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}

.mega-tech-item:hover {
  background: #fff5ee;
  border-color: #d26010e6;
  color: #d26010e6;
  transform: translateY(-2px);
}

.mti-icon {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.mega-tech-item:hover .mti-icon {
  transform: scale(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  /* pushes it to the far right */
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 999;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== MOBILE NAVBAR (Dark Drawer) ===== */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Make header dark when menu is open */
  body.menu-open .navbar {
    background: #0a0a0a;
    border-bottom-color: #1a1a1a;
  }

  /* Hamburger (now just hidden since we use drawer close button) */
  body.menu-open .hamburger {
    visibility: hidden;
  }

  /* Drawer background */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 360px;
    background: #0a0a0a;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    z-index: 10000;
    overflow-y: auto;
    border-left: 1px solid #1a1a1a;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    /* Always display flex, just translated out of view */
  }

  /* Make logo text white on dark header */
  .mobile-drawer-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  /* Backdrop */
  .mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  body.menu-open .mobile-backdrop {
    display: block;
    opacity: 1;
  }

  .nav-link,
  .mega-trigger {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.05rem;
    color: #fff;
    border-bottom: 1px solid #1a1a1a;
    border-radius: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link:hover,
  .mega-trigger:hover,
  .mega-trigger.open {
    background: #000;
    color: #d26010e6;
  }

  /* Chevron for mega-trigger */
  .mega-trigger span {
    font-size: 1.2rem;
    color: #666;
    transition: transform 0.3s ease;
  }

  .mega-trigger.open span {
    transform: rotate(90deg);
    /* Or -90deg depending on arrow */
    color: #fff;
  }

  .nav-item-mega {
    width: 100%;
  }

  /* Accordion Sub-menu */
  .mega-menu {
    display: none !important;
    /* Default hidden */
    position: static;
    box-shadow: none;
    border: none;
    background: #111;
    padding: 0;
    animation: none;
  }

  .mega-trigger.open + .mega-menu {
    display: block !important;
  }

  .mega-sidebar {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
  }

  .mega-tab {
    width: 100%;
    padding: 16px 24px 16px 40px;
    /* Indented */
    color: #e0e0e0;
    border-bottom: 1px solid #1a1a1a;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
  }

  /* Hide the left icon on mobile for cleaner look as per screenshot */
  .mega-tab i:first-child {
    display: none;
  }

  /* Add chevron to mega-tab on mobile */
  .mega-tab::after {
    content: "\EA6E";
    /* ri-arrow-down-s-line */
    font-family: "remixicon";
    font-size: 1.2rem;
    color: #888;
    transition: transform 0.3s ease;
  }

  .mega-tab.active {
    background: #151515;
    color: #fff;
  }

  .mega-tab.active::after {
    transform: rotate(180deg);
    color: #fff;
  }

  .mega-content {
    padding: 0;
    min-height: auto;
  }

  .mega-panel {
    grid-template-columns: 1fr;
    gap: 0;
    background: #151515;
  }

  .mega-tech-item {
    border: none;
    border-bottom: 1px solid #1f1f1f;
    border-radius: 0;
    background: #1a1a1a;
    color: #ccc;
    padding: 14px 24px 14px 56px;
    /* Deep indentation */
    flex-direction: row;
    justify-content: flex-start;
    font-size: 0.9rem;
    font-weight: 400;
  }

  .mega-tech-item:hover {
    background: #222;
    color: #fff;
    transform: none;
  }

  /* Hide icons for sub-items too */
  .mti-icon {
    display: none;
  }

  /* Nav buttons moved inside drawer */
  .nav-btns {
    width: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    display: flex;
  }

  .nav-btns .btn-teal,
  .nav-btns .btn-orange-ol {
    width: 100%;
    text-align: center;
  }

  .mobile-socials {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 24px 30px;
  }

  .mobile-socials a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.2s;
  }

  .mobile-socials a:hover {
    color: #d26010e6;
  }

  .nav-menu.open + .nav-btns {
    display: flex;
    /* Show buttons inside drawer if needed */
  }
}

/* ===== BUTTONS ===== */
.btn-orange {
  display: inline-block;
  background: #d26010e6;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid #d26010e6;
  transition: all 0.25s;
}

.btn-orange:hover {
  background: #ea6c10;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.btn-orange.sm {
  font-size: 0.85rem;
  padding: 10px 22px;
}

.btn-orange.full {
  width: 100%;
  text-align: center;
  display: block;
  padding: 15px;
  font-size: 1rem;
}

.btn-white-ol {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
}

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

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

/* Each slide */
.hs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  z-index: 1;
}

.hs-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Circuit-board grid overlay on every slide */
.hs-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(14, 165, 200, 0.06) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(14, 165, 200, 0.06) 80px
    );
  background-size: 80px 80px;
  pointer-events: none;
}

/* Slide content */
.hs-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1280px;
  padding: 0 24px;
  color: #fff;
  z-index: 3;
}

.hs-slide .hs-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d26010e6;
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.2s,
    transform 0.6s ease 0.2s;
}

.hs-slide.active .hs-tag {
  opacity: 1;
  transform: none;
}

.hs-slide h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease 0.35s,
    transform 0.7s ease 0.35s;
}

.hs-slide.active h1 {
  opacity: 1;
  transform: none;
}

.hs-accent {
  color: #d26010e6;
}

.hs-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.5s,
    transform 0.7s ease 0.5s;
}

.hs-slide.active .hs-sub {
  opacity: 1;
  transform: none;
}

.hs-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.65s,
    transform 0.7s ease 0.65s;
}

.hs-slide.active .hs-btns {
  opacity: 1;
  transform: none;
}

/* Prev / Next arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  backdrop-filter: blur(4px);
}

.hs-arrow:hover {
  background: #d26010e6;
  border-color: #d26010e6;
  transform: translateY(-50%) scale(1.08);
}

.hs-prev {
  left: 24px;
}

.hs-next {
  right: 24px;
}

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hs-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hs-dot.active {
  background: #d26010e6;
  width: 28px;
  border-radius: 5px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
}

/* Hero animations — keep for fallback */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--d, 0s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== ABOUT STATS ===== */
.about-section {
  background: #f0eae0;
  padding: 72px 0;
}

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

.about-text h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #f3f0ec;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #d26010e6;
}

.stat-suf {
  font-size: 1.3rem;
  font-weight: 800;
  color: #d26010e6;
  margin-right: auto;
}

.stat-card p {
  width: 100%;
  font-size: 0.82rem;
  color: #777;
  margin-top: 4px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  display: flex;
  justify-content: center;
  padding: 24px 0;
  background: #fff;
}

.scroll-indicator.dark-bg {
  background: #1c1c2e;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid #bbb;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-dark {
  border-color: rgba(255, 255, 255, 0.3);
}

.wheel {
  width: 4px;
  height: 8px;
  background: #d26010e6;
  border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ===== SERVICES SPLIT ===== */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* LEFT - sticky panel */
.split-left {
  background: #fff;
  /*f5ede0*/
  padding: 64px 48px 64px 64px;
  position: sticky;
  top: 57px;
  align-self: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.split-left-inner {
  max-width: 480px;
  width: 100%;
}

/* Left panel staggered reveal animations */
.split-left-inner .stag {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-left-inner h2 {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.split-left-inner .sdesc {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.split-left-inner .cta-card-box {
  opacity: 0;
  transform: translateX(-40px) translateY(20px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.split-left-inner.animated .stag,
.split-left-inner.animated h2,
.split-left-inner.animated .sdesc,
.split-left-inner.animated .cta-card-box {
  opacity: 1;
  transform: none;
}

.stag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.stag.teal {
  color: #0ea5c8;
}

.stag.orange {
  color: #d26010e6;
}

.split-left h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.sdesc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.cta-card-box {
  background: #fff5ee;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-globe {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' fill='none' stroke='%23f97316' stroke-width='1.5' stroke-dasharray='4 3'/%3E%3Ccircle cx='50' cy='50' r='32' fill='none' stroke='%23f97316' stroke-width='1' stroke-dasharray='3 3'/%3E%3Cpath d='M50 2 Q70 50 50 98 Q30 50 50 2Z' fill='none' stroke='%23f97316' stroke-width='1'/%3E%3Cpath d='M2 50 Q50 70 98 50 Q50 30 2 50Z' fill='none' stroke='%23f97316' stroke-width='1'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.split-left-inner.animated .cta-globe {
  animation: floatGlobe 3s ease-in-out infinite;
}

@keyframes floatGlobe {
  0%,
  100% {
    transform: translateY(0);
  }

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

.cta-card-box > div {
  flex: 1;
}

.cta-card-box > div p {
  font-size: 1.1rem;
  font-weight: 800;
  color: #d26010e6;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* RIGHT - service cards */
.split-right {
}

.srv-card {
  padding: 28px 36px;
  border-bottom: 1px solid #e8e8e8;
  border-left: 4px solid transparent;
  position: relative;
}

/* Each card gets its own distinct soft color */
/* Dark/light card color scheme */
.srv-card.dark {
  background: #1a1a2e;
  color: #fff;
}

.srv-card.dark:nth-child(odd) {
  background: #1e1e34;
}

.srv-card.light {
  background: #f0f0f0;
  color: #111;
}

/* Active card */
.srv-card.active {
  border-left-color: #d26010e6;
  padding-left: 40px;
}

/* Card header */
.srv-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
  transition: none;
}

.srv-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.15);
  border: 1.5px solid rgba(249, 115, 22, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #d26010e6;
}

.srv-icon-dark {
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.15);
  color: #d26010e6;
}

.srv-head h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.srv-card.dark .srv-head h3 {
  color: #fff;
}

.srv-card.light .srv-head h3 {
  color: #111;
}

.sarr {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  margin-top: 2px;
}

.srv-card.light .sarr {
  border-color: rgba(0, 0, 0, 0.18);
  color: #555;
}

/* Card description */
.srv-card > p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.srv-card.dark > p {
  color: rgba(255, 255, 255, 0.65);
}

.srv-card.light > p {
  color: #555;
}

/* Bullet list */
.srv-card ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.srv-card ul li {
  font-size: 0.83rem;
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}

.srv-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #d26010e6;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.srv-card.dark ul li {
  color: rgba(255, 255, 255, 0.7);
}

.srv-card.light ul li {
  color: #444;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: #0d1b2e;
  padding: 80px 0 56px;
  overflow: hidden;
}

.white-h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 14px;
  line-height: 1.2;
}

.white-p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  line-height: 1.75;
}

.port-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.port-slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.port-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 0 80px;
  gap: 0;
}

.port-left {
  padding: 36px 36px 36px 0;
  color: #fff;
}

.port-logo-box {
  width: 66px;
  height: 66px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.port-left h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 3px solid #d26010e6;
}

.port-left p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.port-right {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.port-screen {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.port-screen i {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.pnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.pnav:hover {
  background: #d26010e6;
  border-color: #d26010e6;
}

.pprev {
  left: 18px;
}

.pnext {
  right: 18px;
}

.port-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.pdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s;
}

.pdot.active {
  background: #d26010e6;
  width: 24px;
  border-radius: 4px;
}

/* ===== SOLUTIONS ===== */
.solutions {
  padding: 80px 0;
  background: #f9f9f9;
}

.solutions h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #111;
  margin: 12px 0 14px;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.sol-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.sol-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.sol-inner h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sol-arr {
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.25s;
}

.sol-card:hover .sol-arr {
  transform: translateX(4px);
}

.sol-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  line-height: 1.6;
}

.sol-active .sol-inner {
  justify-content: flex-start;
  padding: 28px;
}

.sol-active .sol-inner h4 {
  margin-bottom: 0;
}

/* ===== CONTACT STRIP ===== */
.cstrip {
  padding: 44px 0;
}

.cstrip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cstrip h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.cstrip-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cstrip-links a {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.cstrip-links a i {
  font-size: 1rem;
  vertical-align: -2px;
  margin-right: 4px;
}

.cstrip-links a:hover {
  opacity: 1;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.industries h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #111;
  margin: 12px 0 12px;
}

.marquee-wrap {
  overflow: hidden;
  margin-top: 36px;
  padding: 4px 0;
}

.marquee-track {
  display: flex;
  gap: 14px;
  white-space: nowrap;
  animation: mLeft 28s linear infinite;
}

.marquee-track.rtl {
  animation: mRight 22s linear infinite;
}

@keyframes mLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8f8f8;
  border: 1.5px solid #e5e5e5;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.ind-pill i {
  font-size: 1rem;
  vertical-align: -2px;
  color: #d26010e6;
  flex-shrink: 0;
}

.ind-pill:hover {
  border-color: #d26010e6;
  color: #d26010e6;
}

/* ===== TECH STACK ===== */
.tech-stack {
  padding: 80px 0;
  background: #f5f5f5;
  overflow: hidden;
}

.tech-stack h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #111;
  margin: 12px 0 12px;
}

.tbadge {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: #444;
  flex-shrink: 0;
  transition: all 0.2s;
  cursor: pointer;
}

.tbadge:hover {
  border-color: #0ea5c8;
  color: #0ea5c8;
}

/* ===== BLOG ===== */
.blog-sec {
  padding: 80px 0;
  background: #fff;
}

.blog-sec h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #111;
  margin: 12px 0 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.blog-card {
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
  height: 176px;
}

.blog-body {
  padding: 22px;
}

.bcat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0ea5c8;
  background: #f0fafd;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin-bottom: 14px;
}

.blog-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: #d26010e6;
  transition: letter-spacing 0.2s;
}

.blog-link:hover {
  letter-spacing: 0.03em;
}

/* ===== CONTACT ===== */
.contact-sec {
  background: #0d1b2e;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-top: 44px;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.crow2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cform input,
.cform select,
.cform textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  color: #fff;
  outline: none;
  width: 100%;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  border-color: #d26010e6;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.cform select option {
  background: #0d1b2e;
}

.cform input::placeholder,
.cform textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cinfo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cinfo-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #d26010e6;
  margin-bottom: 6px;
}

.cinfo-item h5 i {
  font-size: 1rem;
  vertical-align: -2px;
  margin-right: 4px;
}

.cinfo-item p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.cinfo-item a {
  font-size: 0.85rem;
  color: #0ea5c8;
  transition: color 0.2s;
}

.cinfo-item a:hover {
  color: #fff;
}

.csocial {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.csocial strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.csocial a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 0.8rem;
  color: #d26010e6;
  transition: all 0.2s;
}

.csocial a:hover {
  background: #d26010e6;
  border-color: #d26010e6;
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  padding: 60px 0 0;
  color: #aaa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e1e1e;
}

.fbrand > p {
  font-size: 0.8rem;
  color: #555;
  margin: 10px 0 18px;
}

.faddr {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 16px;
}

.faddr i {
  font-size: 0.85rem;
  vertical-align: -2px;
  margin-right: 4px;
  color: #d26010e6;
}

.faddr a {
  color: #999;
  transition: color 0.2s;
}

.faddr a:hover {
  color: #d26010e6;
}

.ffollow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ffollow strong {
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 0.07em;
}

.ffollow a {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #888;
  transition: all 0.2s;
}

.ffollow a:hover {
  background: #d26010e6;
  color: #fff;
}

.fcol {
  display: flex;
  flex-direction: column;
}

.fcol h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}

.fcol a {
  font-size: 0.8rem;
  color: #666;
  padding: 3px 0;
  line-height: 1.5;
  transition: color 0.2s;
}

.fcol a:hover {
  color: #d26010e6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom div a {
  color: #555;
  transition: color 0.2s;
}

.footer-bottom div a:hover {
  color: #aaa;
}

.footer-bottom p {
  color: #444;
}

.footer-bottom strong {
  color: #888;
  margin: 0 3px;
}

/* ===== FLOATING ===== */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fbtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s;
}

.fbtn:hover {
  transform: scale(1.12);
}

.fcall {
  background: #0ea5c8;
}

.fwa {
  background: #25d366;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .split-left {
    padding: 56px 40px 56px 56px;
    top: 52px;
  }

  .split-left-inner {
    max-width: 100%;
  }
}

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

  .split-left {
    padding: 56px 40px;
    position: relative;
    top: auto;
    align-self: auto;
    min-height: auto;
  }

  .split-left-inner {
    max-width: 100%;
  }

  /* Change card animation direction on mobile */
  .srv-card {
    transform: translateY(40px);
  }

  .srv-card.animated {
    transform: none;
  }

  .split-left-inner .stag,
  .split-left-inner h2,
  .split-left-inner .sdesc,
  .split-left-inner .cta-card-box {
    transform: translateY(30px);
  }

  .split-left-inner.animated .stag,
  .split-left-inner.animated h2,
  .split-left-inner.animated .sdesc,
  .split-left-inner.animated .cta-card-box {
    transform: none;
  }

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

  .fbrand {
    grid-column: 1 / -1;
  }

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

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

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

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

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

  .port-slide {
    grid-template-columns: 1fr;
    padding: 0 48px;
  }

  .port-right {
    min-height: 220px;
  }

  .srv-card {
    padding: 22px 24px;
  }

  .split-left {
    padding: 48px 32px;
  }

  .cstrip-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

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

@media (max-width: 640px) {
  .topbar-left {
    gap: 8px;
  }

  .topbar-left a {
    font-size: 0.72rem;
  }

  .hero {
    padding: 90px 0 48px;
    min-height: auto;
  }

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

  .hero-sub {
    font-size: 0.88rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .about-section {
    padding: 48px 0;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .services-split {
    grid-template-columns: 1fr;
  }

  .split-left {
    padding: 40px 20px;
  }

  .split-left h2 {
    font-size: 1.3rem;
  }

  .stag {
    font-size: 0.65rem;
  }

  .sdesc {
    font-size: 0.84rem;
    margin-bottom: 24px;
  }

  .cta-card-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .cta-globe {
    width: 48px;
    height: 48px;
  }

  .srv-card {
    padding: 20px 20px;
  }

  .srv-head h3 {
    font-size: 0.9rem;
  }

  .srv-card p {
    font-size: 0.8rem;
  }

  .srv-card ul li {
    font-size: 0.78rem;
  }

  .srv-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.95rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .cstrip h3 {
    font-size: 1.2rem;
  }

  .port-slide {
    padding: 0 36px;
  }

  .white-h2 {
    font-size: 1.4rem;
  }

  .sol-card {
    min-height: 160px;
  }

  .contact-sec,
  .blog-sec,
  .solutions,
  .industries,
  .tech-stack {
    padding: 56px 0;
  }

  .scroll-indicator {
    display: none;
  }

  /* Hero slider mobile */
  .hero-slider {
    height: 100svh;
    min-height: 560px;
  }

  .hs-slide h1 {
    font-size: 1.8rem;
  }

  .hs-sub {
    font-size: 0.85rem;
  }

  .hs-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .hs-prev {
    left: 10px;
  }

  .hs-next {
    right: 10px;
  }

  .hs-dots {
    bottom: 24px;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* =========================================================
   SHARED TECH-PAGE STYLES
   Used by react.html, angular.html, nextjs.html,
   vuejs.html, html.html, css.html, javascript.html,
   typescript.html
   ========================================================= */

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

/* Section tag / label */
.stag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.stag.orange {
  color: #ff6b2b;
}

/* WHY section */
.wr-section {
  background: #fff;
  padding: 80px 0;
}

.wr-head {
  text-align: center;
  margin-bottom: 56px;
}

.wr-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.wr-head p {
  font-size: 0.95rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.wr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.wr-card {
  background: #f8f9ff;
  border: 1.5px solid #e8eaff;
  border-radius: 18px;
  padding: 30px 24px;
  transition: all 0.25s;
}

.wr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.wr-card .wci {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.wr-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.wr-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* SERVICES section */
.rs-section {
  background: #f8f9ff;
  padding: 80px 0;
}

.rs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rs-split.rev {
  direction: rtl;
}

.rs-split.rev > * {
  direction: ltr;
}

.rs-img {
  border-radius: 20px;
  overflow: hidden;
  background: #20232a;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.rs-img .big {
  font-size: 5rem;
  text-align: center;
}

.rs-img h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.rs-img p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.6;
}

.rs-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.rs-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.rs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #333;
}

.rs-list li .lico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* PROCESS section */
.proc-section {
  background: #fff;
  padding: 80px 0;
}

.proc-head {
  text-align: center;
  margin-bottom: 56px;
}

.proc-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.proc-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: linear-gradient(90deg, #ff6b2b, rgba(255, 107, 43, 0.2));
  z-index: 0;
}

.proc-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}

.ps-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #ff6b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff6b2b;
  margin: 0 auto 18px;
}

.proc-step h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

/* CTA section */
.react-cta {
  background: #111;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.react-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 43, 0.1),
    transparent 60%
  );
}

.react-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.react-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.97rem;
  margin-bottom: 32px;
  position: relative;
}

@media (max-width: 768px) {
  .rs-split,
  .rs-split.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .proc-steps::before {
    display: none;
  }

  .proc-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== SOLUTIONS PAGE — SHARED STRIPE-STYLE LAYOUT ===== */
/* Each solutions page sets --sol-c in its own <style> block. */
/* Fallback colour if none is provided. */
:root {
  --sol-c: #06b6d4;
  --bg: #f6f9fc;
  --text-main: #32325d;
  --text-light: #525f7f;
}

/* Dramatic Slanted Hero */
.hero-stripe {
  position: relative;
  padding: 60px 0 240px 0;
  background: linear-gradient(135deg, var(--sol-c), #111);
  overflow: hidden;
  color: #fff;
}

/* Slanted bottom edge */
.hero-stripe::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 180px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Decorative glowing blobs in hero */
.h-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  background: rgba(255, 255, 255, 0.4);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.h-blob.b1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
}

.h-blob.b2 {
  width: 400px;
  height: 400px;
  bottom: 0px;
  left: 5%;
  opacity: 0.6;
}

.hero-stripe .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-stripe .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stripe p {
    margin-inline: auto;
  }
}

.sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
  color: #fff;
}

.hero-stripe h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-stripe p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 400;
}

.btn-hero {
  background: #fff;
  color: var(--sol-c);
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 1.05rem;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-icon-box {
  width: 100%;
  aspect-ratio: 1;
  max-width: 450px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-icon-box i {
  font-size: 10rem;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: solFloat 6s ease-in-out infinite;
}

@keyframes solFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Floating Capabilities Cards Section */
.caps-section {
  padding: 0 0 120px 0;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

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

@media (max-width: 768px) {
  .caps-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

.cap-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s ease;
  box-shadow:
    0 15px 35px rgba(50, 50, 93, 0.05),
    0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid transparent;
}

.cap-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px -12px rgba(50, 50, 93, 0.15),
    0 18px 36px -18px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.02);
}

.c-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--sol-c), #111);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cap-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cap-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Value / ROI Section */
.value-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.value-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-inline: auto;
}

.value-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.value-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
}

.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.val-card {
  text-align: center;
  padding: 20px;
}

.v-num-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--sol-c);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  border: 2px solid var(--sol-c);
}

.val-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.val-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Minimal CTA */
.cta-minimal {
  padding: 120px 0;
  text-align: center;
  background: #fff;
}

.cta-minimal h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.btn-solid-dark {
  background: #111;
  color: #fff;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 1.05rem;
  border: 2px solid #111;
}

.btn-solid-dark:hover {
  background: transparent;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ===== END SOLUTIONS SHARED STYLES ===== */
/* ===== TECH PAGES — PATTERN A (ph/plogo/pbadge) ===== */
.ph {
  background: var(--cd);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 65% 40%,
    color-mix(in srgb, var(--c) 20%, transparent),
    transparent 55%
  );
}

.ph-shield {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  color: color-mix(in srgb, var(--c) 5%, transparent);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.plogo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  border: 2px solid color-mix(in srgb, var(--c) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--c);
  margin-bottom: 28px;
  animation: pglow 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes pglow {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 30%, transparent);
  }

  50% {
    box-shadow: 0 0 40px 15px color-mix(in srgb, var(--c) 10%, transparent);
  }
}

.pbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 35%, transparent);
  color: var(--c);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ph h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ph h1 span {
  color: var(--c);
}

.ph p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.btnp {
  background: var(--c);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btnp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--c) 35%, transparent);
}

.btng {
  border: 2px solid color-mix(in srgb, var(--c) 40%, transparent);
  color: var(--c);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btng:hover {
  background: color-mix(in srgb, var(--c) 8%, transparent);
}

.ptags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.ptag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.sbar {
  background: color-mix(in srgb, var(--c) 6%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--c) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--c) 12%, transparent);
  padding: 32px 0;
}

.srow {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.si {
  text-align: center;
}

.si strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c);
}

.si span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.fcard {
  background: color-mix(in srgb, var(--c) 4%, white);
  border: 1.5px solid color-mix(in srgb, var(--c) 18%, white);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all 0.25s;
}

.fcard:hover {
  border-color: var(--c);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--c) 10%, transparent);
  transform: translateY(-4px);
}

.fcard .fi {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c);
  margin-bottom: 16px;
}

.fcard h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.fcard p {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.7;
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.scard {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1.5px solid color-mix(in srgb, var(--c) 18%, white);
  transition: all 0.25s;
}

.scard:hover {
  border-color: var(--c);
  box-shadow: 0 6px 22px color-mix(in srgb, var(--c) 10%, transparent);
  transform: translateY(-3px);
}

.scard .sci {
  font-size: 2rem;
  color: var(--c);
  margin-bottom: 12px;
}

.scard h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.scard p {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.scard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scard ul li {
  font-size: 0.8rem;
  color: #444;
  padding-left: 14px;
  position: relative;
}

.scard ul li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--c);
  font-weight: 700;
}

.pcta {
  background: var(--cd);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--c) 12%, transparent),
    transparent 60%
  );
}

.pcta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.pcta h2 span {
  color: var(--c);
}

.pcta p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  position: relative;
}

/* ===== END TECH PAGES PATTERN A ===== */

/* ===== TECH PAGES — PATTERN B (rh/rh-ring/rh-logo design) ===== */
.rh {
  background: var(--cd);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.rh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      color-mix(in srgb, var(--c) 15%, transparent),
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      color-mix(in srgb, var(--c) 8%, transparent),
      transparent 50%
    );
}

.rh-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--c) 10%, transparent);
  animation: spin 20s linear infinite;
}

.rh-ring:nth-child(1) {
  width: 400px;
  height: 400px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.rh-ring:nth-child(2) {
  width: 600px;
  height: 600px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  animation-duration: 30s;
  animation-direction: reverse;
}

.rh-ring:nth-child(3) {
  width: 800px;
  height: 800px;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  animation-duration: 40s;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.rh-logo {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  border: 2px solid color-mix(in srgb, var(--c) 30%, transparent);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--c);
  margin-bottom: 28px;
  animation: pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 30%, transparent);
  }

  50% {
    box-shadow: 0 0 40px 15px color-mix(in srgb, var(--c) 15%, transparent);
  }
}

.rh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 30%, transparent);
  color: var(--c);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.rh h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.rh h1 span {
  color: var(--c);
}

.rh p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.rh-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-tech {
  background: var(--c);
  color: var(--cd);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-tech:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--c) 30%, transparent);
}

.btn-ghost-tech {
  border: 2px solid color-mix(in srgb, var(--c) 40%, transparent);
  color: var(--c);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-ghost-tech:hover {
  background: color-mix(in srgb, var(--c) 8%, transparent);
  border-color: var(--c);
}

.rh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.rh-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.stats-bar {
  background: color-mix(in srgb, var(--c) 6%, transparent);
  border-top: 1px solid color-mix(in srgb, var(--c) 12%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--c) 12%, transparent);
  padding: 32px 0;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c);
}

.stat-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wr-section {
  background: #fff;
  padding: 48px 0;
}

.wr-head {
  text-align: center;
  margin-bottom: 56px;
}

.wr-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.wr-head p {
  font-size: 0.95rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.wr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.wr-card {
  background: #f8f9ff;
  border: 1.5px solid #e8eaff;
  border-radius: 18px;
  padding: 30px 24px;
  transition: all 0.25s;
}

.wr-card:hover {
  border-color: var(--c);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--c) 12%, transparent);
  transform: translateY(-4px);
}

.wr-card .wci {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c);
  margin-bottom: 18px;
}

.wr-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.wr-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.rs-section {
  background: #f8f9ff;
  padding: 48px 0;
}

.rs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rs-split.rev {
  direction: rtl;
}

.rs-split.rev > * {
  direction: ltr;
}

.rs-img {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cd);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.rs-img .big {
  font-size: 5rem;
  color: var(--c);
  text-align: center;
}

.rs-img h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.rs-img p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.6;
}

.rs-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.rs-text p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.rs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #333;
}

.rs-list li .lico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--c);
  flex-shrink: 0;
  margin-top: 1px;
}

.proc-section {
  background: #fff;
  padding: 48px 0;
}

.proc-head {
  text-align: center;
  margin-bottom: 56px;
}

.proc-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.proc-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--c),
    color-mix(in srgb, var(--c) 20%, transparent)
  );
  z-index: 0;
}

.proc-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}

.ps-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cd);
  border: 3px solid var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c);
  margin: 0 auto 18px;
}

.proc-step h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.proc-step p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

.react-cta {
  background: var(--cd);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.react-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--c) 12%, transparent),
    transparent 60%
  );
}

.react-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.react-cta h2 span {
  color: var(--c);
}

.react-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.97rem;
  margin-bottom: 32px;
  position: relative;
}

@media (max-width: 768px) {
  .rs-split,
  .rs-split.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .proc-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .proc-step {
    padding: 18px 12px;
  }

  .proc-steps::before {
    display: none;
  }
}

/* ===== END TECH PAGES PATTERN B ===== */
/* ===== SERVICE PAGES — SHARED CSS (--svc color variable) ===== */
.svc-hero {
  background: #f8f9ff;
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}

.svc-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.8),
    transparent 70%
  );
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.15;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--svc);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #d26010e6;
  bottom: -50px;
  left: 10%;
}

.svc-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .svc-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  color: var(--svc);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.svc-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}

.svc-hero h1 span {
  color: var(--svc);
}

.svc-hero p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.svc-hero-icon-box {
  width: 100%;
  aspect-ratio: 1;
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
}

.svc-hero-icon-box i {
  font-size: 8rem;
  color: var(--svc);
  background: -webkit-linear-gradient(45deg, var(--svc), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.svc-feat-section {
  padding: 20px 0;
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-inline: auto;
}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.section-head p {
  color: #666;
  line-height: 1.6;
}

.svc-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.svc-feat-card {
  background: #f9f9fb;
  padding: 32px;
  border-radius: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid transparent;
}

.svc-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-color: rgba(0, 0, 0, 0.05);
}

.sf-ic {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.svc-feat-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.svc-feat-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.method-section {
  padding: 30px 0;
  background: #f8f9ff;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.method-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.method-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--svc);
  opacity: 0.8;
}

.method-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.method-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.why-section {
  padding: 30px 0;
  background: #fff;
}

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

.why-card {
  border: 1px solid #eee;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
}

.why-card i {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.why-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.btn-svc {
  background: var(--svc);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.btn-svc:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.svc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.svc-link-inline {
  color: #555;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 14px;
  text-decoration: none;
}

.method-img {
  padding-right: 40px;
}

.method-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.method-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-svc-dark {
  background: #111;
}

.svc-cta {
  background: #d26010e6;
  padding: 80px 0;
  text-align: center;
}

.svc-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.svc-cta-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
}

.btn-svc-light {
  background: #fff;
  color: #d26010e6;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
}

/* ===== END SERVICE PAGES SHARED CSS ===== */

/* ===== INDUSTRY PAGES SHARED CSS (--accent / --hero-bg) ===== */
.ind-hero {
  background: var(--hero-bg);
  padding: 100px 0 140px;
  position: relative;
  color: #fff;
  overflow: hidden;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
}

.ind-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.ind-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.ind-hero h1 span {
  color: var(--accent);
}

.ind-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-curve svg {
  display: block;
  width: 100%;
  height: 80px;
  fill: #ffffff;
}

.content-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.expertise-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.expertise-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.expertise-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.benefits-section {
  background: #fafafa;
  padding: 100px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-icon {
  font-size: 2rem;
  color: var(--accent);
}

.benefit-text h4 {
  font-size: 1.2rem;
  font-weight: 750;
  margin-bottom: 8px;
  color: #111;
}

.benefit-text p {
  color: #555;
  line-height: 1.6;
}

.cta-container {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 80px;
}

.btn-ind {
  background: var(--hero-bg);
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-ind:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.btn-ind-light {
  background: #fff;
  color: var(--hero-bg);
}

.ind-active {
  color: var(--accent) !important;
}

.ind-cta-text {
  color: #666;
  margin-bottom: 30px;
}

/* ===== END INDUSTRY PAGES SHARED CSS ===== */
/* ===== INSIGHT PAGES SHARED CSS (--c / --bg) ===== */
.insight-page {
  margin: 0;
  background-color: var(--bg);
  color: #111;
  font-family: "Inter", sans-serif;
}

.insight-page .ph {
  background: var(--bg);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}

.insight-page .ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    color-mix(in srgb, var(--c) 12%, transparent),
    transparent 50%
  );
}

.insight-page .ph-shield {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25rem;
  color: color-mix(in srgb, var(--c) 5%, transparent);
  line-height: 1;
  z-index: 1;
}

.insight-page .plogo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--c) 8%, transparent);
  border: 2px solid color-mix(in srgb, var(--c) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--c);
  margin-bottom: 28px;
  position: relative;
  z-index: 5;
}

.insight-page .pbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
  color: var(--c);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.insight-page .ph h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: #111;
  line-height: 1.05;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}

.insight-page .ph h1 span {
  color: var(--c);
}

.insight-page .ph p {
  font-size: 1.2rem;
  color: #555;
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.insight-page .sbar {
  background: #f9fafb;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.insight-page .srow {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.insight-page .si {
  text-align: center;
}

.insight-page .si strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #111;
}

.insight-page .si span {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.insight-page .fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.insight-page .fcard {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.insight-page .fcard:hover {
  border-color: var(--c);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--c) 20%, transparent);
  transform: translateY(-8px);
}

.insight-page .fcard .fi {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--c);
  margin-bottom: 24px;
}

.insight-page .fcard h3 {
  font-size: 1.2rem;
  font-weight: 850;
  color: #111;
  margin-bottom: 12px;
}

.insight-page .fcard p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.insight-page .sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 20px;
}

.insight-page .scard {
  background: #fdfdfd;
  border-radius: 24px;
  padding: 45px 35px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.insight-page .scard:hover {
  border-color: var(--c);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.insight-page .scard .sci {
  font-size: 2.8rem;
  color: var(--c);
  margin-bottom: 20px;
}

.insight-page .scard h3 {
  font-size: 1.3rem;
  font-weight: 850;
  color: #111;
  margin-bottom: 15px;
}

.insight-page .scard p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.insight-page .scard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.insight-page .scard ul li {
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insight-page .scard ul li i {
  color: var(--c);
  font-size: 1.2rem;
}

.insight-page .pcta {
  background: #f9fafb;
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.insight-page .pcta h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  position: relative;
}

.insight-page .pcta h2 span {
  color: var(--c);
}

.insight-page .pcta p {
  color: #555;
  margin-bottom: 45px;
  position: relative;
  font-size: 1.15rem;
  max-width: 700px;
  margin-inline: auto;
}

.insight-page .btn-p {
  background: var(--c);
  color: #fff;
  font-weight: 800;
  padding: 18px 45px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  border: none;
}

.insight-page .btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--c) 35%, transparent);
}

.insight-page .btn-p-ghost {
  background: #fff;
  color: #111;
  border: 2px solid #eee;
}

.insight-page .ins-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.insight-page .ins-section {
  padding: 20px 0;
}

.insight-page .ins-section-alt {
  padding: 30px 0;
  background: #fcfcfd;
  border-top: 1px solid #f0f0f0;
}

.insight-page .ins-head {
  text-align: center;
  margin-bottom: 30px;
}

.insight-page .ins-focus-head {
  text-align: center;
  margin-bottom: 10px;
}

.insight-page .ins-kicker {
  color: var(--c);
  background: color-mix(in srgb, var(--c) 10%, transparent);
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 20px;
}

.insight-page .ins-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 15px;
}

.insight-page .ins-sub {
  color: #666;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.75;
}

.insight-page .insights-active {
  color: #d26010e6 !important;
}

/* ===== END INSIGHT PAGES SHARED CSS ===== */

/* ===== SEO PAGES CSS ===== */

.seo-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: white;
  overflow: hidden;
  text-align: center;
}

.seo-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(var(--seo-rgb), 0.15) 0%, transparent 50%);
  animation: pulse-glow 8s infinite alternate;
  pointer-events: none;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

.seo-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.seo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--seo-color);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.seo-hero h1 span {
  background: linear-gradient(to right, var(--seo-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-hero p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.seo-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.bento-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(var(--seo-rgb), 0.1), transparent 70%);
  border-radius: 50%;
}

.bento-card.large { grid-column: span 8; }
.bento-card.medium { grid-column: span 4; }
.bento-card.full { grid-column: span 12; display: flex; align-items: center; gap: 40px; }

@media (max-width: 992px) {
  .bento-card.large, .bento-card.medium { grid-column: span 12; }
  .bento-card.full { flex-direction: column; }
}

.bento-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(var(--seo-rgb), 0.1);
  color: var(--seo-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.bento-card p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
}

.seo-timeline {
  padding: 20px 0;
  background: #f8fafc;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--seo-color), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 15px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--seo-color);
  border: 6px solid #f8fafc;
  box-shadow: 0 0 0 4px rgba(var(--seo-rgb), 0.2);
}

.timeline-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #64748b;
  font-size: 1.1rem;
}

.seo-cta {
  padding: 40px 0;
  background: #0f172a;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seo-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.seo-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.seo-cta h2 span {
  color: var(--seo-color);
}

.btn-seo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--seo-color);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(var(--seo-rgb), 0.3);
}

.btn-seo:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(var(--seo-rgb), 0.4);
}

/* OVERVIEW SECTION */
.seo-overview {
  padding: 50px 0 0px;
  background: white;
  position: relative;
  z-index: 10;
}
.seo-overview .container {
  max-width: 1100px;
}
.seo-overview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.seo-overview-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0f172a;
  line-height: 1.2;
}
.seo-overview-text h2 span {
  color: var(--seo-color);
}
.seo-overview-text p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 25px;
}
.seo-overview-image {
  background: linear-gradient(135deg, rgba(var(--seo-rgb), 0.08) 0%, rgba(var(--seo-rgb), 0.02) 100%);
  border: 1px solid rgba(var(--seo-rgb), 0.15);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(var(--seo-rgb), 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.seo-overview-image::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(var(--seo-rgb), 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.seo-overview-image i {
  font-size: 150px;
  color: var(--seo-color);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(var(--seo-rgb), 0.2));
  transform: translateY(0);
  animation: floatIcon 6s ease-in-out infinite;
}

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

@media (max-width: 992px) {
  .seo-overview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .seo-overview-image {
    padding: 60px 20px;
  }
}

/* FAQ SECTION */
.seo-faq {
  padding: 40px 0 30px;
  background: #f8fafc;
}
.seo-faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.seo-faq-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}
.seo-faq-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 10px auto 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}
.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: var(--seo-color);
}
.faq-icon {
  color: var(--seo-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #475569;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  padding: 0 30px 24px;
  max-height: 500px;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ===== END SEO PAGES CSS ===== */
