/* ══════════════════════════════════════════════
   AARA TECH — Light Theme (Infotek-Inspired)
   Primary: #F92F5A | Font: Plus Jakarta Sans + Syne
══════════════════════════════════════════════ */

:root {
  --brand:      #F92F5A;
  --brand-dk:   #d41f47;
  --brand-dark: #d41f47;
  --brand-lt:   #fff0f3;
  --brand-pale: #fff0f3;
  --bg:         #ffffff;
  --bg2:        #f7f8fc;
  --bg3:        #eef0f8;
  --off:        #f7f8fc;
  --text:       #0f1117;
  --text2:      #5a5f72;
  --text3:      #8a8f9e;
  --border:     rgba(0,0,0,0.08);
  --border2:    rgba(0,0,0,0.10);
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --radius:     14px;
  --radius-lg:  20px;
  --nav-h:      72px;
}

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

html { scroll-behavior:smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { cursor:pointer; text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; }
input, select, textarea, button { font-family:inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.brand { color: var(--brand); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(249,47,90,0.3);
  text-decoration: none;
}
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,47,90,0.4); }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--brand);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-primary-sm:hover { background: var(--brand); color: #fff; }

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.btn-play:hover { color: var(--brand); }
.play-icon {
  width: 48px; height: 48px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem;
  box-shadow: 0 0 0 8px rgba(249,47,90,0.15);
  transition: transform .2s;
}
.btn-play:hover .play-icon { transform: scale(1.1); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--brand);
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  transition: all .2s;
}
.btn-white:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--brand);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,47,90,0.25);
}

.full-btn { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ─── Section Labels ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle, .section-desc {
  color: var(--text2);
  max-width: 560px;
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .section-subtitle { margin: 0 auto; }

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════ TOP BAR ════ */
/* .topbar {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  font-size: .8rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i, .topbar-right i { color: var(--brand); }
.topbar-right { gap: 12px; }
.topbar-right a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  transition: background .2s, color .2s;
}
.topbar-right a:hover { background: var(--brand); color: #fff; } */

/* ════ NAV ════ */
.navbar {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text2);
  transition: color .2s, background .2s;
  cursor: pointer;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--brand); border-radius: 2px;
}

.btn-quote {
  display: flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-weight: 700; font-size: .85rem;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
  margin-left: 8px;
}
.btn-quote:hover { background: var(--brand-dk); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 4px;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  padding: 10px 0;
  font-weight: 600;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.mobile-nav a:last-child { border-bottom: none; }
.btn-quote-mobile {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 12px 0 !important;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 8px;
  border-bottom: none !important;
}

/* Hamburger active animation */
.hamburger span{
  transition: all .3s ease;
}

.hamburger.active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* FINAL mobile homepage fixed navbar fix */
@media (max-width: 991px){

  html,
  body{
    overflow-x:hidden;
  }

  /* stable navbar */
  .navbar{
    position:fixed !important;
    top:0 !important;
    left:0;
    width:100%;
    z-index:999999;
    backface-visibility:hidden;
  }

  body{
    padding-top:72px;
  }
}
/* ═══════════════════════════════════════
   MOBILE NAV GAP FIX
═══════════════════════════════════════ */

@media (max-width: 991px){

  .mobile-nav{
    position: fixed;
    top: 72px; /* navbar height */
    left: 0;
    width: 100%;

    background: #fff;

    z-index: 99998;

    margin: 0 !important;
    border-top: none !important;
  }

  .mobile-nav:not(.open){
    display: none !important;
  }

  .mobile-nav.open{
    display: flex !important;
  }

  /* remove extra top spacing from hero */
  .hero,
  .ob-hero,
  .inner-hero{
    margin-top: 0 !important;
  }

  body{
    padding-top: 72px !important;
  }
}

/* ════ PAGES ════ */
.page { display: none; }
.page.active { display: block; }

/* ════ HERO ════ */
.hero {
  min-height: calc(80vh);
  /* background: var(--bg2); */
  
  background: linear-gradient(135deg, var(--brand-lt) 0%, rgba(249,47,90,0.05) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
 }
 /* .hero-content{
  background-color: rgb(30, 255, 0);
  
}  */
.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape-4{
height: 200px;width: 200px;position: absolute;
margin-top: -10px;

}
@keyframes shapePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .7; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 60px; */
  align-items: center;
  padding: 40px 24px;
  position: relative;
  /* background-color: red; */
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fde9ed;
  color: var(--brand);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  /* background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%); */
 

  display: flex;
  flex-direction: column;
}
.line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: lineReveal .7s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
@keyframes lineReveal {
  to { opacity: 1; transform: none; }
}

.hero-sub {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--brand);
}
.stat span { font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.stat p { font-size: .8rem; color: var(--text2); font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* Hero Image Side */
.hero-image { display: flex; justify-content: center; align-items: center;
   /* background-color: rgb(0, 89, 255); */
   }
.hero-img-wrap { position: relative; width: 400px; height: 400px; }

.hero-img-gfx {
  width: 100%; height: 100%;
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
  background: linear-gradient(135deg, var(--brand-lt) 0%, rgba(249,47,90,0.05) 100%);
  display: flex; align-items: center; justify-content: center;
  animation: morphBlob 8s ease-in-out infinite;
  position: relative;
  border: 2px solid rgba(249,47,90,0.1);
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; }
  33% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  66% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.gfx-circle {
  position: absolute;
  border-radius: 50%;
}
.c1 {
  width: 80px; height: 80px;
  background: var(--brand);
  opacity: .1;
  top: 10%; left: 10%;
}
.c2 {
  width: 50px; height: 50px;
  border: 3px solid var(--brand);
  opacity: .2;
  bottom: 20%; right: 15%;
}
.gfx-grid {
  position: absolute;
  width: 150px; height: 150px;
  background-image: 
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 20px 20px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: .4;
}
.gfx-person {
  position: relative; z-index: 1;
  font-size: 5rem;
  color: var(--brand);
border-radius: 20px;
  /* opacity: .6; */
}

.hero-img-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem; font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}
.hero-img-card i { color: var(--brand); font-size: 1.1rem; }
.card-float-1 {
  top: 10%; left: -30px;
  animation: floatY 4s ease-in-out infinite;
}
.card-float-2 {
  bottom: 15%; right: -30px;
  animation: floatY 4s ease-in-out infinite reverse;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--text3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-ball {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ════ FEATURES BAR ════ */
.features-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: var(--shadow);
}
.features-bar-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  flex: 1;
  min-width: 200px;
  transition: background .2s;
}
.feat-item:hover { background: var(--brand-lt); }
.feat-item i {
  width: 44px; height: 44px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.feat-item:hover i { background: var(--brand); color: #fff; }
.feat-item div { display: flex; flex-direction: column; }
.feat-item strong { font-size: .9rem; }
.feat-item span { font-size: .78rem; color: var(--text3); }
.feat-div { width: 1px; background: var(--border); align-self: stretch; }

/* ════ ABOUT SNIPPET ════ */
.inner-hero-bg {
  position: absolute;
  inset: 0;

  background: linear-gradient(120deg, #F32C57 0%, #000000 100%) !important;

 
}

.inner-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;

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

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.about-snippet {
   background: var(--bg);
   }
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img-bg {
  position: absolute;
  width: 85%; height: 60%;
  background: var(--brand-lt);
  border-radius: 24px;
  top: 17.5%; left: 7.5%;
}
.about-img-main {
  position: relative;
  width: 320px; height: 390px;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(249,47,90,0.3);
}
.about-gfx-icon { font-size: 5rem; color: rgba(255,255,255,0.25); }
.abt-main-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-radius: 24px;
  height: 580px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(249,47,90,0.3);
}

.about-gfx-icon{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-gfx-icon img {
  width: 98%;        /* control size */
  height: 98%;      /* keep ratio */
  object-fit: cover;
  border-radius: 20px;
  /* opacity: 0.8;      clearer image */
}
.about-gfx-circle {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  top: -15px; right: -15px;
}
.about-exp-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}
.about-exp-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  color: var(--brand);
}
.about-exp-badge span { font-size: .75rem; color: var(--text2); }
.about-dots-pattern {
  position: absolute;
  bottom: 20px; right: 0;
  width: 100px; height: 100px;
  background-image: radial-gradient(rgba(249,47,90,0.2) 2px, transparent 2px);
  background-size: 16px 16px;
}

.about-points { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.abt-pt { display: flex; align-items: flex-start; gap: 14px; }
.pt-check {
  width: 32px; height: 32px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.abt-pt strong { font-size: .95rem; display: block; margin-bottom: 2px; }
.abt-pt p { font-size: .85rem; color: var(--text2); margin: 0; }

.about-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.mini-stat { text-align: center; }
.mini-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  color: var(--brand);
}
.mini-stat span { font-size: .8rem; color: var(--text2); }

/* ════ SERVICES PREVIEW ════ */
.services-preview { background-color: #FEF1F4; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(249,47,90,0.15); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 56px; height: 56px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background .2s, color .2s;
}
.svc-card:hover .svc-icon { background: var(--brand); color: #fff; }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.svc-card p { font-size: .88rem; color: var(--text2); margin-bottom: 20px; }
.svc-link {
  font-size: .85rem; font-weight: 700;
  color: var(--brand);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.svc-card:hover .svc-link { gap: 10px; }

.svc-cta-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-color: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.svc-cta-card::before { display: none; }
.svc-cta-inner { text-align: center; color: #fff; }
.svc-cta-inner i { font-size: 2.5rem; margin-bottom: 16px; opacity: .9; }
.svc-cta-inner h3 { color: #fff; margin-bottom: 10px; }
.svc-cta-inner p { color: rgba(255,255,255,0.8); font-size: .88rem; margin-bottom: 20px; }
.svc-cta-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(249,47,90,0.5); }

/* ════ TECHNOLOGY SECTION ════ */
.technology-section { background: var(--bg); }
.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-list { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.tech-item {
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform .2s;
}
.tech-item:hover { transform: translateX(6px); }
.tech-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--brand-lt);
  -webkit-text-stroke: 2px var(--brand);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.tech-item strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.tech-item p { font-size: .85rem; color: var(--text2); margin: 0; }

/* Tech Rings Visual */
.tech-visual { display: flex; align-items: center; justify-content: center; }
.tech-rings {
  position: relative;
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(249,47,90,0.25);
  display: flex; align-items: center; justify-content: center;
}
.ring-1 { width: 120px; height: 120px; animation: spin 10s linear infinite; }
.ring-2 { width: 210px; height: 210px; animation: spin 15s linear infinite reverse; }
.ring-3 { width: 300px; height: 300px; animation: spin 22s linear infinite; }

.ring-icon {
  position: absolute;
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  color: var(--brand);
  font-size: .85rem;
}
.ri1 { top: -20px; }
.ri2 { top: -20px; }
.ri3 { bottom: -20px; }
.ri4 { top: -20px; }
.ri5 { right: -20px; }
.ri6 { bottom: -20px; }

.ring-center {
  width: 80px; height: 80px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 12px rgba(249,47,90,0.1);
}
.brand-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #fff;
}

/* ════ PROCESS ════ */
.process-section { background-color: #FEF1F4; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.proc-step {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.proc-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: var(--brand-lt);
  -webkit-text-stroke: 2px rgba(249,47,90,0.15);
  line-height: 1;
  margin-bottom: -16px;
}
.proc-icon {
  width: 64px; height: 64px;
  background: var(--brand);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(249,47,90,0.3);
  transition: transform .3s;
}
.proc-step:hover .proc-icon { transform: rotate(10deg) scale(1.05); }
.proc-step h3 { font-size: .95rem; margin-bottom: 8px; }
.proc-step p { font-size: .82rem; color: var(--text2); }
.proc-arrow {
  color: var(--brand);
  font-size: 1.2rem;
  padding-top: 80px;
  opacity: .3;
}

/* ════ COUNTER ════ */
.counter {
  position: relative;
  min-height: 420px;
  background-image: url('images/team-working-together-project.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Dark overlay so text stays readable */
.counter::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 5, 20, 0.65);
}

.counter-inner {
  position: relative; z-index: 1;  /* sit above the overlay */
}
@media (max-width: 768px) {
  .counter {
    background-attachment: scroll;
    background-position: center center;
  }
}
/* ════ TESTIMONIALS ════ */
.testimonials-section { background: var(--bg2); }
.testi-marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
/* Premium fade gradients on left and right */
.testi-marquee-wrap::before, .testi-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}
.testi-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}
.testi-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiMarquee 40s linear infinite;
  padding: 16px 0;
}
.testi-marquee:hover {
  animation-play-state: paused;
}
.testi-card {
  width: 380px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  box-sizing: border-box;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

@media (max-width: 600px) {
  .testi-card {
    width: 290px;
    padding: 24px 20px;
  }
  .testi-marquee-wrap::before, .testi-marquee-wrap::after {
    width: 50px;
  }
}

@keyframes testiMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); } /* 12px is half of 24px gap */
}
.testi-card::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  color: var(--brand-lt);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
}
.testi-stars { color: #f59e0b; margin-bottom: 12px; font-size: .85rem; }
.testi-card p { font-size: .9rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .8rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author span { font-size: .78rem; color: var(--text3); }

/* ════ CTA BANNER ════ */
.cta-banner {
  background: linear-gradient(120deg, #F32C57, #000000);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
 

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

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cta-bg-shape {
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,47,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.cta-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(0, 0, 0, 0.7); }
.cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ════ CLIENTS MARQUEE ════ */
.clients-section { background: var(--bg); padding: 72px 0; }
.clients-marquee-wrap { overflow: hidden; position: relative; }
.clients-marquee-wrap::before, .clients-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
}
.clients-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.clients-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.clients-marquee {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.clients-marquee:hover { animation-play-state: paused; }
.client-logo {
  padding: 16px 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  white-space: nowrap;
  transition: border-color .2s, transform .2s;
}
.client-logo:hover { border-color: var(--brand); transform: translateY(-2px); }
.client-logo span { font-weight: 700; font-size: .9rem; color: var(--text3); letter-spacing: .05em; }

/* ════ INNER HERO ════ */
.inner-hero {
  background: var(--bg2);
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero-bg {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(rgba(249,47,90,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.inner-hero-label {
  display: inline-block;
  background: var(--brand-lt);
  color: var(--brand);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  position: relative;
}
.inner-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
 
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text3);
  position: relative;
}
.breadcrumb a { color: var(--brand); cursor: pointer; }
.breadcrumb i { font-size: .7rem; }

/* ════ ABOUT FULL ════ */
.about-main { background: var(--bg); }
.about-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abt-main-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  border-radius: 24px;
  height: 580px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(249,47,90,0.3);
}

.abt-gfx {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-gfx img {
  width: 99%;        /* control size */
  height: 99%;      /* keep ratio */
  object-fit: cover;
  border-radius: 20px;
  /* opacity: 0.9;      clearer image */
}
.abt-exp-pill {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 700; font-size: .85rem;
  color: var(--brand);
  white-space: nowrap;
}
.abt-exp-pill i { margin-right: 6px; }

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.val-item {
  background: var(--bg2);
  border-radius: 12px;
  padding: 20px;
}
.val-item i { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.val-item strong { display: block; margin-bottom: 4px; }
.val-item p { font-size: .8rem; color: var(--text2); margin: 0; }

/* img mouse intreaction efefct */


/* MISSION */
.mission-section { background: var(--bg2); }
.mission-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-icon {
  width: 64px; height: 64px;
  background: var(--brand);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(249,47,90,0.3);
}
.mission-card h3 { margin-bottom: 12px; }
.mission-card p { font-size: .88rem; color: var(--text2); }

/* TEAM */
.team-section { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px;
  background: var(--brand-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 2rem;
  margin: 0 auto 16px;
  border: 3px solid rgba(249,47,90,0.2);
}
.team-card h4 { margin-bottom: 4px; }
.team-card p { font-size: .85rem; color: var(--text3); margin-bottom: 16px; }
.team-socials a {
  width: 32px; height: 32px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: background .2s, color .2s;
}
.team-socials a:hover { background: var(--brand); color: #fff; }

/* ════ SERVICES FULL ════ */

.services-full {
  background-color: #FFEFF3;
  padding: 80px 0;
}

.inner-hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-top: 15px;
  max-width: 600px;
  line-height: 1.6;
}

.services-full .section-label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 15px;
}

.services-full .section-label::before,
.services-full .section-label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--brand);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.svc-card-premium {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
}

.svc-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--brand), var(--brand-dk));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(249, 47, 90, 0.08);
  border-color: rgba(249, 47, 90, 0.15);
}

.svc-card-premium:hover::before {
  opacity: 1;
}

.svc-card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.svc-card-premium:hover .svc-card-icon-wrap {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(249, 47, 90, 0.25);
}

.svc-card-premium h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.svc-card-premium p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.svc-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-card-list li {
  font-size: 0.88rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-card-list li i {
  color: var(--brand);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.svc-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.svc-card-link i {
  transition: transform 0.3s ease;
}

.svc-card-link:hover {
  color: var(--brand-dk);
}

.svc-card-link:hover i {
  transform: translateX(5px);
}

/* Wide Card Layout */
.svc-wide-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 45px 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.svc-wide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--brand), var(--brand-dk));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-wide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(249, 47, 90, 0.08);
  border-color: rgba(249, 47, 90, 0.15);
}

.svc-wide-card:hover::before {
  opacity: 1;
}

.svc-wide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.svc-wide-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.svc-wide-text p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 25px;
}

.svc-wide-list-col {
  padding-top: 20px;
}

/* Stacked profile illustration styles */
.svc-wide-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 180px;
}

.graphic-stacked-cards {
  position: relative;
  width: 180px;
  height: 140px;
}

.graphic-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.03);
  display: flex;
  gap: 8px;
  align-items: center;
  transition: all 0.4s ease;
}

.card-back {
  width: 130px;
  height: 60px;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
  transform: rotate(-8deg);
}

.card-middle {
  width: 130px;
  height: 60px;
  top: 15px;
  left: 30px;
  z-index: 2;
  opacity: 0.8;
  transform: rotate(5deg);
}

.card-front {
  width: 140px;
  height: 80px;
  bottom: 0;
  right: 0;
  z-index: 3;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 25px rgba(249, 47, 90, 0.06);
  border-color: rgba(249, 47, 90, 0.1);
  transform: translateY(0);
}

.svc-wide-card:hover .card-front {
  transform: translateY(-5px) rotate(-2deg);
  border-color: rgba(249, 47, 90, 0.2);
}
.svc-wide-card:hover .card-middle {
  transform: translate(5px, -3px) rotate(8deg);
}
.svc-wide-card:hover .card-back {
  transform: translate(-5px, -5px) rotate(-12deg);
}

.card-front-header {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.avatar-ph {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg3);
  flex-shrink: 0;
  overflow: hidden;
}

.avatar-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.avatar-ph.accent-bg {
  background: var(--brand-lt);
}

.avatar-ph.brand-bg {
  background: var(--brand);
}

.user-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lines-ph {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.line-ph {
  height: 6px;
  background: var(--bg3);
  border-radius: 3px;
}

.line-ph.w-40 { width: 40%; }
.line-ph.w-50 { width: 50%; }
.line-ph.w-60 { width: 60%; }
.line-ph.w-70 { width: 70%; }
.line-ph.w-80 { width: 80%; }

.card-front-tags {
  margin-top: 8px;
}

.mini-tag {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-lt);
  padding: 2px 6px;
  border-radius: 4px;
}

.graphic-search-glass {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 4;
  box-shadow: 0 4px 10px rgba(249, 47, 90, 0.3);
  transition: all 0.3s ease;
}

.svc-wide-card:hover .graphic-search-glass {
  transform: scale(1.1) translate(-2px, -2px);
  background: var(--brand-dk);
}

/* Stats Banner Styling */
.services-stats-section {
  padding: 40px 0;
  background-color: #FFEFF3;
}

.services-stats-banner {
  background: linear-gradient(135deg, #c5163f 0%, #a21031 50%, #7e0822 100%);
  border-radius: 24px;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  box-shadow: 0 15px 35px rgba(249, 47, 90, 0.15);
  color: #fff;
}

.services-stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.services-stat-item .stat-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.services-stat-item .stat-content {
  display: flex;
  flex-direction: column;
}

.services-stat-item .stat-num-container {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.services-stat-item .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* CTA Banner Styling */
.services-cta-section {
  padding: 40px 0 80px 0;
  background-color: #FFEFF3;
}

.services-cta-banner {
  background: #fff;
  border: 1px solid rgba(249, 47, 90, 0.1);
  border-radius: 24px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(249, 47, 90, 0.03);
}

.services-cta-decor {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  opacity: 0.15;
  background-image: radial-gradient(var(--brand) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  pointer-events: none;
}

.services-cta-content {
  position: relative;
  z-index: 1;
}

.services-cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.services-cta-content p {
  color: var(--text2);
  font-size: 0.95rem;
}

.services-cta-actions {
  position: relative;
  z-index: 1;
}

.services-cta-actions .btn-brand {
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(249, 47, 90, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.services-cta-actions .btn-brand:hover {
  background: var(--brand-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 47, 90, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .services-cards-grid {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-wide-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    padding: 40px;
  }
  .svc-wide-graphic {
    display: none;
  }
  .services-stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .services-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  .services-cta-actions {
    width: 100%;
  }
  .services-cta-actions .btn-brand {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .svc-card-premium {
    padding: 35px 25px;
  }
  .svc-wide-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 25px;
  }
  .svc-wide-list-col {
    padding-top: 0;
  }
  .services-stats-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 25px;
  }
}

/* ════ CAREERS ════ */
.section-badge {
  display: inline-block;
  background: var(--brand-lt);
  color: var(--brand);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════
   CAREERS PAGE
══════════════════════════════════════════════ */
.careers-grid-main { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem;  }
.job-listings { display: flex; flex-direction: column; gap: 1.25rem; }
.job-card { border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: all 0.25s; cursor: pointer; }
.job-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateX(4px); }
.job-title { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.job-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.job-badge { padding: 0.2rem 0.65rem; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }
.job-badge.type { background: var(--brand-pale); color: var(--brand); }
.job-badge.loc { background: var(--off); color: var(--text2); }
.job-arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--off); display: flex; align-items: center; justify-content: center; color: var(--text2); transition: all 0.2s; flex-shrink: 0; font-size: 1rem; }
.job-card:hover .job-arrow { background: var(--brand); color: white; }

.career-form-box { background: var(--off); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border2); position: sticky; top: 100px;  margin-bottom: 0.5rem;;
} 
.career-form-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.career-form-box p { font-size: 0.85rem; color: var(--text2); font-weight: 300; margin-bottom: 1.75rem; }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.benefit-card { background-color: #FFEFF3; border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: all 0.25s; }
.benefit-card:hover { border-color: rgba(249,47,90,0.2); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; }
.benefit-card p { font-size: 0.78rem; color: var(--text2); font-weight: 300; line-height: 1.6; }
.careers-form-section { background: var(--bg2); }
.careers-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow);
}
.careers-form-header { margin-bottom: 32px; }
.careers-form-header p { color: var(--text2); }

.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(249,47,90,0.2); }
.job-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.job-badge {
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .08em;
}
.job-badge.contract { background: #fff8e1; color: #f59e0b; }
.job-badge.perm { background: #e8f5e9; color: #22c55e; }
.job-badge.c2h { background: var(--brand-lt); color: var(--brand); }
.job-loc { font-size: .78rem; color: var(--text3); display: flex; align-items: center; gap: 4px; }
.job-card h3 { font-size: .95rem; margin-bottom: 4px; }
.job-card p { font-size: .82rem; color: var(--text2); margin-bottom: 16px; }
.job-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 12px; }
.job-card-footer span { font-size: .78rem; color: var(--text3); }
.job-apply { font-size: .82rem; font-weight: 700; color: var(--brand); display: flex; align-items: center; gap: 6px; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text2); margin-bottom: 0.4rem; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border2); border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 300;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,47,90,0.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.upload-box { border: 1.5px dashed rgba(249,47,90,0.3); border-radius: 10px; padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--brand-pale); }
.upload-box:hover { border-color: var(--brand); background: rgba(249,47,90,0.06); }
.upload-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.upload-text { font-size: 0.82rem; color: var(--text2); font-weight: 300; }
.upload-text strong { color: var(--brand); font-weight: 600; }

.form-submit-btn {
  width: 100%; padding: 0.875rem; background: var(--brand); color: white; border: none;
  border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; letter-spacing: 0.02em;
}
.form-submit-btn:hover { background: var(--brand-dark); box-shadow: 0 8px 24px rgba(249,47,90,0.3); transform: translateY(-1px); }


/* ════ FORM STYLES ════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .85rem; font-weight: 600; }
.req { color: var(--brand); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  background: var(--bg2);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,47,90,0.08);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.upload-box {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  background: var(--bg2);
}
.upload-box { border-color: var(--brand); background: var(--brand-lt); }
.upload-box i { font-size: 2rem; color: var(--brand); margin-bottom: 8px; display: block; }
.upload-text { font-size: .9rem; margin-bottom: 4px; }
.upload-box span { font-size: .78rem; color: var(--text3); }
.upload-box input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}

.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--text2);
  cursor: pointer;
  margin: 20px 0 8px;
}
.consent-label input { margin-top: 2px; accent-color: var(--brand); }
.consent-label a { color: var(--brand); }

.cf-error {
  color: #c0392b;
  font-size: .85rem;
  padding: 10px 14px;
  background: #ffeaea;
  border-radius: 8px;
  margin-bottom: 12px;
}
/* ════════════════════════════════════════
   CAREERS PAGE — RESPONSIVE FIX
════════════════════════════════════════ */

/* Large Tablets */
@media (max-width: 1100px){

  .careers-grid-main{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .career-form-box{
    position: relative;
    top: auto;
    width: 100%;
  }

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

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


/* Mobile + Tablets */
@media (max-width: 768px){

  /* overall spacing */
  .careers-grid-main{
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  /* Benefits cards */
  .benefits-grid{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 2rem;
  }

  .benefit-card{
    padding: 1rem;
    border-radius: 14px;
  }

  .benefit-icon{
    font-size: 1.5rem;
    margin-bottom: .5rem;
  }

  .benefit-card h4{
    font-size: .85rem;
    line-height: 1.3;
  }

  .benefit-card p{
    font-size: .72rem;
    line-height: 1.5;
  }

  /* Jobs */
  .job-listings{
    gap: 1rem;
  }

  .job-card{
    padding: 1rem;
    border-radius: 14px;
    align-items: flex-start;
  }

  .job-title{
    font-size: .9rem;
  }

  .job-meta{
    gap: .45rem;
    margin-top: .45rem;
  }

  .job-badge{
    font-size: .62rem;
    padding: .18rem .55rem;
  }

  .job-arrow{
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: .85rem;
  }

  /* FORM */
  .career-form-box{
    width: 100%;
    padding: 1.4rem;
    border-radius: 18px;
    position: relative;
    top: auto;
  }

  .career-form-box h3{
    font-size: 1.1rem;
  }

  .career-form-box p{
    font-size: .8rem;
    line-height: 1.6;
  }

  /* THIS FIXES SIDE-BY-SIDE ISSUE */
  .form-row,
  .form-grid{
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .form-input,
  .form-select,
  .form-textarea{
    font-size: .85rem;
    padding: .8rem .9rem;
  }

  .form-textarea{
    min-height: 100px;
  }

  /* Upload box */
  .upload-box{
    padding: 1.5rem 1rem;
  }

  .upload-text{
    font-size: .78rem;
    line-height: 1.5;
  }

  /* submit button */
  .form-submit-btn{
    padding: .9rem;
    font-size: .9rem;
  }

  /* section headings */
  .section-title{
    font-size: 2rem !important;
    line-height: 1.15;
  }

  .section-subtitle,
  .section-desc{
    font-size: .9rem;
    line-height: 1.7;
  }

  /* Hero */
  .inner-hero{
    min-height: 240px;
    text-align: center;
  }

  .inner-hero h1{
    font-size: 2.2rem !important;
    line-height: 1.1;
  }

  .breadcrumb{
    justify-content: center;
  }
}


/* Small Mobile */
@media (max-width: 520px){

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

  .job-card{
    flex-direction: row;
    gap: .75rem;
  }

  .career-form-box{
    padding: 1.2rem;
  }

  .section-title{
    font-size: 1.8rem !important;
  }

  .inner-hero h1{
    font-size: 1.9rem !important;
  }

  .upload-box{
    padding: 1.25rem .8rem;
  }

  .upload-icon{
    font-size: 1.5rem;
  }
}

/* ════ CONTACT ════ */
.contact-section { background: var(--bg2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.c-icon {
  width: 44px; height: 44px;
  background: var(--brand-lt);
  color: var(--brand);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-item div { display: flex; flex-direction: column; }
.contact-detail-item strong { font-size: .85rem; color: var(--text3); margin-bottom: 2px; }
.contact-detail-item a, .contact-detail-item span { font-weight: 600; color: var(--text); }
.contact-socials { display: flex; gap: 10px; }
.c-social {
  width: 40px; height: 40px;
  background: var(--brand);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem;
  transition: all .2s;
}
.c-social:hover { background: var(--brand); border-color: var(--brand); color: #1f1e1e; }

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cf-radios {
  display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap;
}
.cf-radio {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.cf-radio.selected { border-color: var(--brand); background: var(--brand-lt); color: var(--brand); }
.cf-radio input { display: none; }

/* ════ FOOTER ════ */
.footer { background: var(--text); color: rgba(255,255,255,0.75); }
.footer-top { padding: 72px 0 48px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand-col p { font-size: .88rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo .logo-icon { background: var(--brand); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: .8rem;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--brand); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: color .2s, gap .2s;
}
.footer-col ul a:hover { color: var(--brand); gap: 12px; }
.footer-col ul i { color: var(--brand); font-size: .7rem; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact div { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.footer-contact i { width: 16px; }
.footer-contact a:hover { color: var(--brand); }
.footer-newsletter h5 { color: rgba(255,255,255,0.6); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.newsletter-form { display: flex; border-radius: 8px; overflow: hidden; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  font-size: .85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  width: 44px;
  background: var(--brand);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--brand-dk); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--brand); }

/* ═══════════════════════════════════════
   FOOTER RESPONSIVE
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   TABLET FOOTER PERFECT ALIGNMENT
═══════════════════════════════════════ */
/* TABLET FOOTER 3 COLUMN */
@media screen and (min-width:601px) and (max-width:991px){

  .footer-top-inner{
    display:grid !important;

    grid-template-columns:
      1fr 1fr 1fr !important;

    grid-template-areas:
      "brand brand brand"
      "links services contact" !important;

    gap:18px 0px !important;

    align-items:start !important;
  }
.footer-col{
  padding:0 8px !important;
}
  /* BRAND */
  .footer-brand-col{
    grid-area:brand;

    text-align:center !important;
  }

  .footer-logo{
    justify-content:center !important;
  }

  .footer-brand-col p{
    max-width:620px;

    margin:16px auto 22px !important;
  }

  .footer-socials{
    justify-content:center !important;
  }

  /* QUICK LINKS */
  .footer-col:nth-child(2){
    grid-area:links;
  }

  /* SERVICES */
  .footer-col:nth-child(3){
    grid-area:services;
  }

  /* CONTACT */
  .footer-col:nth-child(4){
    grid-area:contact;

    text-align:left !important;
  }

  .footer-col ul{
    gap:10px !important;
  }

  .footer-contact{
    gap:12px !important;
  }

  .footer-contact div{
    line-height:1.6 !important;
  }

  .newsletter-form{
    width:100% !important;
  }

  .newsletter-form input{
    padding:12px 14px !important;
  }
}


/* MOBILE */
@media screen and (max-width: 600px){

  .footer-top{
    padding:50px 0 35px !important;
  }

  .footer-top-inner{
    display:flex !important;
    flex-direction:column !important;
    gap:36px !important;
    text-align:center !important;
  }

  .footer-col{
    width:100%;
  }

  .footer-logo{
    justify-content:center !important;
  }

  .footer-brand-col p{
    font-size:.95rem;
    line-height:1.9;
    margin:18px auto 24px;
    max-width:320px;
  }

  .footer-socials{
    justify-content:center !important;
    gap:12px;
  }

  .footer-col h4::after{
    left:50% !important;
    transform:translateX(-50%);
  }

  .footer-col ul{
    align-items:center;
    gap:14px;
  }

  .footer-col ul a{
    justify-content:center;
    font-size:.95rem;
  }

  .footer-contact{
    align-items:center;
    gap:16px;
  }

  .footer-contact div{
    justify-content:center;
    text-align:center;
    line-height:1.7;
  }

  .footer-newsletter{
    margin-top:12px;
  }

  .newsletter-form{
    max-width:320px;
    margin:auto;
  }

  .newsletter-form input{
    padding:13px 14px;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
  }

  .footer-links{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
  }
  /* HIDE FOOTER LINKS IN MOBILE */
.footer-col:nth-child(2),
.footer-col:nth-child(3){
  display:none !important;
}
  
}
/* ════ TOAST ════ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: #1a2a1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .9rem;
  font-weight: 600;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .35s, opacity .35s;
  z-index: 9999;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ════ RESPONSIVE ════ */
/* ══════════════════════════════════════════════
   ONBOARDING PAGE
══════════════════════════════════════════════ */
.onboarding-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; padding-top: 3rem;  }
.onboarding-sidebar { position: sticky; top: 100px; }
.onboarding-sidebar-inner { background: var(--off); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 1.5rem; }
.onboarding-sidebar h3 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; letter-spacing: 0.02em; }
.ob-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.85rem; border-radius: 8px; cursor: pointer; transition: all 0.2s; margin-bottom: 0.25rem; }
.ob-nav-item:hover { background: var(--border2); }
.ob-nav-item.active { background: var(--brand-pale); }
.ob-nav-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: var(--text3); flex-shrink: 0; transition: all 0.2s; }
.ob-nav-item.active .ob-nav-dot { border-color: var(--brand); background: var(--brand); color: white; }
.ob-nav-item.done .ob-nav-dot { border-color: #16a34a; background: #16a34a; color: white; }
.ob-nav-item.done .ob-nav-dot::after { content: '✓'; }
.ob-nav-label { font-size: 0.82rem; font-weight: 500; color: var(--text2); }
.ob-nav-item.active .ob-nav-label { color: var(--brand); font-weight: 600; }
.ob-nav-item.done .ob-nav-label { color: #16a34a; }
.ob-progress-bar { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border2); }
.ob-progress-label { font-size: 0.72rem; color: var(--text3); margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.ob-progress-track { height: 4px; background: var(--border2); border-radius: 2px; }
.ob-progress-fill { height: 100%; background: var(--brand); border-radius: 2px; transition: width 0.4s ease; }

/* .ob-main { } */
.ob-legal-banner { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2rem; }
.ob-legal-banner p { font-size: 0.82rem; color: #1e40af; line-height: 1.6; }
.ob-legal-banner strong { font-weight: 600; }

.doc-step { display: none; }
.doc-step.active { display: block; animation: fadeIn 0.35s ease; }
.doc-step-header { margin-bottom: 2rem; }
.doc-step-header h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.doc-step-header p { font-size: 0.9rem; color: var(--text2); font-weight: 300; line-height: 1.7; }

.doc-purpose-box { background: var(--off); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.1rem 1.25rem; margin-bottom: 1.5rem; }
.doc-purpose-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 0.4rem; }
.doc-purpose-box p { font-size: 0.83rem; color: var(--text2); line-height: 1.7; font-weight: 300; }

.doc-warning-box { background: #FFF5F5; border: 1px solid rgba(249,47,90,0.2); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.doc-warning-box p { font-size: 0.82rem; color: #c0182a; line-height: 1.6; }
.doc-warning-box strong { font-weight: 600; }

.doc-upload-zone {
  border: 2px dashed rgba(249,47,90,0.25); border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; cursor: pointer; transition: all 0.25s; background: var(--off);
  margin-bottom: 1rem;
}
.doc-upload-zone:hover { border-color: var(--brand); background: var(--brand-pale); }
.doc-upload-zone.uploaded { border-color: #16a34a; border-style: solid; background: #f0fdf4; }
.doc-upload-zone .upload-big-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.doc-upload-zone h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.doc-upload-zone p { font-size: 0.82rem; color: var(--text2); font-weight: 300; }
.doc-upload-zone .uploaded-name { font-size: 0.9rem; color: #16a34a; font-weight: 600; margin-top: 0.5rem; }

.doc-consent-box { background: var(--off); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.doc-consent-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.doc-consent-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.doc-consent-row label { font-size: 0.82rem; color: var(--text2); line-height: 1.6; cursor: pointer; }

.ssn-input-wrap { position: relative; margin-bottom: 1rem; }
.ssn-input-wrap input { width: 100%; padding: 0.85rem 1rem 0.85rem 3rem; border: 1.5px solid var(--border2); border-radius: 8px; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: border-color 0.2s; letter-spacing: 0.15em; }
.ssn-input-wrap input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,47,90,0.1); }
.ssn-input-wrap .ssn-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); font-size: 1rem; }

.ob-nav-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border2); }
.ob-btn-prev { padding: 0.75rem 1.5rem; background: transparent; border: 1.5px solid var(--border2); border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text2); cursor: pointer; transition: all 0.2s; }
.ob-btn-prev:hover { border-color: var(--text2); color: var(--text); }
.ob-btn-next { padding: 0.75rem 2rem; background: var(--brand); border: none; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: white; cursor: pointer; transition: all 0.2s; }
.ob-btn-next:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,47,90,0.3); }
.ob-btn-next:disabled { background: var(--border2); color: var(--text3); transform: none; box-shadow: none; cursor: not-allowed; }

.ob-step-indicator { font-size: 0.8rem; color: var(--text3); }

.ob-success { text-align: center; padding: 3rem 0; }
.ob-success-icon { width: 72px; height: 72px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.ob-success h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.ob-success p { font-size: 1rem; color: var(--text2); font-weight: 300; line-height: 1.8; max-width: 480px; margin: 0 auto 1rem; }
.ob-ref-box { display: inline-block; background: var(--off); border: 1px solid var(--border2); border-radius: 8px; padding: 0.75rem 1.5rem; font-size: 0.85rem; color: var(--text2); margin-top: 1rem; }
.ob-ref-box strong { color: var(--brand); font-family: 'Clash Display', sans-serif; }
.ob-nav-req-dot {
  font-size: 11px;
  color: var(--brand);
  margin-left: 4px;
  font-weight: 700;
}
.ob-nav-item.done .ob-nav-req-dot {
  color: #16a34a;
  font-size: 12px;
}
.ob-nav-item.done .ob-nav-req-dot::before { content: ''; }

/* Upload status badge */
.upload-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.85rem; border-radius: 100px; width: fit-content; margin-top: 0.5rem; }
.upload-status.pending { background: var(--off); color: var(--text3); }
.upload-status.success { background: #DCFCE7; color: #16a34a; }

/* ════════════════════════════════════════════════════════
   AARA TECH — RESPONSIVE FIX + PARALLAX SCENE + CURSOR
   Clean rewrite — replaces all previous appended blocks
════════════════════════════════════════════════════════ */

/* ── Smooth scroll ── */

/* ── Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ── Image performance ── */
img { max-width: 100%; height: auto; display: block; loading: lazy; }

/* ── Simple cursor ring (light, not distracting) ── */
#cursor-ring {
  position: fixed; z-index: 9999;
  width: 30px; height: 30px;
  border: 1.5px solid rgba(212,31,71,0.45);
  border-radius: 50%;
  pointer-events: none;
  top: 0; left: 0;
  transition: width .18s, height .18s, border-color .18s, opacity .2s;
  opacity: 0;
}
#cursor-ring.visible { opacity: 1; }
#cursor-ring.hov { width: 44px; height: 44px; border-color: var(--brand); }
@media (hover:none) { #cursor-ring { display: none !important; } }


/* ═══════════════════════════
   PARALLAX SCENE — SIZED DOWN
   Scene: 480×390px (was 580×470)
   Cards scaled ~17% smaller
═══════════════════════════ */
.px-scene {
  position: relative;
  width: 480px;
  height: 390px;
  flex-shrink: 0;
}

.px-layer {
  position: absolute; inset: 0;
  will-change: transform;
  pointer-events: none;
}
.px-layer > * { pointer-events: auto; }

.px-glow { position:absolute; border-radius:50%; filter:blur(50px); pointer-events:none; z-index:0; }
.px-g1 { width:200px;height:200px;background:radial-gradient(circle,rgba(212,31,71,0.1),transparent 65%);top:-30px;right:-20px; }
.px-g2 { width:180px;height:180px;background:radial-gradient(circle,rgba(255,77,109,0.08),transparent 65%);bottom:-15px;left:-15px; }
.px-g3 { width:140px;height:140px;background:radial-gradient(circle,rgba(212,31,71,0.06),transparent 65%);top:40%;left:40%;transform:translate(-50%,-50%); }

.px-card {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  will-change: transform;
  border: 1px solid rgba(255,255,255,0.2);
  transition: box-shadow .3s ease;
}
.px-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(145deg,rgba(255,255,255,0.16) 0%,rgba(255,255,255,0.03) 50%,transparent 100%);
  pointer-events:none; z-index:1; border-radius:inherit;
}

/* Card positions — scaled from 580 → 480 (ratio 0.828) */
.px-bl {
  width:159px; height:174px; top:6px; left:6px; z-index:2;
  background:linear-gradient(145deg,#c41a3e,#a8152f,#8e1028);
  box-shadow:0 16px 48px rgba(212,31,71,0.24),inset 0 1px 0 rgba(255,255,255,0.2);
  transform:rotate(-2.5deg);
}
.px-br {
  width:147px; height:160px; top:5px; right:5px; z-index:2;
  background:linear-gradient(145deg,#e83458,#d41f47,#b8173c);
  box-shadow:0 14px 45px rgba(212,31,71,0.2),inset 0 1px 0 rgba(255,255,255,0.18);
  transform:rotate(2deg);
}
.px-center {
  width:344px; height:255px; top:55px; left:50%; margin-left:-172px; z-index:4;
  background:linear-gradient(155deg,rgba(14,3,8,0.94),rgba(26,6,14,0.90),rgba(18,4,10,0.95));
  box-shadow:0 32px 80px rgba(0,0,0,0.16),0 12px 30px rgba(0,0,0,0.08),0 0 0 1px rgba(212,31,71,0.18),inset 0 1px 0 rgba(255,255,255,0.05);
  display:flex; flex-direction:column;
  border:1px solid rgba(212,31,71,0.14);
}
.px-fl {
  width:162px; height:142px; bottom:0; left:3px; z-index:6;
  background:linear-gradient(145deg,#ff9eb8,#ff7a9a,#ff5580);
  box-shadow:0 14px 45px rgba(255,141,171,0.22),inset 0 1px 0 rgba(255,255,255,0.3);
}
.px-fr {
  width:162px; height:142px; bottom:0; right:3px; z-index:6;
  background:linear-gradient(145deg,#e8234a,#c91838,#aa1230);
  box-shadow:0 14px 45px rgba(212,31,71,0.2),inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── Card inner ── */
.px-in { padding:10px 12px; height:100%; display:flex; flex-direction:column; position:relative; z-index:2; }
.px-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:8px; }
.px-logo { width:26px;height:26px;border-radius:7px;background:rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-family:'Plus Jakarta Sans',sans-serif;font-size:9px;font-weight:800;color:#fff; }
.px-badge { font-size:7px;font-weight:700;color:rgba(255,255,255,0.7);background:rgba(255,255,255,0.14);border:1px solid rgba(255,255,255,0.2);padding:2px 6px;border-radius:50px;text-transform:uppercase;letter-spacing:.07em; }
.px-name  { font-weight:800;font-size:10.5px;color:#fff;margin-bottom:2px; }
.px-sub   { font-size:7.5px;color:rgba(255,255,255,0.52); }
.px-lines { display:flex;flex-direction:column;gap:4px;flex:1;justify-content:flex-end;margin-top:6px; }
.px-line  { height:4px;border-radius:3px;background:rgba(255,255,255,0.16); }
.px-checks{ display:flex;gap:4px;margin-top:6px;align-items:center; }
.px-chk   { width:12px;height:12px;border-radius:3px;background:rgba(255,255,255,0.14);border:1px solid rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:7px;color:#fff; }
.px-chk.on{ background:rgba(255,255,255,0.36); }
.px-chk-lbl{ font-size:6.5px;color:rgba(255,255,255,0.4);margin-left:2px; }
.px-tbar { display:flex;align-items:center;gap:3px;background:rgba(0,0,0,0.13);border-radius:5px;padding:4px 7px;margin-bottom:7px; }
.px-mac  { width:5px;height:5px;border-radius:50%; }
.px-mac.r{background:#ff5f57;} .px-mac.a{background:#febc2e;} .px-mac.g{background:#28c840;}
.px-pub-row{ display:flex;gap:4px;margin-left:auto; }
.px-pub  { font-size:7px;font-weight:600;color:rgba(255,255,255,0.42); }
.px-pub.g{ color:rgba(200,255,190,0.7); }
.px-rows { display:flex;flex-direction:column;gap:6px;flex:1;justify-content:center; }
.px-row  { display:flex;align-items:center;gap:6px; }
.px-cb   { width:10px;height:10px;border-radius:2px;background:rgba(255,255,255,0.14);border:1px solid rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:6px;color:#fff;flex-shrink:0; }
.px-cb.on{ background:rgba(255,255,255,0.4); }
.px-bar  { flex:1;height:4px;border-radius:3px;background:rgba(255,255,255,0.14);overflow:hidden; }
.px-bfill{ height:100%;border-radius:3px;background:rgba(255,255,255,0.48); }

/* Center card */
.px-chrome{ height:27px;background:rgba(0,0,0,0.44);border-bottom:1px solid rgba(212,31,71,0.16);display:flex;align-items:center;padding:0 10px;gap:8px;position:relative;z-index:2; }
.px-cdots { display:flex;gap:4px; }
.px-cd    { width:7px;height:7px;border-radius:50%; }
.px-cd.r{background:#ff5f57;} .px-cd.a{background:#febc2e;} .px-cd.g{background:#28c840;}
.px-ctabs { display:flex;gap:3px;margin-left:6px; }
.px-ctab  { height:13px;border-radius:2px;background:rgba(255,255,255,0.07); }
.px-cact  { display:flex;gap:4px;margin-left:auto;align-items:center; }
.px-cbtn  { height:16px;padding:0 7px;border-radius:3px;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.07);display:flex;align-items:center;font-size:8px;font-weight:600;color:rgba(255,255,255,0.38); }
.px-cbtn.pub{ background:rgba(212,31,71,0.26);border-color:rgba(212,31,71,0.28);color:rgba(255,170,170,0.88); }
.px-cbody { display:flex;flex:1;height:calc(255px - 27px);position:relative;z-index:2; }
.px-csb   { width:30px;background:rgba(0,0,0,0.3);border-right:1px solid rgba(212,31,71,0.08);display:flex;flex-direction:column;align-items:center;padding:8px 0;gap:6px; }
.px-csi   { width:17px;height:17px;border-radius:4px;background:rgba(255,255,255,0.05); }
.px-csi.on{ background:rgba(212,31,71,0.30); }
.px-ccon  { flex:1;padding:12px 12px 9px;display:flex;flex-direction:column; }
.px-ch1   { font-weight:800;font-size:13px;color:#fff;line-height:1.2;letter-spacing:-.15px;margin-bottom:3px; }
.px-chl   { background:linear-gradient(120deg,#D41F47 20%,#ff4d6d 80%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.px-ccur  { display:inline-block;width:2px;height:11px;background:#fff;margin-left:2px;vertical-align:text-bottom;animation:pxcurblink .85s step-end infinite; }
@keyframes pxcurblink{50%{opacity:0}}
.px-csub  { font-size:8px;color:rgba(255,255,255,0.26);font-style:italic;margin-bottom:8px; }
.px-cgrid { display:grid;grid-template-columns:1.05fr .88fr 1.1fr;gap:5px;flex:1; }
.px-sa  { border-radius:8px;padding:7px;background:linear-gradient(145deg,rgba(212,31,71,0.85),rgba(160,18,42,0.90));border:1px solid rgba(255,255,255,0.09);display:flex;flex-direction:column;justify-content:flex-end;transition:background .35s ease; }
.px-sa-lbl{ font-size:6.5px;color:rgba(255,255,255,0.82);line-height:1.35; }
.px-sa-lbl strong{ color:#fff; }
.px-sws { display:flex;gap:3px;flex-wrap:wrap;margin-top:5px; }
.px-sw  { width:10px;height:10px;border-radius:50%;border:1.5px solid rgba(255,255,255,0.26);cursor:pointer;transition:transform .18s; }
.px-sw:hover{ transform:scale(1.35); }
.px-sw.on{ border-color:#fff;box-shadow:0 0 0 2px rgba(255,255,255,0.2); }
.px-sb  { border-radius:8px;padding:6px;background:rgba(8,2,5,0.68);border:1px solid rgba(212,31,71,0.14);display:flex;flex-direction:column;gap:4px; }
.px-sb-scr{ background:rgba(0,0,0,0.4);border-radius:5px;flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:4px;gap:3px; }
.px-sbl { height:2px;border-radius:2px;background:rgba(255,255,255,0.1); }
.px-pencil{ width:13px;height:13px;border-radius:50%;background:#D41F47;display:flex;align-items:center;justify-content:center;font-size:5px;color:#fff;align-self:flex-end; }
.px-sc  { border-radius:8px;padding:6px;background:rgba(8,2,5,0.55);border:1px solid rgba(255,77,109,0.14);display:flex;flex-direction:column;gap:2px; }
.px-sc-h{ display:flex;align-items:center;gap:3px;margin-bottom:2px; }
.px-sc-logo{ width:14px;height:14px;border-radius:3px;background:linear-gradient(135deg,#D41F47,#ff4d6d);display:flex;align-items:center;justify-content:center;font-size:7px;font-weight:800;color:#fff; }
.px-scr { display:flex;align-items:center;gap:3px;padding:2px 0;border-bottom:1px solid rgba(255,255,255,0.04); }
.px-scr:last-child{border:none;}
.px-scn { font-size:6.5px;color:rgba(255,255,255,0.26);width:8px;flex-shrink:0; }
.px-scb { flex:1; }
.px-sct { font-size:6.5px;color:rgba(255,255,255,0.78);font-weight:600;line-height:1;margin-bottom:1.5px; }
.px-scbar{ height:1.5px;border-radius:1px;background:rgba(255,255,255,0.07);overflow:hidden; }
.px-scf { height:100%;border-radius:1px;background:linear-gradient(90deg,#D41F47,#ff4d6d); }
.px-sctm{ font-size:6px;color:rgba(255,255,255,0.2);flex-shrink:0; }
.px-ficon{ width:26px;height:26px;border-radius:7px;background:rgba(255,255,255,0.18);border:1px solid rgba(255,255,255,0.24);display:flex;align-items:center;justify-content:center;font-size:11px;color:#fff;margin-bottom:7px; }
.px-ftit { font-size:9.5px;font-weight:800;color:#fff;margin-bottom:3px; }
.px-fsub { font-size:7.5px;color:rgba(255,255,255,0.55);line-height:1.38;flex:1; }
.px-fstat{ display:flex;align-items:baseline;gap:2px;margin-top:7px; }
.px-fnum { font-size:20px;font-weight:800;color:#fff; }
.px-fsfx { font-size:11px;font-weight:700;color:rgba(255,255,255,0.52); }
.px-fbar { height:2px;border-radius:2px;background:rgba(255,255,255,0.16);margin-top:5px;overflow:hidden; }
.px-ffil { height:100%;border-radius:2px;background:rgba(255,255,255,0.6);width:72%; }
.px-rbdg { display:inline-flex;align-items:center;gap:4px;background:rgba(0,0,0,0.17);border:1px solid rgba(255,255,255,0.14);border-radius:50px;padding:3px 7px;width:fit-content;margin-bottom:7px; }
.px-rdot { width:4px;height:4px;border-radius:50%;background:#fff;animation:pxrdp 1.8s ease-in-out infinite; }
@keyframes pxrdp{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(1.5)}}
.px-rbdg span{ font-size:7px;font-weight:700;color:rgba(255,255,255,0.7);text-transform:uppercase;letter-spacing:.07em; }
.px-rsts { display:flex;flex-direction:column;gap:6px;flex:1;justify-content:center; }
.px-rrw  { display:flex;justify-content:space-between;align-items:center;margin-bottom:2px; }
.px-rlbl { font-size:7.5px;color:rgba(255,255,255,0.48);font-weight:600; }
.px-rval { font-size:7.5px;font-weight:800;color:#fff; }
.px-rpb  { height:3px;border-radius:2px;background:rgba(255,255,255,0.12);overflow:hidden; }
.px-rpf  { height:100%;border-radius:2px;background:rgba(255,255,255,0.52); }

/* ═══════════════════════════════
   FULLY RESPONSIVE BREAKPOINTS
═══════════════════════════════ */

/* ── 1200px: scene starts shrinking ── */
@media (max-width: 1200px) {
  .px-scene { width: 420px; height: 340px; }
  .px-bl  { width:138px; height:151px; }
  .px-br  { width:128px; height:139px; }
  .px-center { width:300px; height:222px; top:48px; margin-left:-150px; }
  .px-cbody { height:calc(222px - 27px); }
  .px-fl, .px-fr { width:141px; height:124px; }
}

/* ── 1024px: collapse to single column ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-image { min-height: 360px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 32px; max-width: 480px; }
  .about-snippet-inner, .tech-inner, .about-main-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .mission-inner, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; }
  .counter-inner { grid-template-columns: repeat(2, 1fr); }
  .job-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  /* Scene centered below text */
  .px-scene { width: 460px; height: 370px; margin: 0 auto; }
  .px-bl  { width:150px; height:165px; }
  .px-br  { width:140px; height:151px; }
  .px-center { width:328px; height:243px; top:52px; margin-left:-164px; }
  .px-cbody { height:calc(243px - 27px); }
  .px-fl, .px-fr { width:155px; height:135px; }
}

/* ── 768px: mobile ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-links, .btn-quote { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero { padding-top: var(--nav-h); min-height: auto; }
  .hero-inner { padding: 40px 16px 32px; gap: 32px; }
  .hero-image { display: none !important; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: .95rem; }
  .hero-badge { font-size: .68rem; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-detail-card { flex-direction: column; }
  .svc-d-text ul { grid-template-columns: 1fr; }
  .testi-grid, .mission-inner, .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-steps { flex-direction: column; align-items: center; gap: 24px; }
  .proc-arrow { display: none; }
  .proc-step { max-width: 300px; width: 100%; }
  .counter-inner { grid-template-columns: 1fr 1fr; }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 28px 16px; }

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: unset; }
  .careers-form-wrap { padding: 24px 16px; }
  .contact-form-card { padding: 20px 16px; }
  .cf-radios { flex-direction: column; gap: 8px; }

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }

  /* Features bar */
  .features-bar-inner { flex-direction: column; gap: 12px; padding: 24px 16px; }
  .feat-div { display: none; }

  /* Jobs */
  .job-cards-grid { grid-template-columns: 1fr; }

  /* About */
  .about-img-main { width: 200px !important; height: 240px !important; margin: 0 auto; }
  .about-snippet-inner { gap: 40px; }
  .about-img-side { display: flex; justify-content: center; }

  /* Tech rings */
  .tech-rings { transform: scale(0.7); }
  .tech-visual { display: flex; justify-content: center; min-height: 220px; }

  /* Onboarding */
  .onboarding-layout { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .onboarding-sidebar { position: static !important; }
  .ob-hero-inner { flex-direction: column !important; gap: 24px; }
  .ob-hero-right { display: none; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .counter-inner { grid-template-columns: 1fr; }
  .counter-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .about-values-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 20px 16px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .inner-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; }

  .ob-cand-trust-card { flex-direction: column; text-align: center; }
  .ob-success-inner { padding: 2rem 1rem; }
}

/* ═══════════════════════════
   ONBOARDING — BRAND COLOR FIX
   Match to site's var(--brand) #F92F5A
═══════════════════════════ */
.ob-gate-card {
  border-radius: 18px !important;
  border: 1px solid rgba(249,47,90,0.15) !important;
}
.ob-gate-spinner {
  border-top-color: var(--brand) !important;
}
 
.ob-cand-verified { color: #16a34a !important; }
.ob-progress-fill { background: var(--brand) !important; }
.ob-nav-item.active { background: rgba(249,47,90,0.08) !important; }
.ob-nav-item.active .ob-nav-dot { background: var(--brand) !important; border-color: var(--brand) !important; }
.ob-nav-item.active .ob-nav-label { color: var(--brand) !important; }
.ob-btn-next { background: var(--brand) !important; }
.ob-btn-next:hover:not(:disabled) { background: var(--brand-dk) !important; }
.ob-btn-submit { background: var(--brand) !important; }
.doc-upload-zone:hover { border-color: var(--brand) !important; background: rgba(249,47,90,0.04) !important; }
.ob-ref-box strong { color: var(--brand) !important; }
.ssn-input-wrap input:focus { border-color: var(--brand) !important; box-shadow: 0 0 0 3px rgba(249,47,90,0.1) !important; }
.ob-success-icon-wrap { background: rgba(249,47,90,0.08) !important; border-radius: 50%; padding: 16px; display: inline-block; margin-bottom: 1.5rem; }
.ob-success-icon { background: var(--brand) !important; color: #fff !important; font-size: 2rem !important; width: 72px !important; height: 72px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 auto !important; }

/* ── Scroll reveal — GPU-optimized ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Page transition ── */
.page { display: none; }
.page.active {
  display: block;
  animation: pgFadeIn .3s ease both;
}
@keyframes pgFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid rgba(249,47,90,0.3);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-ball {
  width: 5px; height: 5px;
  background: var(--brand); border-radius: 50%;
  animation: scrollBall 2.2s ease-in-out infinite;
}
@keyframes scrollBall {
  0%,100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(15px); opacity: 0; }
}

/* ── Remove old broken cursor rules ── */
#cursor-dot, #cursor-ring-old, #hcur-dot, #hcur-ring, #lhcur-dot, #lhcur-ring { display: none !important; }
* { cursor: auto !important; }
a, button, [onclick], .job-card, .svc-card, .px-sw { cursor: pointer !important; }

/* ══════════════════════════════════════════════
   ONBOARDING PAGE
══════════════════════════════════════════════ */

.onboarding-layout { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; padding-top: 3rem; margin-bottom: 2rem; }
.onboarding-sidebar { position: sticky; top: 100px; }
.onboarding-sidebar-inner { background: var(--off); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 1.5rem; }
.onboarding-sidebar h3 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; letter-spacing: 0.02em; }
.ob-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.85rem; border-radius: 8px; cursor: pointer; transition: all 0.2s; margin-bottom: 0.25rem; }
.ob-nav-item:hover { background: var(--border2); }
.ob-nav-item.active { background: var(--brand-pale); }
.ob-nav-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: var(--text3); flex-shrink: 0; transition: all 0.2s; }
.ob-nav-item.active .ob-nav-dot { border-color: var(--brand); background: var(--brand); color: white; }
.ob-nav-item.done .ob-nav-dot { border-color: #16a34a; background: #16a34a; color: white; }
.ob-nav-item.done .ob-nav-dot::after { content: '✓'; }
.ob-nav-label { font-size: 0.82rem; font-weight: 500; color: var(--text2); }
.ob-nav-item.active .ob-nav-label { color: var(--brand); font-weight: 600; }
.ob-nav-item.done .ob-nav-label { color: #16a34a; }
.ob-progress-bar { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border2); }
.ob-progress-label { font-size: 0.72rem; color: var(--text3); margin-bottom: 0.5rem; display: flex; justify-content: space-between; }
.ob-progress-track { height: 4px; background: var(--border2); border-radius: 2px; }
.ob-progress-fill { height: 100%; background: var(--brand); border-radius: 2px; transition: width 0.4s ease; }

.ob-main { }
.ob-legal-banner { background: #EFF6FF; border: 1px solid #BFDBFE; border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2rem; }
.ob-legal-banner p { font-size: 0.82rem; color: #1e40af; line-height: 1.6; }
.ob-legal-banner strong { font-weight: 600; }

.doc-step { display: none; }
.doc-step.active { display: block; animation: fadeIn 0.35s ease; }
.doc-step-header { margin-bottom: 2rem; }
.doc-step-header h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.doc-step-header p { font-size: 0.9rem; color: var(--text2); font-weight: 300; line-height: 1.7; }

.doc-purpose-box { background: var(--off); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.1rem 1.25rem; margin-bottom: 1.5rem; }
.doc-purpose-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 0.4rem; }
.doc-purpose-box p { font-size: 0.83rem; color: var(--text2); line-height: 1.7; font-weight: 300; }

.doc-warning-box { background: #FFF5F5; border: 1px solid rgba(249,47,90,0.2); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.doc-warning-box p { font-size: 0.82rem; color: #c0182a; line-height: 1.6; }
.doc-warning-box strong { font-weight: 600; }

.doc-upload-zone {
  border: 2px dashed rgba(249,47,90,0.25); border-radius: var(--radius-lg); padding: 2.5rem;
  text-align: center; cursor: pointer; transition: all 0.25s; background: var(--off);
  margin-bottom: 1rem;
}
.doc-upload-zone:hover { border-color: var(--brand); background: var(--brand-pale); }
.doc-upload-zone.uploaded { border-color: #16a34a; border-style: solid; background: #f0fdf4; }
.doc-upload-zone .upload-big-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.doc-upload-zone h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.doc-upload-zone p { font-size: 0.82rem; color: var(--text2); font-weight: 300; }
.doc-upload-zone .uploaded-name { font-size: 0.9rem; color: #16a34a; font-weight: 600; margin-top: 0.5rem; }

.doc-consent-box { background: var(--off); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.doc-consent-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.doc-consent-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--brand); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.doc-consent-row label { font-size: 0.82rem; color: var(--text2); line-height: 1.6; cursor: pointer; }

.ssn-input-wrap { position: relative; margin-bottom: 1rem; }
.ssn-input-wrap input { width: 100%; padding: 0.85rem 1rem 0.85rem 3rem; border: 1.5px solid var(--border2); border-radius: 8px; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: border-color 0.2s; letter-spacing: 0.15em; }
.ssn-input-wrap input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,47,90,0.1); }
.ssn-input-wrap .ssn-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); font-size: 1rem; }

.ob-nav-btns { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border2); }
.ob-btn-prev { padding: 0.75rem 1.5rem; background: transparent; border: 1.5px solid var(--border2); border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text2); cursor: pointer; transition: all 0.2s; }
.ob-btn-prev:hover { border-color: var(--text2); color: var(--text); }
.ob-btn-next { padding: 0.75rem 2rem; background: var(--brand); border: none; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.875rem; font-weight: 600; color: white; cursor: pointer; transition: all 0.2s; }
.ob-btn-next:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,47,90,0.3); }
.ob-btn-next:disabled { background: var(--border2); color: var(--text3); transform: none; box-shadow: none; cursor: not-allowed; }

.ob-step-indicator { font-size: 0.8rem; color: var(--text3); }

.ob-success { text-align: center; padding: 3rem 0; }
.ob-success-icon { width: 72px; height: 72px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.ob-success h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.ob-success p { font-size: 1rem; color: var(--text2); font-weight: 300; line-height: 1.8; max-width: 480px; margin: 0 auto 1rem; }
.ob-ref-box { display: inline-block; background: var(--off); border: 1px solid var(--border2); border-radius: 8px; padding: 0.75rem 1.5rem; font-size: 0.85rem; color: var(--text2); margin-top: 1rem; }
.ob-ref-box strong { color: var(--brand); font-family: 'Clash Display', sans-serif; }
.ob-nav-req-dot {
  font-size: 11px;
  color: var(--brand);
  margin-left: 4px;
  font-weight: 700;
}
.ob-nav-item.done .ob-nav-req-dot {
  color: #16a34a;
  font-size: 12px;
}
.ob-nav-item.done .ob-nav-req-dot::before { content: ''; }

/* Upload status badge */
.upload-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.85rem; border-radius: 100px; width: fit-content; margin-top: 0.5rem; }
.upload-status.pending { background: var(--off); color: var(--text3); }
.upload-status.success { background: #DCFCE7; color: #16a34a; }

/* =========================
   ONBOARDING SYSTEM (FULL)
========================= */

/* ROOT FIX */
.ob-main {
  width: 100%;
}

.ob-main * {
  box-sizing: border-box;
}



/* =========================
   GATE WRAPPER
========================= */
.ob-gate {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* =========================
   GRID LAYOUT
========================= */
.ob-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}

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

/* =========================
   CARD BASE
========================= */
.ob-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  padding: 2rem;
}

/* =========================
   TRUST CARD
========================= */
.ob-cand-trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(249,47,90,0.05);
  border: 1px solid rgba(249,47,90,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

/* =========================
   SSN CARD
========================= */
.ob-ssn-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1.5rem;
}

/* =========================
   FORM
========================= */
.ob-form-group {
  margin-bottom: 1.2rem;
}

.ob-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.ob-form-group input,
.ob-form-group select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border2);
  font-size: 0.95rem;
}

/* =========================
   BUTTON
========================= */
.ob-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.ob-btn:hover {
  opacity: 0.9;
}

/* =========================
   PROGRESS BAR
========================= */
.ob-submit-progress {
  background: var(--off);
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--text2);
}

.ob-upload-bar {
  height: 6px;
  background: var(--border2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.ob-upload-fill {
  height: 100%;
  background: var(--brand);
  width: 40%;
}

/* =========================
   SIDEBAR
========================= */
.ob-sidebar-help {
  background: var(--off);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 5rem;
}

/* =========================
   SUCCESS PAGE
========================= */
.ob-success-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1rem;
}

.ob-success-inner h2 {
  color: var(--brand);
  margin-bottom: 1rem;
}

.ob-success-inner p {
  color: var(--text2);
}

/* =========================
   UTILITIES
========================= */
.ob-center {
  text-align: center;
}

.ob-mt {
  margin-top: 1.5rem;
}

.ob-mb {
  margin-bottom: 1.5rem;
}
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;

  width: 15px;   /* 🔥 size */
  height: 15px;  /* 🔥 size */

  border: 1px solid #F92F5A;
  border-radius: 50%;

  pointer-events: none;
  z-index: 9999;

  opacity: 0;
  transition: opacity 0.3s ease;

  will-change: transform;
}

/* visible when mouse moves */
#cursor-ring.visible {
  opacity: 1;
}

/* hover effect */
/* #cursor-ring.hov {
  transform: scale(0.5);
  border-width: 1px;
} */
/* ══════════════════════════════════════════════
   ONBOARDING — COMPLETE MISSING CSS
   All ob-* and doc-* classes needed by index.html
══════════════════════════════════════════════ */

/* ── Gate Wrapper ── */
.ob-gate-wrapper {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f7f8fc 0%, #fff0f3 100%);
}

.ob-gate-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
  border: 1px solid rgba(249,47,90,0.12);
}

.ob-gate-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.ob-gate-card p {
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ob-gate-loading .ob-gate-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(249,47,90,0.15);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: obSpin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes obSpin { to { transform: rotate(360deg); } }

.ob-gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}

.ob-gate-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.ob-gate-contact-link {
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.ob-gate-contact-link:hover { opacity: 0.75; }


.ob-sec-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.ob-sec-badge span:first-child { font-size: 1.1rem; }

/* Info form card */
.ob-info-form-card {
  background: var(--off);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.ob-readonly-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  border-radius: 4px;
  padding: 1px 6px;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

.ob-readonly-input {
  background: var(--bg3) !important;
  color: var(--text3) !important;
  cursor: not-allowed;
}

.ob-info-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-size: 0.83rem;
  color: #1e40af;
  line-height: 1.6;
}

.ob-info-notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* SSN */
.ob-ssn-card {
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.ob-ssn-note {
  font-size: 0.78rem;
  color: var(--text3);
  line-height: 1.5;
}

/* Final auth */
.ob-final-auth-card {
  background: var(--off);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.ob-final-auth-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Data summary */
.ob-data-summary {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.ob-data-summary h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ob-data-summary p {
  font-size: 0.8rem;
  color: #166534;
  line-height: 1.7;
}

/* Missing warning */
.ob-missing-warn {
  background: #FFF5F5;
  border: 1px solid rgba(249,47,90,0.25);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #c0182a;
  margin-bottom: 1rem;
}

/* Success screen */
.ob-success {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #fff 0%, #fff0f3 100%);
}

.ob-success-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.ob-success-icon-wrap {
  width: 100px;
  height: 100px;
  background: rgba(249,47,90,0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ob-success-icon {
  width: 72px;
  height: 72px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.ob-success-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.ob-success-inner > p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.ob-ref-box {
  display: inline-block;
  background: var(--off);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1rem 2rem;
  margin-top: 1rem;
  text-align: center;
}

.ob-ref-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  font-weight: 600;
  margin-bottom: 4px;
}

.ob-ref-box strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.ob-ref-box span {
  display: block;
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 4px;
}

.ob-success-steps {
  margin: 1.5rem auto;
  max-width: 440px;
  text-align: left;
}

.ob-success-steps > p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.ob-success-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}

.ob-success-step:last-child { border-bottom: none; }

.ob-step-check {
  width: 22px;
  height: 22px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ob-success-email {
  font-size: 0.85rem;
  color: var(--text2);
  margin-top: 1rem;
}

.ob-success-contact {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text3);
}

.ob-success-contact a {
  color: var(--brand);
  font-weight: 600;
}

/* Sidebar help */
.ob-sidebar-help {
  background: var(--off);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text2);
  margin-top: 1.25rem;
}

.ob-sidebar-help strong { color: var(--text); }
.ob-sidebar-help a { color: var(--brand); font-weight: 600; }

/* Submit progress */
.ob-submit-progress {
  background: var(--off);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 1rem;
}

.ob-upload-bar {
  height: 6px;
  background: var(--border2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.6rem;
}

.ob-upload-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #ff7a9a);
  width: 40%;
  animation: uploadPulse 1.4s ease-in-out infinite;
}

@keyframes uploadPulse {
  0%,100% { width: 30%; opacity: 0.8; }
  50% { width: 75%; opacity: 1; }
}

/* Submit button special */
.ob-btn-submit {
  padding: 0.85rem 2.5rem !important;
  font-size: 0.95rem !important;
  border-radius: 10px !important;
}

/* Responsive onboarding */
@media (max-width: 768px) {
  .ob-hero-inner { flex-direction: column; gap: 1.5rem; }
  .ob-hero-right { display: none; }
  .ob-hero-title { font-size: 1.9rem; }
  .ob-cand-trust-card { flex-direction: column; text-align: center; }
  .ob-success-inner { padding: 2rem 1rem; }
  .ob-success-inner h2 { font-size: 1.6rem; }
}
/* ══════════════════════════════════════════════
   AARA TECH v3.0 — Animation & Visual Fixes
   1. Hero Particles
   2. Image Reveal (entrance animations)
   3. Section Title Word-stagger
   4. Parallax improvements
   5. Missing variables fix (already in :root above)
══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. HERO PARTICLES
───────────────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: var(--brand);
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(40px) scale(0.3); opacity: 0; }
}

/* alternate particles with slight drift */
.hero-particle:nth-child(even) {
  background: rgba(249,47,90,0.5);
  animation-name: particleRiseDrift;
}
.hero-particle:nth-child(3n) {
  background: rgba(212,31,71,0.3);
  animation-name: particleRiseLeft;
}

@keyframes particleRiseDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translateY(-90vh) translateX(-50px); opacity: 0; }
}

@keyframes particleRiseLeft {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.5; }
  100% { transform: translateY(-80vh) rotate(360deg); opacity: 0; }
}

/* ─────────────────────────────────────────────
   2. IMAGE REVEAL — entrance animations
   Applies to all <img> tags and image containers
───────────────────────────────────────────── */

/* Base hidden state — applied by JS */
/* .img-reveal-pending {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1),
              transform 0.7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
} */

/* Visible state — applied by JS when in viewport */
/* .img-reveal-pending.img-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
} */

/* About home image — zoom-in from left */
/* .about-img-main.img-reveal-pending {
  transform: translateX(-30px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1),
              transform 0.8s cubic-bezier(.16,1,.3,1);
}
.about-img-main.img-visible {
  transform: translateX(0) scale(1);
} */

/* About page full-width image — slide from right */
/* .abt-gfx.img-reveal-pending {
  transform: translateX(30px);
  transition: opacity 0.85s cubic-bezier(.16,1,.3,1),
              transform 0.85s cubic-bezier(.16,1,.3,1);
} */
.abt-gfx.img-visible { transform: translateX(0); }

/* Regular img tags inside cards / sections */
img.img-reveal-pending {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* Hover shimmer effect on images after reveal */
.about-gfx-icon img, .abt-gfx img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img-main,
.abt-gfx img {
  transition: transform 0.4s cubic-bezier(.16, 1, 0.3, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.about-img-main:hover {
  transform: perspective(800px) rotateX(3deg) rotateY(-3deg) scale(1.02) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25) !important;
}

/* Pause float when being transitioned in */
.about-img-main.img-reveal-pending {
  animation: none;
}
.about-img-main.img-visible {
  animation: imgFloat 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* ─────────────────────────────────────────────
   3. SECTION TITLE WORD-STAGGER ANIMATION
───────────────────────────────────────────── */

/* Each word is wrapped in .title-word by JS */
.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(.16,1,.3,1),
              transform 0.5s cubic-bezier(.16,1,.3,1);
}

.title-word.word-in {
  opacity: 1;
  transform: translateY(0);
}

/* Brand spans inside titles keep their color */
.title-word .brand,
.title-word span.brand {
  color: var(--brand);
}

/* Hero title specific — faster, bigger bounce */
.hero-title .line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(22px);
  animation: lineRevealBounce 0.75s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-title .delay-1 { animation-delay: 0.1s; }
.hero-title .delay-2 { animation-delay: 0.2s; }

@keyframes lineRevealBounce {
  0%   { opacity:0; transform:translateY(22px); }
  60%  { transform:translateY(-3px); }
  100% { opacity:1; transform:translateY(0); }
}





/* ─────────────────────────────────────────────
   4. PARALLAX SCENE IMPROVEMENTS
───────────────────────────────────────────── */

/* Entry animation for the whole px-scene */
.px-scene {
  animation: sceneEntry 1.1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.4s;
}
@keyframes sceneEntry {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Each card enters with staggered slide */
.px-bl { animation: cardEntry 0.8s cubic-bezier(.16,1,.3,1) both; animation-delay: 0.55s; }
.px-br { animation: cardEntry 0.8s cubic-bezier(.16,1,.3,1) both; animation-delay: 0.70s; }
.px-center { animation: cardEntry 0.9s cubic-bezier(.16,1,.3,1) both; animation-delay: 0.45s; }
.px-fl { animation: cardEntry 0.8s cubic-bezier(.16,1,.3,1) both; animation-delay: 0.80s; }
.px-fr { animation: cardEntry 0.8s cubic-bezier(.16,1,.3,1) both; animation-delay: 0.65s; }

@keyframes cardEntry {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.94) rotateX(8deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

/* Blinking cursor in center card */
.px-ccur {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: var(--brand);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Progress bar fill animation in front cards */
.px-rpf {
  animation: fillBar 2s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 1.2s;
  transform-origin: left;
}

@keyframes fillBar {
  from { width: 0 !important; }
}
@keyframes floatSoft {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}
.px-card {
  animation: floatSoft 3s ease-in-out infinite;
}
.px-bl { animation-delay: 0s; }
.px-br { animation-delay: 1s; }
.px-center { animation-delay: 0.5s; }
.px-fl { animation-delay: 1.5s; }
.px-fr { animation-delay: 0.8s; }
.px-card {
  transition: transform 0.4s cubic-bezier(.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.px-card:hover {
  transform: perspective(800px) rotateX(4deg) rotateY(-4deg) scale(1.04) !important;
  box-shadow: 0 20px 45px rgba(249, 31, 71, 0.22) !important;
}

/* Pause animations when hero is out of view */
.hero-paused .hero-particles div,
.hero-paused .px-card,
.hero-paused .scroll-ball,
.hero-paused .shape,
.hero-paused .px-glow {
  animation-play-state: paused !important;
}

/* Inline SVGs styled to match FontAwesome sizes */
.svg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
}

/* ─────────────────────────────────────────────
   5. LOGO IMAGE FIX — ensure it shows properly
───────────────────────────────────────────── */
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  /* Fade in on load */
  animation: logoFadeIn 0.6s ease both;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* hero-element.png float */
.shape-4 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: shapeFloat 6s ease-in-out infinite;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg);   }
  33%       { transform: translateY(-12px) rotate(3deg);  }
  66%       { transform: translateY(-6px) rotate(-2deg); }
}

/* ─────────────────────────────────────────────
   6. INNER PAGE HERO IMAGE ENTRANCE
───────────────────────────────────────────── */

/* About page main image */
.abt-main-card {
  animation: abtImgEntry 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 0.2s;
}

@keyframes abtImgEntry {
  from { opacity:0; transform: translateX(40px) scale(0.96); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}

/* about page secondary text side */
.about-text-col.reveal.visible,
.abt-text-side.reveal.visible {
  transition-delay: 0.15s;
}


/* ─────────────────────────────────────────────
   7. SERVICE CARD HOVER — icon animation
───────────────────────────────────────────── */
.svc-card:hover .svc-icon,
.svc-card:hover .svc-icon i {
  animation: iconBounce 0.5s cubic-bezier(.16,1,.3,1);
}

@keyframes iconBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25) rotate(-5deg); }
  70%  { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}

/* ─────────────────────────────────────────────
   8. JOB CARD ENTRANCE — stagger via nth-child
───────────────────────────────────────────── */
.job-card.visible:nth-child(1) { transition-delay: 0s; }
.job-card.visible:nth-child(2) { transition-delay: 0.06s; }
.job-card.visible:nth-child(3) { transition-delay: 0.12s; }
.job-card.visible:nth-child(4) { transition-delay: 0.18s; }
.job-card.visible:nth-child(5) { transition-delay: 0.24s; }
.job-card.visible:nth-child(6) { transition-delay: 0.30s; }

/* ─────────────────────────────────────────────
   9. TESTIMONIAL / STATS CARD POP-IN
───────────────────────────────────────────── */
.testi-card.reveal {
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.16,1,.3,1);
}
.testi-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ─────────────────────────────────────────────
   10. ABOUT EXP BADGE — bounce in
───────────────────────────────────────────── */
.about-exp-badge {
  animation: badgePop 0.7s cubic-bezier(.16,1,.3,1) both;
  animation-delay: 1.1s;
}

@keyframes badgePop {
  0%   { opacity:0; transform: scale(0.5) translateY(10px); }
  70%  { transform: scale(1.08) translateY(-2px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}

/* ─────────────────────────────────────────────
   REDUCED MOTION — respect user preferences
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-particle,
  .img-reveal-pending,
  .title-word,
  .line-reveal,
  .about-img-main,
  .px-scene,
  .px-bl, .px-br, .px-center, .px-fl, .px-fr,
  .logo-img,
  .shape-4 img,
  .abt-main-card,
  .about-exp-badge {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Onboarding Hero ── */
/* ═══════════════════════════════════════════════════════
   ONBOARDING HERO — Complete Redesign
   Dark premium banner with glassmorphism cards
═══════════════════════════════════════════════════════ */
.ob-hero {
  position: relative;
  overflow: hidden;
  background: #080510;
  padding: 0;
  height: 88vh;
}
 
/* Multi-layer background */
.ob-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(249,47,90,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 15% 30%, rgba(249,47,90,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(100,20,40,0.18) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
 
/* Dot grid texture */
.ob-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
 
/* Animated glow orb */
.ob-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,47,90,0.09) 0%, transparent 65%);
  border-radius: 50%;
  top: -200px; right: -100px;
  animation: heroOrb 12s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes heroOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px,20px) scale(1.08); }
}
 
.ob-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
 
.ob-hero-left { min-width: 0; }
 
/* Badge */
.ob-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,47,90,0.12);
  border: 1px solid rgba(249,47,90,0.3);
  color: rgba(255,255,255,0.85);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.ob-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }
 
/* Title */
.ob-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ob-hero-title .ob-title-brand {
  background:  #e63d61;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
/* Subtitle */
.ob-hero-sub {
  color: rgba(255,255,255,0.52);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}
 
/* Candidate trust card */
.ob-cand-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  max-width: 420px;
  backdrop-filter: blur(12px);
  transition: background 0.2s;
}
.ob-cand-trust-card:hover { background: rgba(255,255,255,0.09); }
 
.ob-cand-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(249,47,90,0.2);
}
 
.ob-cand-details { flex: 1; min-width: 0; }
.ob-cand-label {
  font-size: 0.64rem; color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 3px;
}
.ob-cand-name  { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.ob-cand-email {
  font-size: 0.77rem; color: rgba(255,255,255,0.48);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ob-cand-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700;
  color: #4ade80;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 4px 10px; border-radius: 50px;
  white-space: nowrap; flex-shrink: 0;
}
 
/* RIGHT: Security badges column */
.ob-hero-right { flex-shrink: 0; }
 
.ob-security-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.ob-sec-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 240px;
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}
.ob-sec-badge:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(249,47,90,0.2);
}
.ob-sec-badge span:first-child { font-size: 1.15rem; flex-shrink: 0; }
.ob-sec-badge span:last-child  {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
}
 
/* Bottom divider line */
.ob-hero::after,
.ob-hero-bottom-line {
  content: '';
  display: block;
}
.ob-hero-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(249,47,90,0.3) 30%,
    rgba(249,47,90,0.5) 50%,
    rgba(249,47,90,0.3) 70%,
    transparent 100%
  );
}
 
/* Responsive */
@media (max-width: 900px) {
  .ob-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 40px;
  }
  .ob-hero-right { display: none; }
}
@media (max-width: 600px) {
  .ob-hero-title { font-size: 2rem; }
  .ob-cand-trust-card { max-width: 100%; }
  .ob-hero-inner { padding: 36px 16px 32px; }
}
/* ═══════════════════════════════════════
   FINAL ONBOARDING HERO RESPONSIVE FIX
═══════════════════════════════════════ */

@media (max-width: 991px){

  .ob-hero{
    height: auto !important;
    min-height: auto !important;

    padding:
      70px
      0
      40px !important;
  }

  .ob-hero-inner{
    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    gap: 28px !important;

    padding:
      0
      24px !important;
  }

  .ob-hero-left,
  .ob-hero-right{
    width: 100% !important;
    max-width: 100% !important;
  }

  .ob-hero-badge{
    margin: 0 auto 18px !important;
  }

  .ob-hero-title{
    font-size: 3rem !important;
    line-height: 1.08 !important;

    margin-bottom: 18px !important;
  }

  .ob-hero-sub{
    width: 100%;
    max-width: 650px;

    margin:
      0 auto
      28px !important;

    text-align: center !important;

    line-height: 1.8;
  }

  .ob-cand-trust-card{
    width: 100%;
    max-width: 540px;

    margin: 0 auto !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    padding:
      28px
      20px !important;
  }

  .ob-cand-details{
    text-align: center !important;
  }

  .ob-security-badges{
    width: 100%;
    max-width: 540px;

    margin: 0 auto !important;

    display: flex;
    flex-direction: column;

    gap: 14px;
  }

  .ob-sec-badge{
    width: 100%;
    justify-content: center !important;
  }
}


/* MOBILE */
@media (max-width: 600px){

  .ob-hero{
    padding-top: 42px !important;
  }

  .ob-hero-inner{
    padding:
      0
      16px !important;
  }

  .ob-hero-title{
    font-size: 2.35rem !important;
  }

  .ob-hero-sub{
    font-size: .95rem !important;
    line-height: 1.75 !important;
  }

  .ob-cand-trust-card{
    padding:
      24px
      16px !important;
  }

  .ob-security-badges{
    gap: 12px !important;
  }
}
/* ══════════════════════════════════════════════
   AARA TECH — About Page New Sections CSS
   Add to the END of styles.css
   Sections: What We Do · Why AARATECH · Industries
             Our Process · Engagement Models · CTA
══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   SHARED ABOUT UTILITIES
───────────────────────────────────────────── */
.section-subtitle {
  color: var(--text2);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head .section-title {
  margin-bottom: 0.75rem;
}

/* ─────────────────────────────────────────────
   1. WHAT WE DO
───────────────────────────────────────────── */
.ab-what {
  background: var(--bg);
}

.ab-what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ab-what-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.ab-what-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ab-what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249,47,90,0.12);
  border-color: rgba(249,47,90,0.2);
}

.ab-what-card:hover::before {
  transform: scaleX(1);
}

.ab-what-icon {
  width: 52px; height: 52px;
  background: var(--brand-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--brand);
  margin-bottom: 1.25rem;
  transition: background 0.3s, transform 0.3s;
}

.ab-what-card:hover .ab-what-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.ab-what-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.ab-what-card > p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ab-what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ab-what-list li {
  font-size: 0.82rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ab-what-list li i {
  color: var(--brand);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   2. WHY AARATECH
───────────────────────────────────────────── */
.ab-why {
  background: linear-gradient(135deg, #0f1117 0%, #1a0008 50%, #0f1117 100%);
  position: relative;
  overflow: hidden;
}

.ab-why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(249,47,90,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(249,47,90,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.ab-why-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.ab-why-left .section-title {
  margin-bottom: 1rem;
}

.ab-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.3s ease;
}

.ab-why-item:last-child {
  border-bottom: none;
}

.ab-why-item:hover {
  padding-left: 0.5rem;
}

.ab-why-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand);
  opacity: 0.7;
  line-height: 1.6;
  flex-shrink: 0;
}

.ab-why-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.ab-why-body p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   3. INDUSTRIES WE SERVE
───────────────────────────────────────────── */
.ab-industries {
  background: var(--bg2);
}

.ab-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ab-ind-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: default;
}

.ab-ind-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(249,47,90,0.10);
  border-color: rgba(249,47,90,0.25);
}

.ab-ind-icon {
  width: 48px; height: 48px;
  background: var(--brand-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--brand);
  margin-bottom: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}

.ab-ind-card:hover .ab-ind-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(6deg) scale(1.1);
}

.ab-ind-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ab-ind-card > p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ab-ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ab-ind-tags span {
  display: inline-block;
  background: var(--brand-lt);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(249,47,90,0.15);
}

/* ─────────────────────────────────────────────
   4. OUR PROCESS
───────────────────────────────────────────── */
.ab-process {
  background: var(--bg);
}

.ab-proc-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: start;
}

.ab-proc-line {
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(249,47,90,0.15) 100%);
  z-index: 0;
}

.ab-proc-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ab-proc-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  opacity: 0.8;
}

.ab-proc-dot {
  width: 14px; height: 14px;
  background: var(--brand);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand), 0 0 16px rgba(249,47,90,0.4);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ab-proc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.ab-proc-step:hover .ab-proc-card {
  border-color: rgba(249,47,90,0.25);
  box-shadow: 0 12px 30px rgba(249,47,90,0.10);
  transform: translateY(-4px);
}

.ab-proc-icon {
  width: 40px; height: 40px;
  background: var(--brand-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--brand);
  margin: 0 auto 0.85rem;
  transition: background 0.3s, transform 0.3s;
}

.ab-proc-step:hover .ab-proc-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1);
}

.ab-proc-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ab-proc-card > p {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.ab-proc-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-lt);
  padding: 3px 9px;
  border-radius: 50px;
}

/* ─────────────────────────────────────────────
   5. ENGAGEMENT MODELS
───────────────────────────────────────────── */
.ab-engage {
  background: var(--bg2);
}

.ab-engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.ab-engage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.ab-engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(249,47,90,0.10);
  border-color: rgba(249,47,90,0.2);
}

.ab-engage-featured {
  background: var(--text);
  border-color: var(--brand);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(249,47,90,0.20);
}

.ab-engage-featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 70px rgba(249,47,90,0.28);
}

.ab-engage-badge {
  display: inline-block;
  background: var(--brand-lt);
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(249,47,90,0.2);
}

.ab-engage-badge-featured {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.ab-engage-icon {
  width: 54px; height: 54px;
  background: var(--brand-lt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.ab-engage-featured .ab-engage-icon {
  background: rgba(249,47,90,0.15);
}

.ab-engage-card:hover .ab-engage-icon {
  transform: scale(1.08) rotate(-4deg);
}

.ab-engage-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.ab-engage-featured h3 {
  color: #fff;
}

.ab-engage-desc {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ab-engage-featured .ab-engage-desc {
  color: rgba(255,255,255,0.6);
}

.ab-engage-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.ab-engage-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text2);
}

.ab-engage-featured .ab-engage-features li {
  color: rgba(255,255,255,0.65);
}

.ab-engage-features li i {
  color: var(--brand);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.ab-engage-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  cursor: pointer;
  transition: gap 0.2s;
  text-decoration: none;
}

.ab-engage-cta:hover { gap: 10px; }

.ab-engage-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.ab-engage-cta-primary:hover {
  background: var(--brand-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,47,90,0.3);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — Tablet & Mobile
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ab-what-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-proc-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
  .ab-proc-line { display: none; }
  .ab-why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .ab-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-engage-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .ab-engage-featured {
    transform: none;
    order: -1;
  }
  .ab-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .ab-what-grid {
    grid-template-columns: 1fr;
  }
  .ab-ind-grid {
    grid-template-columns: 1fr;
  }
  .ab-proc-track {
    grid-template-columns: 1fr;
  }
  .ab-proc-dot { display: none; }
  .ab-why-inner { gap: 2rem; }
  .ab-cta-title { font-size: 1.8rem; }
}

/* ─── Talent Strategy Section (Interactive Overhaul) ─── */
.talent-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(249, 47, 90, 0.015) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 100px 0;
}

/* Tabs Wrapper & Navigation */
.talent-tabs-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.talent-tabs-container {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.talent-tab {
  flex: 1;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 240px;
}

.talent-tab:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(249, 47, 90, 0.15);
  box-shadow: 0 10px 25px rgba(249, 47, 90, 0.05);
}

.talent-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(249, 47, 90, 0.25);
  transform: translateY(-4px);
}

.tab-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.talent-tab.active .tab-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.tab-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tab-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
  opacity: 0.8;
  font-family: 'Syne', sans-serif;
  transition: color 0.3s ease;
}

.talent-tab.active .tab-num {
  color: rgba(255, 255, 255, 0.8);
}

.tab-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  font-family: 'Syne', sans-serif;
  transition: color 0.3s ease;
}

.talent-tab.active .tab-title {
  color: #fff;
}

/* Mobile Arrows (Hidden on desktop) */
.tabs-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  align-items: flex-content;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text);
  transition: all 0.3s ease;
}

.tabs-arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.tabs-arrow-left {
  left: -20px;
}

.tabs-arrow-right {
  right: -20px;
}

/* Panels */
.talent-panels-container {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  position: relative;
  min-height: 520px;
}

.talent-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.talent-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.panel-inner {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 60px;
  background: #FEF1F4;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(249, 47, 90, 0.08);
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: 0 10px 40px rgba(249, 47, 90, 0.04);
}

/* Panel Left Content */
.pillar-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--brand);
  font-family: 'Syne', sans-serif;
  margin-bottom: 15px;
}

.panel-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
  font-family: 'Syne', sans-serif;
}

.panel-heading .highlight {
  color: var(--brand);
}

.panel-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 35px;
}

.panel-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.feature-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(249, 47, 90, 0.04);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Syne', sans-serif;
}

.feature-text p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
}

/* Panel Right Content (Circular Orbit Graphics) */
.panel-right-graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 420px;
}

.orbit-visualization {
  position: relative;
  width: 320px;
  height: 320px;
}

.center-image-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(249, 47, 90, 0.08);
  padding: 8px;
  background: #fff;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.center-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.path-outer {
  width: 290px;
  height: 290px;
  border: 1.5px dashed rgba(0, 0, 0, 0.05);
  animation: rotateOrbit 120s linear infinite;
}

@keyframes rotateOrbit {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Outer Orbit Profiles */
.orbit-profile-wrap {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbit-profile-img {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.orbit-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.orbit-profile-img:hover {
  transform: scale(1.15);
}

.status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.status-dot.green { background: #22c55e; }
.status-dot.pink { background: var(--brand); }

/* Percent badges */
.orbit-badge {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 6px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  min-width: 80px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.badge-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-value {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
}

/* Positions around the circle */
.profile-pos-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatProfile1 5s ease-in-out infinite;
}
.profile-pos-1 .orbit-badge {
  bottom: 64px;
}

.profile-pos-2 {
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  animation: floatProfile2 6s ease-in-out infinite;
}
.profile-pos-2 .orbit-badge {
  bottom: 64px;
}

.profile-pos-3 {
  bottom: -15px;
  right: 25px;
  animation: floatProfile3 5.5s ease-in-out infinite;
}
.profile-pos-3 .orbit-badge {
  bottom: 64px;
}

.profile-pos-4 {
  top: 55%;
  left: -25px;
  transform: translateY(-50%);
  animation: floatProfile4 6.5s ease-in-out infinite;
}
.profile-pos-4 .orbit-badge {
  bottom: 64px;
}

/* Orbit Floating Animations */
@keyframes floatProfile1 {
  0% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-6px); }
  100% { transform: translateX(-50%) translateY(0px); }
}
@keyframes floatProfile2 {
  0% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-50%) translateX(6px); }
  100% { transform: translateY(-50%) translateX(0px); }
}
@keyframes floatProfile3 {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(6px) translateX(4px); }
  100% { transform: translateY(0px) translateX(0px); }
}
@keyframes floatProfile4 {
  0% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(-50%) translateX(-6px); }
  100% { transform: translateY(-50%) translateX(0px); }
}

/* Crimson Stats Ribbon */
.talent-stats-ribbon {
  position: relative;
  background: linear-gradient(135deg, #c5163f 0%, #a21031 50%, #7e0822 100%);
  border-radius: 20px;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(249, 47, 90, 0.15);
}

.stats-wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.stats-ribbon-left {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 320px;
}

.stats-ribbon-left h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
  line-height: 1.3;
}

.stats-ribbon-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stats-ribbon-grid {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex: 2;
}

.stat-ribbon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .panel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .panel-right-graphics {
    min-height: 360px;
  }
  .talent-stats-ribbon {
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
    padding: 40px;
  }
  .stats-ribbon-left {
    max-width: 100%;
    text-align: center;
  }
  .stats-ribbon-grid {
    flex-wrap: wrap;
    gap: 25px;
  }
  .stat-ribbon-item {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 1024px) {
  .talent-tabs-wrapper {
    padding: 0 40px;
  }
  .talent-tabs-container {
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 15px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .talent-tabs-container::-webkit-scrollbar {
    display: none;
  }
  .talent-tab {
    min-width: 250px;
    flex-shrink: 0;
  }
  .tabs-arrow {
    display: flex;
  }
}

@media (max-width: 768px) {
  .talent-section {
    padding: 70px 0;
  }
  .panel-heading {
    font-size: 1.8rem;
  }
  .panel-desc {
    margin-bottom: 25px;
  }
  .orbit-visualization {
    transform: scale(0.9);
  }
  .stats-ribbon-grid {
    gap: 20px;
  }
  .stat-ribbon-item {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .talent-tabs-wrapper {
    padding: 0 30px;
  }
  .tabs-arrow-left { left: -10px; }
  .tabs-arrow-right { right: -10px; }
  .talent-tab {
    padding: 15px 20px;
    gap: 15px;
    min-width: 220px;
  }
  .tab-icon-wrap {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .panel-inner {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .orbit-visualization {
    transform: scale(0.8);
  }
  .panel-heading {
    font-size: 1.5rem;
  }
}

/* ════════════════════════════════════════════
   OUR PROCESS PAGE STYLES
   ════════════════════════════════════════════ */
.process-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 0;
}

.process-hero-content {
  display: flex;
  flex-direction: column;
}

.process-hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.process-hero-media {
  display: flex;
  justify-content: center;
  position: relative;
}

.proc-media-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 10px;
  background: #fff;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.proc-media-card:hover {
  box-shadow: 0 30px 60px rgba(249, 47, 90, 0.12);
}

.proc-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* Overlays on process hero image */
.proc-overlay-wrap {
  position: absolute;
  z-index: 3;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.proc-overlay-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(249, 47, 90, 0.06);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.proc-overlay-pill:hover {
  transform: scale(1.08) translateY(-3px);
  background: #fff;
  border-color: rgba(249, 47, 90, 0.15);
  box-shadow: 0 15px 35px rgba(249, 47, 90, 0.15);
}

.overlay-top-left {
  top: -20px;
  left: -20px;
  animation: floatOverlay1 4.5s ease-in-out infinite;
}

.overlay-bottom-right {
  bottom: 20px;
  right: -25px;
  animation: floatOverlay2 5s ease-in-out infinite;
}

.overlay-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.placements-icon {
  background: #fdf2f4;
  color: var(--brand);
}

.overlay-text-wrap {
  display: flex;
  flex-direction: column;
}

.overlay-label {
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 700;
  text-transform: uppercase;
}

.overlay-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  font-family: 'Syne', sans-serif;
}

@keyframes floatOverlay1 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes floatOverlay2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0px); }
}

/* Proven Process Grid styling */
.proven-process-section {
  background: #fdf2f4; /* Subtle soft brand pale tint */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proven-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-grid-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
}

.process-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 47, 90, 0.05);
  border-color: rgba(249, 47, 90, 0.15);
}

/* On desktop, center the last 2 items if they are on a new row */
@media (min-width: 992px) {
  .proven-process-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .process-grid-item:nth-child(1),
  .process-grid-item:nth-child(2),
  .process-grid-item:nth-child(3) {
    grid-column: span 2;
  }
  .process-grid-item:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .process-grid-item:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.step-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(249, 47, 90, 0.08);
  font-family: 'Syne', sans-serif;
  transition: color 0.3s ease;
}

.process-grid-item:hover .step-number {
  color: rgba(249, 47, 90, 0.2);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.process-grid-item:hover .step-icon {
  background: var(--brand);
  color: #fff;
}

.process-grid-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-grid-item p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
}

/* Why Our Approach Works Grid styling */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.approach-card {
  background: #FEF1F4; /* Light pink background */
  border: 1px solid rgba(249, 47, 90, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 47, 90, 0.01);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.approach-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(249, 47, 90, 0.15);
  box-shadow: 0 10px 25px rgba(249, 47, 90, 0.06);
}

.approach-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.approach-card:hover .approach-icon-wrap {
  background: var(--brand);
  color: #fff;
}

.approach-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 10px;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.5;
}

/* Vertical Timeline: The Talent Journey */
.talent-journey-vertical {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: rgba(249, 47, 90, 0.05);
  border-radius: 2px;
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--brand) 0%, #c5163f 100%);
  transition: height 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 10px rgba(249, 47, 90, 0.4);
  border-radius: 2px;
}

/* Glow dot at the bottom of the progress line */
.timeline-glow-dot {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand), 0 0 20px var(--brand);
  z-index: 6;
}

.timeline-step {
  position: relative;
  width: 50%;
  margin-bottom: 50px;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-step.step-left {
  left: 0;
  padding-right: 60px;
  text-align: right;
  transform: translateX(-40px);
}

.timeline-step.step-right {
  left: 50%;
  padding-left: 60px;
  text-align: left;
  transform: translateX(40px);
}

.timeline-step.active {
  opacity: 1;
  transform: translateX(0);
}

.timeline-node {
  position: absolute;
  top: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(249, 47, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 750;
  font-size: 0.95rem;
  color: var(--text3);
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-step.step-left .timeline-node {
  right: -19px;
}

.timeline-step.step-right .timeline-node {
  left: -19px;
}

/* Pulsing node ripple rings */
@keyframes nodeRipple {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.timeline-node::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  opacity: 0;
  pointer-events: none;
}

.timeline-step.active .timeline-node {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(249, 47, 90, 0.4);
}

.timeline-step.active .timeline-node::before {
  animation: nodeRipple 2s infinite ease-out;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}

/* Watermarks for step numbers */
.timeline-content::before {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: 8.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(249, 47, 90, 0.025);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
  pointer-events: none;
}

.timeline-step.step-left .timeline-content::before {
  left: 20px;
  bottom: -15px;
}

.timeline-step.step-right .timeline-content::before {
  right: 20px;
  bottom: -15px;
}

.timeline-step#t-step-1 .timeline-content::before { content: "01"; }
.timeline-step#t-step-2 .timeline-content::before { content: "02"; }
.timeline-step#t-step-3 .timeline-content::before { content: "03"; }
.timeline-step#t-step-4 .timeline-content::before { content: "04"; }
.timeline-step#t-step-5 .timeline-content::before { content: "05"; }
.timeline-step#t-step-6 .timeline-content::before { content: "06"; }

.timeline-step.active .timeline-content::before {
  color: rgba(249, 47, 90, 0.055);
  transform: translateY(-8px);
}

/* Slide-in card edge accent line */
.timeline-content::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-dk));
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scaleY(0);
  box-shadow: 0 0 10px rgba(249, 47, 90, 0.3);
  z-index: 2;
}

.timeline-step.step-left .timeline-content::after {
  right: 0;
  transform-origin: bottom;
}

.timeline-step.step-right .timeline-content::after {
  left: 0;
  transform-origin: top;
}

.timeline-step.active .timeline-content::after {
  transform: scaleY(1);
}

.timeline-step.active .timeline-content {
  border-color: rgba(249, 47, 90, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 243, 0.95) 100%);
  box-shadow: 0 20px 40px -10px rgba(249, 47, 90, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.03);
  transform: translateY(-5px);
}

.timeline-step.active .timeline-content:hover {
  transform: translateY(-9px) scale(1.015);
  box-shadow: 0 30px 60px -15px rgba(249, 47, 90, 0.22), 0 15px 30px -10px rgba(0, 0, 0, 0.04);
  border-color: rgba(249, 47, 90, 0.32);
}

.timeline-stage-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--brand);
  background: rgba(249, 47, 90, 0.05);
  border: 1px solid rgba(249, 47, 90, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.timeline-step.active .timeline-stage-tag {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 10px rgba(249, 47, 90, 0.2);
}

.step-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-step.step-left .step-icon-circle {
  float: right;
  margin-left: 15px;
}

.timeline-step.step-right .step-icon-circle {
  float: left;
  margin-right: 15px;
}

.timeline-step.active .step-icon-circle {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dk) 100%);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 15px rgba(249, 47, 90, 0.25);
}

/* Pulsing outer ring for active icons */
.timeline-step.active .step-icon-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(249, 47, 90, 0.3);
  animation: rotateIconRing 8s linear infinite;
}

@keyframes rotateIconRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.timeline-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  clear: both;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.timeline-step.active .timeline-content h3 {
  color: var(--brand-dk);
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.timeline-step.active .timeline-content p {
  color: #2b3040;
}

/* Expertise Domain Cards */
.domains-section {
  background: #fdf2f4;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.domains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.domain-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 47, 90, 0.1);
}

.domain-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-lt);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.domain-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

/* Process Page CTA Banner */
.process-cta-banner {
  background: linear-gradient(135deg, #c5163f 0%, #a21031 50%, #7e0822 100%);
  border-radius: 24px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(249, 47, 90, 0.15);
  color: #fff;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.cta-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cta-text-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-text-wrap p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  gap: 15px;
}

/* Responsive Rules for Process Page */
@media (max-width: 1200px) {
  .process-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
    text-align: center;
  }
  .process-hero-content {
    align-items: center;
  }
  .process-hero-actions {
    justify-content: center;
  }
  .process-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .cta-banner-content {
    flex-direction: column;
    gap: 15px;
  }
  .cta-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .proven-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Vertical Timeline Mobile Layout */
  .timeline-line {
    left: 20px;
    transform: none;
  }
  .timeline-step {
    width: 100%;
    left: 0 !important;
    padding-left: 55px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .timeline-node {
    left: 2px !important;
    right: auto !important;
  }
  .step-icon-circle {
    float: left !important;
    margin-right: 15px !important;
    margin-left: 0 !important;
  }
  .timeline-step .timeline-content::before {
    right: 20px !important;
    left: auto !important;
  }
}

@media (max-width: 600px) {
  .proven-process-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .domains-grid {
    grid-template-columns: 1fr;
  }
  .process-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .process-hero-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}