:root {
  --bg: #07105f;
  --bg-deep: #06094b;
  --violet: #6a29db;
  --cyan: #28e2df;
  --text: #f7f8ff;
  --muted: #cbd0ef;
  --glass: rgba(255, 255, 255, 0.82);
  --nav-text: #4c536d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg-deep);
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 20%, rgba(129, 48, 255, 0.38), transparent 34%),
    radial-gradient(circle at 60% 100%, rgba(36, 65, 237, 0.33), transparent 45%),
    linear-gradient(115deg, #081268 0%, #16116d 48%, #5a20ca 100%);
}

.background-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.background-glow {
  position: absolute;
  z-index: -3;
  border-radius: 999px;
  filter: blur(24px);
  animation: drift 8s ease-in-out infinite alternate;
}

.glow-one {
  width: 340px;
  height: 340px;
  right: -100px;
  top: 90px;
  background: rgba(140, 63, 255, 0.28);
}

.glow-two {
  width: 260px;
  height: 260px;
  left: 44%;
  bottom: -140px;
  background: rgba(35, 227, 222, 0.12);
  animation-delay: -2s;
}

.floating-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  box-shadow: 0 0 14px rgba(255,255,255,.75);
  animation: floatParticle 6s ease-in-out infinite;
}

.floating-particles span:nth-child(1){left:12%;top:18%;animation-delay:-1s}
.floating-particles span:nth-child(2){left:33%;top:29%;animation-delay:-2.4s}
.floating-particles span:nth-child(3){left:48%;top:16%;animation-delay:-4s}
.floating-particles span:nth-child(4){left:62%;top:27%;animation-delay:-.7s}
.floating-particles span:nth-child(5){left:81%;top:23%;animation-delay:-3.4s}
.floating-particles span:nth-child(6){left:21%;top:72%;animation-delay:-5s}
.floating-particles span:nth-child(7){left:38%;top:90%;animation-delay:-2s}
.floating-particles span:nth-child(8){left:58%;top:74%;animation-delay:-4.7s}
.floating-particles span:nth-child(9){left:78%;top:80%;animation-delay:-1.8s}
.floating-particles span:nth-child(10){left:91%;top:52%;animation-delay:-3s}

.site-header {
  position: relative;
  z-index: 50;
  padding: 8px 15px 0;
}

.header-inner {
  width: min(1440px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 7px 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 19px;
  background: var(--glass);
  box-shadow: 0 10px 35px rgba(12, 7, 89, 0.15);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 10px;
  background: rgba(255,255,255,.65);
}
.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 4px 10px;
    border-radius: 8px;
    background: transparent;
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease;
}

.brand img {
    display: block;
    width: 125px;
    max-height: 38px;
    object-fit: contain;
}

.site-header.is-scrolled .brand {
    padding: 5px 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(7, 10, 55, 0.2);
}
.brand-mark {
  color: #172451;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 500;
  letter-spacing: -1px;
  white-space: nowrap;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.primary-nav a {
  position: relative;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 700;
  transition: .3s ease;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--violet);
  transition: width .3s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #232a63;
  background: rgba(255,255,255,.75);
  box-shadow: 0 7px 18px rgba(22, 21, 102, .1);
}

.primary-nav a:hover::after {
  width: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #39416f;
  background: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.social-links a:hover {
  transform: translateY(-3px) rotate(5deg);
  color: white;
  background: #392c98;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #262d64;
  transition: .3s ease;
}
.hero {
  /* width: 100%;
  max-width: 1450px;
  min-height: calc(100vh - 74px); */
  margin: 0 auto;
  padding: clamp(55px, 7vw, 90px) 11px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 20px;
}

.hero-content {
    max-width: 720px;
    margin: auto;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(40,226,223,.8);
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  color: var(--text);
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 700;
}

.hero h1 span {
  color: #92fff7;
}

.hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  font-weight: 600;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 15px 22px;
  border-radius: 18px;
  color: #20275f;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.primary-button span {
  transition: transform .25s ease;
}

.primary-button:hover span {
  transform: translateX(4px);
}

.hero-progress {
  width: 120px;
  height: 4px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.hero-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), rgba(40,226,223,.08));
  animation: progressGlow 2.8s ease-in-out infinite alternate;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.orbit-system {
  position: absolute;
  width: min(500px, 90vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  animation: orbitBreath 3.8s ease-in-out infinite alternate;
}

.orbit-one { width: 46%; height: 46%; }
.orbit-two { width: 62%; height: 62%; animation-delay: -.7s; }
.orbit-three { width: 78%; height: 78%; animation-delay: -1.4s; }
.orbit-four { width: 94%; height: 94%; animation-delay: -2.1s; }

.orbit-system::before,
.orbit-system::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-system::before {
  inset: 18%;
  border: 1px dashed rgba(40,226,223,.26);
  animation: rotate 18s linear infinite;
}

.orbit-system::after {
  inset: 31%;
  background: radial-gradient(circle, rgba(40,226,223,.16), transparent 65%);
  filter: blur(4px);
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.dot-one { top: 16%; left: 48%; animation: floatParticle 4s ease-in-out infinite; }
.dot-two { right: 14%; top: 52%; animation: floatParticle 5s ease-in-out infinite -1.5s; }
.dot-three { left: 19%; bottom: 21%; animation: floatParticle 4.6s ease-in-out infinite -3s; }

.video-trigger {
  position: relative;
  z-index: 3;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 12px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 15px rgba(40,226,223,.09), 0 20px 60px rgba(0,0,0,.24);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 18px rgba(40,226,223,.11), 0 24px 70px rgba(0,0,0,.34);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #1e2b78;
}

.pulse {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(40,226,223,.65);
  border-radius: 50%;
  animation: pulse 2.3s ease-out infinite;
}

.pulse-two {
  animation-delay: 1.15s;
}

.demo-section {
  min-height: 80vh;
  padding: 100px 20px;
  text-align: center;
  background: #f6f7ff;
  color: #11174d;
}

.demo-section h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 38, .84);
  backdrop-filter: blur(11px);
}

.video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  background: #090d3a;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-topbar {
  min-height: 58px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.modal-topbar h2 {
  margin: 0;
  font-size: 16px;
}

.modal-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.1);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(255,255,255,.18);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: black;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.video-modal-content {
  position: relative;
  z-index: 2;
  width: min(900px, 95vw);
  background: #000;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reveal-up {
  animation: revealUp .9s cubic-bezier(.2,.8,.2,1) both;
}

.reveal-scale {
  animation: revealScale 1s .18s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes revealScale {
  from { opacity: 0; transform: scale(.86); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(.75); opacity: .85; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes orbitBreath {
  from { opacity: .35; transform: scale(.97); }
  to { opacity: .8; transform: scale(1.03); }
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(-18px); opacity: 1; }
}

@keyframes progressGlow {
  from { transform: translateX(-8px); filter: brightness(.8); }
  to { transform: translateX(10px); filter: brightness(1.35); }
}

@keyframes drift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-25px, 22px, 0); }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    left: 15px;
    right: 15px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .3s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    text-align: center;
  }

  .social-links {
    display: none;
  }

  .menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 76px);
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 72px);
    letter-spacing: -2.5px;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-progress {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .orbit-system {
    width: min(390px, 92vw);
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 8px;
  }

  .header-inner {
    min-height: 54px;
    padding: 5px 8px;
    border-radius: 15px;
  }

  .brand {
    height: 38px;
  }

  .brand-mark {
    font-size: 18px;
  }

  .primary-nav {
    left: 8px;
    right: 8px;
  }

  .hero {
    padding-inline: 16px;
    padding-top: 55px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
    line-height: 1.02;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-visual {
    min-height: 320px;
  }

  .video-trigger {
    width: 80px;
    height: 80px;
    border-width: 10px;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-dialog {
    border-radius: 15px;
  }

  .modal-topbar h2 {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ===== Improved reload entrance animation ===== */
.page-loading .load-header,
.page-loading .load-item,
.page-loading .load-visual {
  opacity: 0;
}

.page-loading .load-header {
  transform: translateY(-42px) scale(.98);
}

.page-loading .load-item {
  transform: translateY(38px);
}

.page-loading .load-visual {
  transform: translateX(70px) scale(.82) rotate(5deg);
}

.page-loaded .load-header {
  animation: headerEntrance .85s .08s cubic-bezier(.16,1,.3,1) both;
}

.page-loaded .load-item {
  animation: contentEntrance .85s var(--delay, .3s) cubic-bezier(.16,1,.3,1) both;
}

.page-loaded .load-visual {
  animation: visualEntrance 1.15s .48s cubic-bezier(.16,1,.3,1) both;
}

@keyframes headerEntrance {
  from { opacity: 0; transform: translateY(-42px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes contentEntrance {
  from { opacity: 0; transform: translateY(38px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes visualEntrance {
  0% { opacity: 0; transform: translateX(70px) scale(.82) rotate(5deg); filter: blur(10px); }
  70% { opacity: 1; transform: translateX(-8px) scale(1.02) rotate(-1deg); filter: blur(0); }
  100% { opacity: 1; transform: translateX(0) scale(1) rotate(0); }
}

body.menu-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

/* Desktop navigation wrapper */
.primary-nav {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a > span {
  display: none;
}

.mobile-nav-head,
.mobile-nav-footer,
.menu-overlay {
  display: none;
}

/* ===== Attractive left-side mobile drawer ===== */
@media (max-width: 1080px) {
  .site-header {
    z-index: 120;
  }

  .primary-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 130;
    width: min(390px, 88vw);
    height: 100dvh;
    padding: 0;
    border: 0;
    border-radius: 0 28px 28px 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 15% 10%, rgba(61, 232, 225, .18), transparent 30%),
      linear-gradient(155deg, #ffffff 0%, #f3f2ff 48%, #e8e5ff 100%);
    box-shadow: 30px 0 90px rgba(4, 7, 46, .42);
    opacity: 1;
    visibility: visible;
    transform: translateX(-105%);
    transition: transform .55s cubic-bezier(.16,1,.3,1);
  }

  .primary-nav::before {
    content: "";
    position: absolute;
    top: -85px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(83, 47, 194, .15);
    box-shadow: 0 0 0 30px rgba(83,47,194,.05), 0 0 0 65px rgba(83,47,194,.035);
    pointer-events: none;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 22px 22px 18px 26px;
    border-bottom: 1px solid rgba(36, 35, 99, .1);
  }

  .mobile-nav-brand {
    color: #172451;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
  }

  .drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(31, 34, 94, .1);
    border-radius: 14px;
    color: #252c6c;
    background: rgba(255,255,255,.75);
    box-shadow: 0 8px 25px rgba(25,25,100,.1);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .nav-links {
    display: grid;
    gap: 7px;
    padding: 24px 18px;
  }

  .primary-nav .nav-links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 18px;
    border-radius: 16px;
    color: #34395e;
    text-align: left;
    font-size: 15px;
    background: transparent;
    box-shadow: none;
    transform: translateX(-22px);
    opacity: 0;
    transition: background .25s ease, color .25s ease, transform .25s ease;
  }

  .primary-nav.is-open .nav-links a {
    animation: drawerLinkIn .55s cubic-bezier(.16,1,.3,1) forwards;
  }

  .primary-nav.is-open .nav-links a:nth-child(1) { animation-delay: .12s; }
  .primary-nav.is-open .nav-links a:nth-child(2) { animation-delay: .17s; }
  .primary-nav.is-open .nav-links a:nth-child(3) { animation-delay: .22s; }
  .primary-nav.is-open .nav-links a:nth-child(4) { animation-delay: .27s; }
  .primary-nav.is-open .nav-links a:nth-child(5) { animation-delay: .32s; }
  .primary-nav.is-open .nav-links a:nth-child(6) { animation-delay: .37s; }

  .primary-nav .nav-links a > span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 11px;
    color: #56519b;
    background: rgba(83, 73, 178, .09);
    font-size: 10px;
    letter-spacing: .5px;
  }

  .primary-nav .nav-links a:hover,
  .primary-nav .nav-links a.active {
    color: #fff;
    background: linear-gradient(115deg, #28328d, #6232c8);
    box-shadow: 0 13px 27px rgba(67, 44, 166, .24);
    transform: translateX(5px);
  }

  .primary-nav .nav-links a:hover > span,
  .primary-nav .nav-links a.active > span {
    color: #172451;
    background: #54e7df;
  }

  .primary-nav .nav-links a::after {
    display: none;
  }

  .mobile-nav-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 20px 26px 28px;
    background: linear-gradient(to top, rgba(237,235,255,.98), rgba(237,235,255,.4));
  }

  .mobile-nav-footer p {
    margin: 0 0 12px;
    color: #777b9c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .mobile-social-links {
    display: flex;
    gap: 10px;
  }

  .mobile-social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #343b7b;
    background: #fff;
    box-shadow: 0 8px 22px rgba(31,32,104,.1);
    font-size: 12px;
    font-weight: 800;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 125;
    display: block;
    background: rgba(3, 5, 38, .58);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
  }

  .menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  @keyframes drawerLinkIn {
    from { opacity: 0; transform: translateX(-22px); }
    to { opacity: 1; transform: translateX(0); }
  }
}

@media (max-width: 520px) {
  .primary-nav {
    width: min(345px, 90vw);
    border-radius: 0 22px 22px 0;
  }

  .mobile-nav-head {
    min-height: 80px;
    padding: 17px 17px 14px 21px;
  }

  .nav-links {
    padding: 18px 13px;
  }

  .primary-nav .nav-links a {
    padding: 12px 14px;
  }
}

/* ===== Sticky header with background change on scroll ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: padding .35s ease, transform .35s ease;
}

.site-header .header-inner {
  transition:
    min-height .35s ease,
    padding .35s ease,
    border-color .35s ease,
    border-radius .35s ease,
    background .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-color: rgba(255,255,255,.12);
  border-radius: 0 0 20px 20px;
  background: linear-gradient(110deg, rgba(7,16,95,.94), rgba(72,28,167,.92));
  box-shadow: 0 18px 50px rgba(2,5,48,.34);
  backdrop-filter: blur(22px) saturate(145%);
}


.site-header.is-scrolled .brand-mark {
  color: #fff;
}

.site-header.is-scrolled .primary-nav {
  background: rgba(255,255,255,.1);
}

.site-header.is-scrolled .primary-nav a {
  color: rgba(255,255,255,.78);
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.active {
  color: #172451;
  background: #fff;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #292574;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.social-links a:hover {
  color: #ffffff;
  background: #292574;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(41, 37, 116, 0.25);
}

.site-header.scrolled .social-links a,
.site-header.is-scrolled .social-links a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .social-links a:hover,
.site-header.is-scrolled .social-links a:hover {
  color: #292574;
  background: #ffffff;
}
.site-header.is-scrolled .social-links a {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.site-header.is-scrolled .social-links a:hover {
  color: #172451;
  background: var(--cyan);
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(255,255,255,.12);
}

.site-header.is-scrolled .menu-toggle span {
  background: #fff;
}

.hero {
  padding-top: clamp(125px, 12vw, 155px);
}

@media (max-width: 1080px) {
  .site-header.is-scrolled .primary-nav {
    background:
      radial-gradient(circle at 15% 10%, rgba(61, 232, 225, .18), transparent 30%),
      linear-gradient(155deg, #ffffff 0%, #f3f2ff 48%, #e8e5ff 100%);
  }

  .site-header.is-scrolled .primary-nav .nav-links a {
    color: #34395e;
  }

  .site-header.is-scrolled .primary-nav .nav-links a:hover,
  .site-header.is-scrolled .primary-nav .nav-links a.active {
    color: #fff;
  }
}

@media (max-width: 780px) {
  .hero {
    padding-top: 130px;
  }
  .social-links {
    display: none;
}
}

@media (max-width: 520px) {
  .site-header.is-scrolled .header-inner {
    min-height: 58px;
    border-radius: 0 0 15px 15px;
  }

  .hero {
    padding-top: 112px;
  }
}


/* =========================================
   SERVICES SECTION
   Cards overlapping banner bottom
========================================= */



.services-section {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 24px 0px;
  background: #f7f8fc;
  overflow: visible;
}

/* .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 76% 40%,
      rgba(115, 51, 224, 0.64),
      transparent 33%
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(38, 189, 225, 0.12),
      transparent 30%
    ),
    linear-gradient(
      115deg,
      #121d66 0%,
      #292877 49%,
      #5727bd 100%
    );
} */

/* Same grid pattern as banner */
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );

  background-size: 45px 45px;
}

.services-container {
  position: relative;
  z-index: 2;
  width: min(1105px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  transform: translateY(-75px);
  margin-bottom: -75px;
}
/* Grid pattern like banner */
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 45px 45px;
}

.services-container {
  position: relative;
  z-index: 2;
  width: min(1140px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  /* Yehi cards ko upar lift karega */
  transform: translateY(-70px);
}

/* =========================================
   CARD
========================================= */

.service-card {
  position: relative;
  min-height: 290px;
  padding: 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;

  border: 1px solid rgba(77, 88, 162, 0.09);
  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(244, 251, 252, 0.98) 0%,
    rgba(255, 255, 255, 0.97) 20%,
    rgba(247, 248, 252, 0.98) 100%
  );

  box-shadow:
    0 22px 55px rgba(25, 24, 77, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(92, 78, 201, 0.18);
  box-shadow:
    0 30px 70px rgba(21, 21, 70, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(87, 232, 224, 0.10),
    transparent 70%
  );
}

/* =========================================
   ICON
========================================= */

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 14px;
  border: 1px solid rgba(101, 131, 205, 0.12);

  background: linear-gradient(
    145deg,
    rgba(235, 248, 255, 0.96),
    rgba(239, 236, 255, 0.96)
  );

  color: #1f254f;
  font-size: 19px;

  box-shadow:
    0 10px 22px rgba(59, 69, 138, 0.08),
    inset 0 0 0 6px rgba(255, 255, 255, 0.45);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.05);
  background: linear-gradient(145deg, #44ddd5, #5b3fd1);
  color: #ffffff;
}

/* =========================================
   CONTENT
========================================= */

.service-card-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.service-card h3 {
  margin: 0 0 12px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #1c2340;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.service-card:nth-child(2) h3,
.service-card:nth-child(3) h3 {
  color: #403d9c;
}

.service-card p {
  margin: 0;
  color: #6d7690;
  font-size: 12.5px;
  line-height: 1.72;
  max-width: 95%;
}

/* =========================================
   BUTTON
========================================= */

.service-button {
  margin-top:27px !important;
  min-width: 92px;
  min-height: 33px;
  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  border-radius: 999px;
  background: linear-gradient(135deg, #242982, #2d2f9f);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;

  box-shadow: 0 8px 18px rgba(38, 42, 130, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.service-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #2a31a3, #4e35c8);
  box-shadow: 0 14px 25px rgba(38, 42, 130, 0.24);
}

.service-button i {
  font-size: 8px;
  transition: transform 0.3s ease;
}

.service-button:hover i {
  transform: translateX(3px);
}

/* =========================================
   SCROLL ANIMATION
========================================= */

.reveal-card {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-card:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.25s;
}

.reveal-card:nth-child(4) {
  transition-delay: 0.35s;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .services-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .service-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 0 16px 70px;
  }

  .services-section::before,
  .services-section::after {
    height: 100px;
  }

  .services-container {
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 18px;
    transform: translateY(-32px);
  }

  .service-card {
    min-height: 285px;
    border-radius: 18px;
  }

  .service-card h3 {
    min-height: auto;
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* =====================================================
   CODING STANDARD SECTION
===================================================== */

.coding-section {
    position: relative;
    width: 100%;
    padding: 60px 0px;
    overflow: hidden;
    background: radial-gradient(circle at 12% 25%, rgb(67 226 219 / 10%), #00000008 24%), radial-gradient(circle at 87% 20%, rgb(91 64 207 / 26%), #00000008 26%), linear-gradient(180deg, #f8f9fd 0%, #f4f5fb 100%);
}

.coding-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(61, 76, 151, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 76, 151, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.coding-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 75px;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.coding-image-wrap {
  position: relative;
  perspective: 1300px;
}

.coding-image-card {
  position: relative;
  z-index: 3;
  padding: 30px 24px 20px;
  overflow: hidden;
  border: 1px solid rgba(82, 92, 166, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(244, 247, 255, 0.96)
    );
  box-shadow:
    0 30px 80px rgba(24, 27, 89, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transform-style: preserve-3d;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.45s ease;
}

.coding-image-card:hover {
  box-shadow:
    0 42px 100px rgba(24, 27, 89, 0.18),
    0 0 45px rgba(67, 226, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.coding-image-mask {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  clip-path: inset(0 100% 0 0 round 20px);
  transform: translateZ(34px);
  transition:
    clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.coding-reveal.is-visible .coding-image-mask {
  clip-path: inset(0 0 0 0 round 20px);
}

.coding-image {
  width: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.12);
  filter: saturate(0.9) contrast(0.98);
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.coding-reveal.is-visible .coding-image {
  transform: scale(1);
}

.coding-image-card:hover .coding-image {
  transform: scale(1.035);
  filter: saturate(1) contrast(1);
}

/* Premium light sweep */

.image-light-sweep {
  position: absolute;
  top: -20%;
  left: -75%;
  z-index: 5;
  width: 45%;
  height: 145%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
}

.coding-reveal.is-visible .image-light-sweep {
  animation: codingSweep 1.2s ease 0.65s forwards;
}

/* =====================================================
   DECORATIVE ORBITS
===================================================== */

.coding-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(83, 71, 203, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  top: -40px;
  left: -42px;
  width: 100px;
  height: 100px;
  animation: orbitSpin 11s linear infinite;
}

.orbit-b {
  right: -45px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  animation: orbitSpinReverse 14s linear infinite;
}

.coding-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48ded7;
  box-shadow: 0 0 18px rgba(72, 222, 215, 0.8);
}

.coding-dot {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.dot-a {
  top: 14%;
  right: -12px;
  width: 12px;
  height: 12px;
  background: #47ddd6;
  box-shadow: 0 0 22px rgba(71, 221, 214, 0.65);
  animation: dotFloat 4.5s ease-in-out infinite;
}

.dot-b {
  bottom: 8%;
  left: -18px;
  width: 7px;
  height: 7px;
  background: #6251d8;
  box-shadow: 0 0 16px rgba(98, 81, 216, 0.55);
  animation: dotFloat 5.5s ease-in-out infinite reverse;
}

/* =====================================================
   CONTENT
===================================================== */

.coding-content {
  position: relative;
  z-index: 3;
  max-width: 535px;
}

.coding-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 132, 198, 0.14);
  border-radius: 15px;
  color: #43dcd4;
  background:
    linear-gradient(
      145deg,
      rgba(238, 251, 255, 0.99),
      rgba(244, 239, 255, 0.97)
    );
  box-shadow:
    0 12px 26px rgba(26, 34, 95, 0.09),
    inset 0 0 0 6px rgba(255, 255, 255, 0.45);
  font-size: 19px;
  transform-origin: center;
}

.coding-title {
  margin: 0 0 12px;
  color: #1a2140;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1.3px;
}

.coding-subtitle {
  margin: 0 0 22px;
  color: #4d68e2;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.coding-text {
  margin: 0;
  color: #737d98;
  font-size: 16px;
  line-height: 1.9;
}

/* =====================================================
   PREMIUM SCROLL REVEAL
===================================================== */

.coding-reveal {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.coding-image-wrap.coding-reveal {
  transform: translate3d(-90px, 50px, 0) rotateY(12deg) scale(0.9);
}

.coding-content.coding-reveal {
  transform: translate3d(90px, 45px, 0);
}

.coding-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateY(0) scale(1);
}

/* Text stagger */

.coding-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.coding-content.is-visible .coding-stagger {
  opacity: 1;
  transform: translateY(0);
}

.coding-content.is-visible .coding-stagger:nth-child(1) {
  transition-delay: 0.15s;
}

.coding-content.is-visible .coding-stagger:nth-child(2) {
  transition-delay: 0.28s;
}

.coding-content.is-visible .coding-stagger:nth-child(3) {
  transition-delay: 0.4s;
}

.coding-content.is-visible .coding-stagger:nth-child(4) {
  transition-delay: 0.52s;
}

.coding-content.is-visible .coding-icon {
  animation: iconPop 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes codingSweep {
  0% {
    left: -75%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes dotFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.15);
  }
}

@keyframes iconPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.7) rotate(-10deg);
  }

  70% {
    transform: translateY(-4px) scale(1.08) rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .coding-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .coding-content {
    max-width: 700px;
  }

  .coding-image-wrap.coding-reveal,
  .coding-content.coding-reveal {
    transform: translateY(65px) scale(0.94);
  }

  .coding-reveal.is-visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .coding-section {
    padding: 85px 16px;
  }

  .coding-container {
    gap: 42px;
  }

  .coding-image-card {
    padding: 20px 14px 12px;
    border-radius: 22px;
  }

  .coding-image-mask {
    border-radius: 15px;
  }

  .coding-title {
    font-size: 34px;
  }

  .coding-subtitle {
    font-size: 15px;
  }

  .coding-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .orbit-a {
    width: 74px;
    height: 74px;
  }

  .orbit-b {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .coding-title {
    font-size: 30px;
  }

  .coding-text {
    font-size: 14px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .coding-reveal,
  .coding-stagger,
  .coding-image-mask,
  .coding-image {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .coding-orbit,
  .coding-dot,
  .image-light-sweep,
  .coding-icon {
    animation: none;
  }
}
/* =====================================================
   FINAL MOBILE DRAWER FIX
   Keeps drawer sharp while page background is blurred
===================================================== */

body.menu-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 1080px) {
  .site-header {
    position: fixed !important;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 10002 !important;
  }

  .site-header .header-inner {
    position: relative;
    transform: none !important;
    filter: none !important;
  }

  .primary-nav {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: auto !important;
    z-index: 10004 !important;

    width: min(360px, 88vw) !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;

    border: 0 !important;
    border-radius: 0 26px 26px 0 !important;

    background:
      radial-gradient(circle at 12% 8%, rgba(53, 227, 219, 0.18), transparent 30%),
      linear-gradient(155deg, #ffffff 0%, #f5f4ff 48%, #e9e6ff 100%) !important;

    box-shadow: 25px 0 70px rgba(4, 7, 48, 0.32) !important;

    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    transform: translate3d(-105%, 0, 0) !important;
    will-change: transform;

    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .primary-nav.is-open {
    transform: translate3d(0, 0, 0) !important;
  }

  .menu-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10001 !important;

    display: block !important;

    background: rgba(3, 5, 38, 0.58) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease !important;
  }

  .menu-overlay.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  .mobile-nav-head {
    position: relative;
    z-index: 2;
    min-height: 86px;
    padding: 20px 20px 16px 24px;

    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-shrink: 0;

    border-bottom: 1px solid rgba(35, 37, 103, 0.1);
    background: rgba(255, 255, 255, 0.48);
  }

  .mobile-nav-brand {
    color: #172451;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.8px;
  }

  .drawer-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(31, 34, 94, 0.1);
    border-radius: 13px;

    color: #252c6c;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(25, 25, 100, 0.1);

    font-size: 27px;
    line-height: 1;
    cursor: pointer;
  }

  .primary-nav .nav-links {
    width: 100%;
    padding: 24px 17px 118px;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;

    overflow: visible;
  }

  .primary-nav .nav-links a {
    width: 100%;
    min-height: 58px;
    padding: 12px 16px !important;

    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;

    border-radius: 15px;
    color: #34395e !important;
    background: transparent !important;

    font-size: 15px;
    font-weight: 700;
    text-align: left;

    box-shadow: none !important;
    opacity: 0;
    transform: translateX(-25px);
  }

  .primary-nav.is-open .nav-links a {
    animation: mobileLinkReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .primary-nav.is-open .nav-links a:nth-child(1) { animation-delay: 0.10s; }
  .primary-nav.is-open .nav-links a:nth-child(2) { animation-delay: 0.16s; }
  .primary-nav.is-open .nav-links a:nth-child(3) { animation-delay: 0.22s; }
  .primary-nav.is-open .nav-links a:nth-child(4) { animation-delay: 0.28s; }
  .primary-nav.is-open .nav-links a:nth-child(5) { animation-delay: 0.34s; }
  .primary-nav.is-open .nav-links a:nth-child(6) { animation-delay: 0.40s; }

  .primary-nav .nav-links a > span {
    width: 35px;
    height: 35px;
    display: inline-grid !important;
    place-items: center;
    flex: 0 0 35px;

    border-radius: 11px;
    color: #56519b;
    background: rgba(83, 73, 178, 0.09);
    font-size: 10px;
  }

  .primary-nav .nav-links a:hover,
  .primary-nav .nav-links a.active {
    color: #ffffff !important;
    background: linear-gradient(115deg, #28328d, #6232c8) !important;
    box-shadow: 0 13px 27px rgba(67, 44, 166, 0.24) !important;
    transform: translateX(5px);
  }

  .primary-nav .nav-links a:hover > span,
  .primary-nav .nav-links a.active > span {
    color: #172451;
    background: #54e7df;
  }

  .primary-nav .nav-links a::after {
    display: none !important;
  }

  .mobile-nav-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    display: block !important;
    padding: 18px 24px 24px;

    background: linear-gradient(to top, #eeecff 72%, rgba(238, 236, 255, 0));
  }

  .mobile-nav-footer p {
    margin: 0 0 11px;
    color: #777b9c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .mobile-social-links {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .mobile-social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;

    border-radius: 12px;
    color: #343b7b;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 32, 104, 0.1);
  }

  .menu-toggle {
    position: relative;
    z-index: 10005;
    display: block !important;
  }
}

@media (max-width: 520px) {
  .primary-nav {
    width: min(330px, 88vw) !important;
    border-radius: 0 20px 20px 0 !important;
  }

  .mobile-nav-head {
    min-height: 76px;
    padding: 15px 16px 13px 20px;
  }

  .primary-nav .nav-links {
    padding: 18px 12px 106px;
  }

  .primary-nav .nav-links a {
    min-height: 53px;
    padding: 10px 13px !important;
    font-size: 14px;
  }

  .mobile-nav-footer {
    padding: 16px 20px 20px;
  }
}

@keyframes mobileLinkReveal {
  from {
    opacity: 0;
    transform: translateX(-25px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* =========================================
   SERVICES SECTION
   Cards overlapping banner bottom
========================================= */



.services-section {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 24px 0px;
  background: #f7f8fc;
  overflow: visible;
}

/* .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 76% 40%,
      rgba(115, 51, 224, 0.64),
      transparent 33%
    ),
    radial-gradient(
      circle at 20% 10%,
      rgba(38, 189, 225, 0.12),
      transparent 30%
    ),
    linear-gradient(
      115deg,
      #121d66 0%,
      #292877 49%,
      #5727bd 100%
    );
} */

/* Same grid pattern as banner */
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );

  background-size: 45px 45px;
}

.services-container {
  position: relative;
  z-index: 2;
  width: min(1105px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  transform: translateY(-75px);
  margin-bottom: -75px;
}
/* Grid pattern like banner */
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 45px 45px;
}

.services-container {
  position: relative;
  z-index: 2;
  width: min(1140px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  /* Yehi cards ko upar lift karega */
  transform: translateY(-70px);
}

/* =========================================
   CARD
========================================= */

.service-card {
  position: relative;
  min-height: 290px;
  padding: 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;

  border: 1px solid rgba(77, 88, 162, 0.09);
  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(244, 251, 252, 0.98) 0%,
    rgba(255, 255, 255, 0.97) 20%,
    rgba(247, 248, 252, 0.98) 100%
  );

  box-shadow:
    0 22px 55px rgba(25, 24, 77, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(92, 78, 201, 0.18);
  box-shadow:
    0 30px 70px rgba(21, 21, 70, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(87, 232, 224, 0.10),
    transparent 70%
  );
}

/* =========================================
   ICON
========================================= */

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 14px;
  border: 1px solid rgba(101, 131, 205, 0.12);

  background: linear-gradient(
    145deg,
    rgba(235, 248, 255, 0.96),
    rgba(239, 236, 255, 0.96)
  );

  color: #1f254f;
  font-size: 19px;

  box-shadow:
    0 10px 22px rgba(59, 69, 138, 0.08),
    inset 0 0 0 6px rgba(255, 255, 255, 0.45);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.05);
  background: linear-gradient(145deg, #44ddd5, #5b3fd1);
  color: #ffffff;
}

/* =========================================
   CONTENT
========================================= */

.service-card-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.service-card h3 {
  margin: 0 0 12px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #1c2340;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.service-card:nth-child(2) h3,
.service-card:nth-child(3) h3 {
  color: #403d9c;
}

.service-card p {
  margin: 0;
  color: #6d7690;
  font-size: 12.5px;
  line-height: 1.72;
  max-width: 95%;
}

/* =========================================
   BUTTON
========================================= */

.service-button {
  margin-top: auto;
  min-width: 92px;
  min-height: 33px;
  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  border-radius: 999px;
  background: linear-gradient(135deg, #242982, #2d2f9f);
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;

  box-shadow: 0 8px 18px rgba(38, 42, 130, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.service-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #2a31a3, #4e35c8);
  box-shadow: 0 14px 25px rgba(38, 42, 130, 0.24);
}

.service-button i {
  font-size: 8px;
  transition: transform 0.3s ease;
}

.service-button:hover i {
  transform: translateX(3px);
}

/* =========================================
   SCROLL ANIMATION
========================================= */

.reveal-card {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-card:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.25s;
}

.reveal-card:nth-child(4) {
  transition-delay: 0.35s;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .services-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .service-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 0 16px 70px;
  }

  .services-section::before,
  .services-section::after {
    height: 100px;
  }

  .services-container {
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 18px;
    transform: translateY(-32px);
  }

  .service-card {
    min-height: 285px;
    border-radius: 18px;
  }

  .service-card h3 {
    min-height: auto;
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }
}


/* =====================================================
   IMAGE AREA
===================================================== */

.coding-image-wrap {
  position: relative;
  perspective: 1300px;
}

.coding-image-card {
  position: relative;
  z-index: 3;
  padding: 30px 24px 20px;
  overflow: hidden;
  border: 1px solid rgba(82, 92, 166, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(244, 247, 255, 0.96)
    );
  box-shadow:
    0 30px 80px rgba(24, 27, 89, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transform-style: preserve-3d;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.45s ease;
}

.coding-image-card:hover {
  box-shadow:
    0 42px 100px rgba(24, 27, 89, 0.18),
    0 0 45px rgba(67, 226, 219, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.coding-image-mask {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  clip-path: inset(0 100% 0 0 round 20px);
  transform: translateZ(34px);
  transition:
    clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.coding-reveal.is-visible .coding-image-mask {
  clip-path: inset(0 0 0 0 round 20px);
}

.coding-image {
  width: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.12);
  filter: saturate(0.9) contrast(0.98);
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

.coding-reveal.is-visible .coding-image {
  transform: scale(1);
}

.coding-image-card:hover .coding-image {
  transform: scale(1.035);
  filter: saturate(1) contrast(1);
}

/* Premium light sweep */

.image-light-sweep {
  position: absolute;
  top: -20%;
  left: -75%;
  z-index: 5;
  width: 45%;
  height: 145%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-18deg);
  opacity: 0;
}

.coding-reveal.is-visible .image-light-sweep {
  animation: codingSweep 1.2s ease 0.65s forwards;
}

/* =====================================================
   DECORATIVE ORBITS
===================================================== */

.coding-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(83, 71, 203, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  top: -40px;
  left: -42px;
  width: 100px;
  height: 100px;
  animation: orbitSpin 11s linear infinite;
}

.orbit-b {
  right: -45px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  animation: orbitSpinReverse 14s linear infinite;
}

.coding-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48ded7;
  box-shadow: 0 0 18px rgba(72, 222, 215, 0.8);
}

.coding-dot {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.dot-a {
  top: 14%;
  right: -12px;
  width: 12px;
  height: 12px;
  background: #47ddd6;
  box-shadow: 0 0 22px rgba(71, 221, 214, 0.65);
  animation: dotFloat 4.5s ease-in-out infinite;
}

.dot-b {
  bottom: 8%;
  left: -18px;
  width: 7px;
  height: 7px;
  background: #6251d8;
  box-shadow: 0 0 16px rgba(98, 81, 216, 0.55);
  animation: dotFloat 5.5s ease-in-out infinite reverse;
}

/* =====================================================
   CONTENT
===================================================== */

.coding-content {
  position: relative;
  z-index: 3;
  max-width: 535px;
}

.coding-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(80, 132, 198, 0.14);
  border-radius: 15px;
  color: #43dcd4;
  background:
    linear-gradient(
      145deg,
      rgba(238, 251, 255, 0.99),
      rgba(244, 239, 255, 0.97)
    );
  box-shadow:
    0 12px 26px rgba(26, 34, 95, 0.09),
    inset 0 0 0 6px rgba(255, 255, 255, 0.45);
  font-size: 19px;
  transform-origin: center;
}

.coding-title {
  margin: 0 0 12px;
  color: #1a2140;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1.3px;
}

.coding-subtitle {
  margin: 0 0 22px;
  color: #4d68e2;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.coding-text {
  margin: 0;
  color: #737d98;
  font-size: 16px;
  line-height: 1.9;
}

/* =====================================================
   PREMIUM SCROLL REVEAL
===================================================== */

.coding-reveal {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.coding-image-wrap.coding-reveal {
  transform: translate3d(-90px, 50px, 0) rotateY(12deg) scale(0.9);
}

.coding-content.coding-reveal {
  transform: translate3d(90px, 45px, 0);
}

.coding-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateY(0) scale(1);
}

/* Text stagger */

.coding-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.coding-content.is-visible .coding-stagger {
  opacity: 1;
  transform: translateY(0);
}

.coding-content.is-visible .coding-stagger:nth-child(1) {
  transition-delay: 0.15s;
}

.coding-content.is-visible .coding-stagger:nth-child(2) {
  transition-delay: 0.28s;
}

.coding-content.is-visible .coding-stagger:nth-child(3) {
  transition-delay: 0.4s;
}

.coding-content.is-visible .coding-stagger:nth-child(4) {
  transition-delay: 0.52s;
}

.coding-content.is-visible .coding-icon {
  animation: iconPop 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes codingSweep {
  0% {
    left: -75%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes dotFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.15);
  }
}

@keyframes iconPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.7) rotate(-10deg);
  }

  70% {
    transform: translateY(-4px) scale(1.08) rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .coding-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .coding-content {
    max-width: 700px;
  }

  .coding-image-wrap.coding-reveal,
  .coding-content.coding-reveal {
    transform: translateY(65px) scale(0.94);
  }

  .coding-reveal.is-visible {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .coding-section {
    padding: 85px 16px;
  }

  .coding-container {
    gap: 42px;
  }

  .coding-image-card {
    padding: 20px 14px 12px;
    border-radius: 22px;
  }

  .coding-image-mask {
    border-radius: 15px;
  }

  .coding-title {
    font-size: 34px;
  }

  .coding-subtitle {
    font-size: 15px;
  }

  .coding-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .orbit-a {
    width: 74px;
    height: 74px;
  }

  .orbit-b {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .coding-title {
    font-size: 30px;
  }

  .coding-text {
    font-size: 14px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .coding-reveal,
  .coding-stagger,
  .coding-image-mask,
  .coding-image {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .coding-orbit,
  .coding-dot,
  .image-light-sweep,
  .coding-icon {
    animation: none;
  }
}


/* =====================================================
   EXPERTISE / TEAM + TECHNOLOGIES SECTION
===================================================== */

.expertise-section {
  position: relative;
  padding: 60px 0px 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(67, 226, 219, 0.08), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(94, 63, 209, 0.08), transparent 26%),
    linear-gradient(180deg, #f8f9fd 0%, #f3f5fb 100%);
}

.expertise-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.expertise-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.shape-one {
  top: 120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(67, 226, 219, 0.12), transparent 70%);
}

.shape-two {
  bottom: 80px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(94, 63, 209, 0.12), transparent 70%);
}

.expertise-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 65px;
  margin-bottom: 90px;
}

.expertise-row:last-child {
  margin-bottom: 0;
}

.reverse-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.expertise-content {
  position: relative;
  z-index: 2;
  max-width: 510px;
}

.section-mark {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.mark-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #4be0d8;
  background:
    linear-gradient(
      145deg,
      rgba(241, 252, 255, 0.98),
      rgba(246, 241, 255, 0.96)
    );
  border: 1px solid rgba(82, 126, 198, 0.14);
  box-shadow:
    0 14px 30px rgba(21, 30, 88, 0.08),
    inset 0 0 0 6px rgba(255, 255, 255, 0.48);
  font-size: 18px;
}

.mark-number {
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
  color: rgba(85, 91, 186, 0.12);
}

.expertise-title {
  margin: 0 0 12px;
  color: #1b2240;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1px;
}

.expertise-subtitle {
  margin: 0 0 20px;
  color: #4d68e2;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.expertise-text {
  margin: 0;
  color: #737d98;
  font-size: 15px;
  line-height: 1.9;
}

/* =========================
   IMAGE CARD
========================= */

.expertise-media {
  position: relative;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(245, 247, 255, 0.97)
    );
  border: 1px solid rgba(71, 82, 166, 0.08);
  box-shadow:
    0 30px 75px rgba(18, 21, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transform-style: preserve-3d;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.4s ease;
}

.media-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 28px;
}

.media-card:hover {
  box-shadow:
    0 38px 90px rgba(18, 21, 73, 0.18),
    0 0 40px rgba(75, 224, 216, 0.08);
}

.media-glow {
  position: absolute;
  inset: auto auto -50px -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 224, 216, 0.22), transparent 70%);
  pointer-events: none;
}

/* =========================
   TECH GRID
========================= */

.expertise-tech {
  position: relative;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 380px;
}

.tech-card {
  position: relative;
  min-height: 150px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border-radius: 22px;
  border: 1px solid rgba(71, 82, 166, 0.08);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(245, 247, 255, 0.97)
    );

  box-shadow:
    0 20px 45px rgba(18, 21, 73, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 224, 216, 0.09), transparent 72%);
}

.tech-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(81, 222, 215, 0.35);
  box-shadow:
    0 28px 65px rgba(18, 21, 73, 0.14),
    0 0 25px rgba(75, 224, 216, 0.08);
}

.tech-card i {
  font-size: 48px;
  line-height: 1;
}

.tech-card span {
  color: #2d3458;
  font-size: 14px;
  font-weight: 700;
}

.tech-card:nth-child(1) i {
  color: #f16529;
}

.tech-card:nth-child(2) i {
  color: #2965f1;
}

.tech-card:nth-child(3) i {
  color: #dd1b16;
}

.tech-card:nth-child(4) i {
  color: #6f42c1;
}

/* =========================
   UNIQUE REVEAL ANIMATION
========================= */

.reveal-block {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(55px) scale(0.96);
  transition:
    opacity 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-block.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* stagger feel */
.expertise-row .reveal-block:nth-child(1).is-visible {
  transition-delay: 0.05s;
}

.expertise-row .reveal-block:nth-child(2).is-visible {
  transition-delay: 0.18s;
}

/* floating subtle motion */
.mark-icon,
.tech-card,
.media-glow {
  animation: softFloat 5.5s ease-in-out infinite;
}

.tech-card:nth-child(2) {
  animation-delay: 0.5s;
}

.tech-card:nth-child(3) {
  animation-delay: 0.8s;
}

.tech-card:nth-child(4) {
  animation-delay: 1.1s;
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .expertise-row,
  .reverse-row {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .expertise-content {
    max-width: 100%;
  }

  .expertise-tech .tech-grid {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .expertise-section {
    padding: 85px 16px 85px;
  }

  .expertise-row {
    margin-bottom: 70px;
  }

  .mark-number {
    font-size: 58px;
  }

  .mark-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 16px;
  }

  .expertise-title {
    font-size: 31px;
  }

  .expertise-subtitle {
    font-size: 14px;
  }

  .expertise-text {
    font-size: 14px;
    line-height: 1.8;
  }

  .media-card,
  .media-card img {
    border-radius: 22px;
  }

  .tech-grid {
    gap: 12px;
  }

  .tech-card {
    min-height: 125px;
    border-radius: 18px;
  }

  .tech-card i {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-card {
    min-height: 115px;
    padding: 16px 12px;
  }

  .tech-card span {
    font-size: 13px;
  }
}

/* =====================================================
   SERVICES COUNTER SECTION
===================================================== */

.stats-section {
  position: relative;
  width: 100%;
      padding: 60px 0px 60px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(47, 220, 219, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 25%,
      rgba(105, 52, 216, 0.2),
      transparent 29%
    ),
    radial-gradient(
      circle at 50% 115%,
      rgba(42, 80, 216, 0.2),
      transparent 38%
    ),
    linear-gradient(
      125deg,
      #101548 0%,
      #171846 47%,
      #111638 100%
    );
}

/* Animated grid */

.stats-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.2;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );

  background-size: 55px 55px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );

  animation: statsGridMove 18s linear infinite;
}

/* Background glows */

.stats-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(14px);
}

.stats-glow-one {
  top: -160px;
  right: -100px;
  width: 430px;
  height: 430px;

  background:
    radial-gradient(
      circle,
      rgba(102, 48, 213, 0.3),
      transparent 70%
    );

  animation: statsGlowFloat 8s ease-in-out infinite alternate;
}

.stats-glow-two {
  left: -120px;
  bottom: -190px;
  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(45, 218, 211, 0.16),
      transparent 70%
    );

  animation: statsGlowFloat 10s ease-in-out infinite alternate-reverse;
}

.stats-container {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.stats-heading {
  max-width: 1050px;
  margin: 0 auto 54px;
  text-align: center;
}

.stats-small-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;

  color: #47e0da;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.stats-small-title::before,
.stats-small-title::after {
  content: "";
  width: 24px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #47e0da
    );
}

.stats-small-title::after {
  transform: rotate(180deg);
}

.stats-heading h2 {
  margin: 0 0 18px;

  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1.6px;
}

.stats-heading p {
  max-width: 1020px;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  font-weight: 400;
}

/* =====================================================
   CARDS GRID
===================================================== */

.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =====================================================
   STAT CARD
===================================================== */

.stats-card {
    position: relative;
    max-height: 200px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.045)
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 55px rgba(3, 5, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.stats-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -105px;
  z-index: -1;

  width: 240px;
  height: 240px;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(69, 225, 217, 0.14),
      transparent 70%
    );

  transition:
    transform 0.55s ease,
    opacity 0.55s ease;
}

.stats-card::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 0;

  height: 3px;
  border-radius: 5px 5px 0 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      #42e0d8,
      #7151e0,
      transparent
    );

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.45s ease;
}

.stats-card:hover {
  transform: translateY(-12px);

  border-color: rgba(70, 225, 218, 0.23);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.115),
      rgba(255, 255, 255, 0.055)
    );

  box-shadow:
    0 35px 75px rgba(3, 5, 28, 0.36),
    0 0 35px rgba(66, 224, 216, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stats-card:hover::before {
  opacity: 1;
  transform: scale(1.35);
}

.stats-card:hover::after {
  transform: scaleX(1);
}

/* Mouse-following light */

.stats-card-light {
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  z-index: -1;

  width: 260px;
  height: 260px;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(73, 224, 217, 0.14),
      transparent 67%
    );

  transform: translate(-50%, -50%);
  opacity: 0;

  transition: opacity 0.35s ease;
  pointer-events: none;
}

.stats-card:hover .stats-card-light {
  opacity: 1;
}

/* =====================================================
   ICON
===================================================== */

.stats-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #4cddd7;
  background:
    linear-gradient(
      145deg,
      rgba(65, 202, 218, 0.18),
      rgba(67, 120, 197, 0.2)
    );

  font-size: 27px;

  box-shadow:
    0 14px 30px rgba(5, 7, 38, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);

  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.stats-card:hover .stats-icon {
  color: #13205b;

  background:
    linear-gradient(
      145deg,
      #4fe7df,
      #54cdd3
    );

  transform:
    translateY(-5px)
    rotate(-5deg)
    scale(1.07);

  box-shadow:
    0 18px 38px rgba(20, 219, 208, 0.18),
    0 0 28px rgba(71, 224, 216, 0.18);
}

/* =====================================================
   NUMBER
===================================================== */

.stats-number {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: clamp(33px, 5vw, 23px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.counter {
  display: inline-block;
  min-width: 100px;
  text-align: center;
}

.stats-card h3 {
  margin: 8px 0 0;

  color: rgba(255, 255, 255, 0.83);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.stats-reveal {
  opacity: 0;
  visibility: hidden;

  transform:
    translateY(60px)
    scale(0.95);

  filter: blur(7px);

  transition:
    opacity 0.85s ease,
    visibility 0.85s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s ease;
}

.stats-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(0)
    scale(1);

  filter: blur(0);
}

.stats-heading.stats-reveal {
  transform: translateY(45px);
}

.stats-heading.stats-reveal.is-visible {
  transform: translateY(0);
}

.stats-card:nth-child(1) {
  transition-delay: 0.08s;
}

.stats-card:nth-child(2) {
  transition-delay: 0.2s;
}

.stats-card:nth-child(3) {
  transition-delay: 0.32s;
}

/* =====================================================
   COUNTER POP
===================================================== */

.counter.counter-finished {
  animation: counterPop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes statsGridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 55px 55px;
  }
}

@keyframes statsGlowFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-35px, 28px, 0) scale(1.08);
  }
}

@keyframes counterPop {
  0% {
    transform: scale(1);
  }

  55% {
    transform: scale(1.13);
  }

  100% {
    transform: scale(1);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .stats-section {
    padding: 90px 22px 95px;
  }

  .stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-card:last-child {
    grid-column: 1 / -1;
    max-width: 430px;
    width: 100%;
    justify-self: center;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .stats-section {
    padding: 75px 16px 80px;
  }

  .stats-heading {
    margin-bottom: 38px;
  }

  .stats-heading h2 {
    font-size: 34px;
  }

  .stats-heading p {
    font-size: 14px;
    line-height: 1.75;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stats-card,
  .stats-card:last-child {
    grid-column: auto;
    max-width: 390px;
    width: 100%;
    min-height: 230px;
    margin: 0 auto;
  }

  .stats-icon {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }

  .stats-number {
    font-size: 50px;
  }

  .stats-card h3 {
    font-size: 16px;
  }

  .stats-card:nth-child(1),
  .stats-card:nth-child(2),
  .stats-card:nth-child(3) {
    transition-delay: 0.08s;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .stats-grid-pattern,
  .stats-glow,
  .counter {
    animation: none !important;
  }

  .stats-reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =====================================================
   MOBILE APP DEVELOPMENT SECTION
===================================================== */

.mobile-development-section {
    position: relative;
    width: 100%;
    padding: 60px 0px 125px;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(
      circle at 8% 18%,
      rgba(58, 223, 216, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 22%,
      rgba(98, 61, 207, 0.08),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fd 50%,
      #f3f5fb 100%
    );
}

.mobile-development-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.28;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(51, 62, 130, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(51, 62, 130, 0.025) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 20%,
      #000 80%,
      transparent
    );
}

.mobile-development-container {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 0 auto;
}

/* =====================================================
   DECORATIVE BACKGROUND SHAPES
===================================================== */

.mobile-bg-shape {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(5px);
}

.mobile-shape-one {
  top: 170px;
  left: -140px;
  width: 330px;
  height: 330px;

  background:
    radial-gradient(
      circle,
      rgba(59, 223, 216, 0.14),
      transparent 70%
    );

  animation: mobileShapeFloat 8s ease-in-out infinite alternate;
}

.mobile-shape-two {
  right: -160px;
  bottom: 100px;
  width: 370px;
  height: 370px;

  background:
    radial-gradient(
      circle,
      rgba(102, 59, 213, 0.12),
      transparent 70%
    );

  animation:
    mobileShapeFloat 10s ease-in-out infinite alternate-reverse;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.mobile-development-heading {
  max-width: 720px;
  margin: 0 auto 75px;
  text-align: center;
}

.mobile-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;

  color: #4f57ca;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mobile-section-label::before,
.mobile-section-label::after {
  content: "";
  width: 24px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #48ddd6
    );
}

.mobile-section-label::after {
  transform: rotate(180deg);
}

.mobile-development-heading h2 {
  margin: 0 0 14px;

  color: #17203b;

  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -2px;
}

.mobile-heading-subtitle {
  margin: 0;

  color: #707993;

  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

/* =====================================================
   ROW LAYOUT
===================================================== */

.mobile-development-row {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(420px, 1.05fr);

  align-items: center;
  gap: 80px;

  margin-bottom: 80px;
}

.mobile-development-row:last-child {
  margin-bottom: 0;
}

.mobile-row-reverse {
  grid-template-columns:
    minmax(420px, 1.05fr)
    minmax(0, 0.95fr);
}

/* =====================================================
   TEXT CONTENT
===================================================== */

.mobile-development-content {
  position: relative;
  max-width: 520px;
}

.mobile-content-number {
  position: absolute;
  top: -70px;
  left: -10px;
  z-index: -1;

  color: rgba(76, 76, 172, 0.06);

  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -5px;

  pointer-events: none;
}

.mobile-development-content p {
  margin: 0;

  color: #65708b;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

/* =====================================================
   BENEFITS LIST
===================================================== */

.mobile-benefits-list {
  margin: 28px 0 0;
  padding: 0;

  display: grid;
  gap: 14px;

  list-style: none;
}

.mobile-benefits-list li {
  position: relative;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #343c61;

  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;

  opacity: 0;
  transform: translateX(24px);

  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-development-content.is-visible
.mobile-benefits-list li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-development-content.is-visible
.mobile-benefits-list li:nth-child(1) {
  transition-delay: 0.3s;
}

.mobile-development-content.is-visible
.mobile-benefits-list li:nth-child(2) {
  transition-delay: 0.42s;
}

.mobile-development-content.is-visible
.mobile-benefits-list li:nth-child(3) {
  transition-delay: 0.54s;
}

.mobile-development-content.is-visible
.mobile-benefits-list li:nth-child(4) {
  transition-delay: 0.66s;
}

.mobile-benefits-list i {
  width: 24px;
  height: 24px;

  display: inline-grid;
  place-items: center;
  flex-shrink: 0;

  border-radius: 8px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #43ddd5,
      #5c42cc
    );

  font-size: 10px;

  box-shadow:
    0 7px 16px rgba(70, 69, 190, 0.18);
}

/* =====================================================
   IMAGE BLOCK
===================================================== */

.mobile-image-block {
  position: relative;
  margin: 0;

  perspective: 1400px;
}

.mobile-image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: 14px;

  border: 1px solid rgba(76, 88, 163, 0.09);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 246, 255, 0.96)
    );

  box-shadow:
    0 30px 75px rgba(23, 27, 86, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transform-style: preserve-3d;

  transition:
    transform 0.18s ease-out,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.mobile-image-card:hover {
  border-color: rgba(74, 220, 212, 0.28);

  box-shadow:
    0 42px 95px rgba(23, 27, 86, 0.18),
    0 0 40px rgba(70, 222, 214, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.mobile-image-mask {
  position: relative;
  overflow: hidden;

  border-radius: 21px;

  clip-path:
    inset(
      0 100% 0 0
      round 21px
    );

  transition:
    clip-path 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-image-block.is-visible
.mobile-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 21px
    );
}

.mobile-image-mask img {
  width: 100%;
  height: auto;
  max-height: 380px;

  display: block;

  object-fit: cover;

  transform: scale(1.13);

  transition:
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.mobile-image-block.is-visible
.mobile-image-mask img {
  transform: scale(1);
}

.mobile-image-card:hover img {
  transform: scale(1.035);
}

/* Image shine */

.mobile-image-shine {
  position: absolute;
  top: -25%;
  left: -80%;
  z-index: 4;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.55),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.mobile-image-block.is-visible
.mobile-image-shine {
  animation:
    mobileImageSweep
    1.25s
    0.65s
    ease
    forwards;
}

/* Image glow */

.mobile-image-glow {
  position: absolute;
  right: -60px;
  bottom: -70px;
  z-index: -1;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(68, 222, 214, 0.22),
      transparent 70%
    );

  pointer-events: none;
}

.mobile-image-block figcaption {
  margin-top: 16px;

  color: #343c61;

  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.mobile-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(9px);

  transform:
    translateY(65px)
    scale(0.95);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translateY(0)
    scale(1);
}

/* Unique directional animation */

.mobile-development-row
.mobile-development-content.mobile-reveal {
  transform:
    translateX(-70px)
    translateY(30px);
}

.mobile-development-row
.mobile-development-content.mobile-reveal.is-visible {
  transform:
    translateX(0)
    translateY(0);
}

.mobile-development-row
.mobile-image-block.mobile-reveal {
  transform:
    translateX(75px)
    rotateY(-8deg)
    scale(0.92);
}

.mobile-development-row
.mobile-image-block.mobile-reveal.is-visible {
  transform:
    translateX(0)
    rotateY(0)
    scale(1);
}

.mobile-row-reverse
.mobile-image-block.mobile-reveal {
  transform:
    translateX(-75px)
    rotateY(8deg)
    scale(0.92);
}

.mobile-row-reverse
.mobile-image-block.mobile-reveal.is-visible {
  transform:
    translateX(0)
    rotateY(0)
    scale(1);
}

.mobile-row-reverse
.mobile-development-content.mobile-reveal {
  transform:
    translateX(70px)
    translateY(30px);
}

.mobile-row-reverse
.mobile-development-content.mobile-reveal.is-visible {
  transform:
    translateX(0)
    translateY(0);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes mobileShapeFloat {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-30px, 24px, 0)
      scale(1.08);
  }
}

@keyframes mobileImageSweep {
  0% {
    left: -80%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
  .mobile-development-section {
    padding:
      95px
      22px
      105px;
  }

  .mobile-development-row,
  .mobile-row-reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .mobile-development-content {
    max-width: 720px;
  }

  .mobile-row-reverse
  .mobile-image-block {
    order: 1;
  }

  .mobile-row-reverse
  .mobile-development-content {
    order: 2;
  }

  .mobile-image-mask img {
    min-height: auto;
  }

  .mobile-development-row
  .mobile-development-content.mobile-reveal,
  .mobile-development-row
  .mobile-image-block.mobile-reveal,
  .mobile-row-reverse
  .mobile-image-block.mobile-reveal,
  .mobile-row-reverse
  .mobile-development-content.mobile-reveal {
    transform:
      translateY(60px)
      scale(0.95);
  }

  .mobile-development-row
  .mobile-development-content.mobile-reveal.is-visible,
  .mobile-development-row
  .mobile-image-block.mobile-reveal.is-visible,
  .mobile-row-reverse
  .mobile-image-block.mobile-reveal.is-visible,
  .mobile-row-reverse
  .mobile-development-content.mobile-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .mobile-development-section {
    padding:
      75px
      16px
      85px;
  }

  .mobile-development-heading {
    margin-bottom: 55px;
  }

  .mobile-development-heading h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .mobile-heading-subtitle {
    font-size: 14px;
  }

  .mobile-development-row {
    gap: 34px;
    margin-bottom: 80px;
  }

  .mobile-development-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .mobile-content-number {
    top: -50px;
    font-size: 75px;
  }

  .mobile-image-card {
    padding: 9px;
    border-radius: 22px;
  }

  .mobile-image-mask {
    border-radius: 15px;
  }

  .mobile-image-mask img {
    min-height: auto;
  }

  .mobile-image-block figcaption {
    margin-top: 12px;
    font-size: 12px;
  }

  .mobile-benefits-list li {
    font-size: 13px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .mobile-reveal,
  .mobile-benefits-list li,
  .mobile-image-mask,
  .mobile-image-mask img {
    opacity: 1;
    visibility: visible;

    filter: none;
    transform: none;

    clip-path: none;

    animation: none !important;
    transition: none !important;
  }

  .mobile-bg-shape,
  .mobile-image-shine {
    animation: none !important;
  }
}
/* =====================================================
   SIMPLE PREMIUM FOOTER — COMPLETE CSS
   Only heading mark has continuous animation
===================================================== */

.site-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(83, 51, 190, 0.12),
      transparent 28%
    ),
    linear-gradient(
      125deg,
      #10183d 0%,
      #151d49 52%,
      #11183b 100%
    );
}

/* =====================================================
   MAIN FOOTER CONTAINER
===================================================== */

.footer-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 66px;

  display: grid;
  grid-template-columns:
    minmax(220px, 0.9fr)
    minmax(220px, 0.9fr)
    minmax(340px, 1.2fr);

  gap: 75px;
}

/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column {
  position: relative;
}

.footer-heading {
  position: relative;
}

.footer-heading h3,
.footer-column h3 {
  margin: 0;

  color: #ffffff;

  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

/* =====================================================
   ANIMATED HEADING MARK
===================================================== */

.footer-heading-line {
  position: relative;

  width: 66px;
  height: 3px;
  margin: 16px 0 22px;

  display: block;
  overflow: hidden;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
}

/* Moving gradient light */

.footer-heading-line::before {
  content: "";

  position: absolute;
  top: 0;
  left: -45%;

  width: 42%;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      transparent,
      #42e0d8,
      #765be4,
      transparent
    );

  box-shadow:
    0 0 10px rgba(66, 224, 216, 0.58),
    0 0 20px rgba(118, 91, 228, 0.3);

  animation:
    footerMarkMove
    2.2s
    ease-in-out
    infinite;
}

/* Moving glowing dot */

.footer-heading-line::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #45e1da;

  box-shadow:
    0 0 8px #45e1da,
    0 0 16px rgba(69, 225, 218, 0.78);

  transform:
    translateY(-50%)
    scale(0.8);

  animation:
    footerMarkDot
    2.2s
    ease-in-out
    infinite;
}

/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {
  margin: 0;
  padding: 0;

  display: grid;
  gap: 7px;

  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  position: relative;

  min-height: 34px;
  padding: 6px 0;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links a i {
  width: 0;

  overflow: hidden;
  opacity: 0;

  color: #45ddd6;
  font-size: 10px;

  transform: translateX(-7px);

  transition:
    width 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-links a:hover i {
  width: 10px;
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   CONTACT AREA
===================================================== */

.footer-contact-list {
  display: grid;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 14px;
  line-height: 1.7;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-contact-item:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 34px;
  height: 34px;

  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;

  color: #45ddd6;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 9px 20px rgba(2, 4, 27, 0.18);

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  color: #15214d;
  background: #48ddd6;

  transform:
    rotate(-4deg)
    scale(1.04);
}

/* =====================================================
   SOCIAL LINKS
===================================================== */

.footer-social-links {
  margin-top: 22px;

  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 10px 24px rgba(2, 4, 27, 0.17);

  font-size: 15px;
  text-decoration: none;

  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.footer-social-links a:hover {
  color: #13204e;

  background:
    linear-gradient(
      145deg,
      #4ce6df,
      #52cad5
    );

  transform:
    translateY(-5px)
    rotate(-5deg);

  box-shadow:
    0 15px 30px rgba(31, 210, 202, 0.17),
    0 0 22px rgba(70, 224, 216, 0.14);
}

/* =====================================================
   PAYMENT AREA
===================================================== */

.footer-payment-area {
  margin-top: 25px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.payment-card {
  padding: 7px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow:
    0 13px 28px rgba(2, 4, 27, 0.22);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.payment-card img {
  width: 265px;
  max-width: 100%;
  height: auto;

  display: block;
}

.payment-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(2, 4, 27, 0.29);
}

.authorized-badge {
  padding: 7px;

  border-radius: 11px;

  background: rgba(255, 255, 255, 0.05);

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.authorized-badge img {
  width: 82px;
  height: auto;

  display: block;
}

.authorized-badge:hover {
  background: rgba(255, 255, 255, 0.1);

  transform:
    translateY(-4px)
    rotate(3deg);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  background:
    linear-gradient(
      90deg,
      rgba(7, 12, 42, 0.38),
      rgba(18, 25, 67, 0.7),
      rgba(7, 12, 42, 0.38)
    );
}

.footer-bottom-container {
  position: relative;

  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

/* Back to top button */

.footer-back-top {
  position: absolute;
  right: 0;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 10px 23px rgba(2, 4, 27, 0.18);

  text-decoration: none;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.footer-back-top:hover {
  color: #15204c;
  background: #49dfd8;
  transform: translateY(-5px);
}

/* =====================================================
   OPTIONAL SCROLL REVEAL
===================================================== */

.footer-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(6px);

  transform:
    translateY(45px)
    scale(0.97);

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    filter 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translateY(0)
    scale(1);
}

.footer-column:nth-child(1) {
  transition-delay: 0.05s;
}

.footer-column:nth-child(2) {
  transition-delay: 0.16s;
}

.footer-column:nth-child(3) {
  transition-delay: 0.27s;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes footerMarkMove {
  0% {
    left: -45%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    left: 105%;
    opacity: 0;
  }
}

@keyframes footerMarkDot {
  0% {
    left: 0;
    opacity: 0.35;

    transform:
      translateY(-50%)
      scale(0.75);
  }

  50% {
    opacity: 1;

    transform:
      translateY(-50%)
      scale(1.25);
  }

  100% {
    left: calc(100% - 5px);
    opacity: 0.35;

    transform:
      translateY(-50%)
      scale(0.75);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 55px 45px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 650px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .footer-container {
    width: min(100% - 32px, 500px);
    padding: 65px 0 52px;

    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-heading h3,
  .footer-column h3 {
    font-size: 18px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-contact-item {
    font-size: 13px;
  }

  .footer-payment-area {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-card img {
    width: 245px;
  }

  .footer-bottom-container {
    width: min(100% - 32px, 500px);
    min-height: 105px;

    padding:
      24px
      58px
      24px
      0;

    justify-content: flex-start;
  }

  .footer-bottom p {
    text-align: left;
  }

  .footer-back-top {
    right: 0;
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    transition-delay: 0.07s;
  }
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {
  .footer-container {
    width: calc(100% - 26px);
  }

  .payment-card img {
    width: 220px;
  }

  .footer-contact-item {
    gap: 10px;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .footer-heading-line::before,
  .footer-heading-line::after {
    animation: none !important;
  }

  .footer-reveal {
    opacity: 1;
    visibility: visible;

    filter: none;
    transform: none;

    transition: none;
  }
}

/* =====================================================
   ABOUT PAGE HERO
   Fully scoped — does not affect existing header
===================================================== */

.about-page-main {
  width: 100%;
  overflow-x: hidden;
}

/* =====================================================
   MAIN ABOUT BANNER
===================================================== */

.about-hero-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  padding: 165px 24px 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 92% 35%,
      rgba(34, 201, 235, 0.25),
      transparent 18%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(91, 51, 222, 0.42),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 10%,
      rgba(34, 226, 218, 0.08),
      transparent 24%
    ),
    linear-gradient(
      120deg,
      #101866 0%,
      #242278 48%,
      #5424bc 100%
    );
}

/* =====================================================
   BACKGROUND GRID
===================================================== */

.about-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -6;

  opacity: 0.2;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  transform:
    perspective(750px)
    rotateX(65deg)
    scale(1.8)
    translateY(18%);

  transform-origin: center bottom;

  animation: aboutGridFlow 18s linear infinite;
}

/* =====================================================
   MOVING BACKGROUND GLOWS
===================================================== */

.about-hero-glow {
  position: absolute;
  z-index: -5;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(15px);
}

.about-glow-one {
  top: -180px;
  right: -80px;

  width: 460px;
  height: 460px;

  background:
    radial-gradient(
      circle,
      rgba(119, 55, 232, 0.42),
      transparent 70%
    );

  animation: aboutGlowOne 9s ease-in-out infinite alternate;
}

.about-glow-two {
  left: -160px;
  bottom: -230px;

  width: 480px;
  height: 480px;

  background:
    radial-gradient(
      circle,
      rgba(39, 222, 216, 0.15),
      transparent 70%
    );

  animation: aboutGlowTwo 11s ease-in-out infinite alternate;
}

.about-glow-three {
  top: 35%;
  right: 5%;

  width: 230px;
  height: 230px;

  background:
    radial-gradient(
      circle,
      rgba(33, 203, 237, 0.24),
      transparent 72%
    );

  animation: aboutGlowThree 7s ease-in-out infinite alternate;
}

/* =====================================================
   DIAGONAL LIGHT BEAMS
===================================================== */

.about-hero-beams {
  position: absolute;
  inset: 0;
  z-index: -4;

  overflow: hidden;
  pointer-events: none;
}

.about-hero-beams span {
  position: absolute;
  top: -25%;

  width: 145px;
  height: 150%;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent
    );

  transform: rotate(31deg);

  filter: blur(0.4px);
}

.about-hero-beams span:nth-child(1) {
  left: 38%;
  animation: aboutBeamMove 10s ease-in-out infinite alternate;
}

.about-hero-beams span:nth-child(2) {
  left: 49%;
  width: 75px;
  opacity: 0.55;
  animation: aboutBeamMove 13s ease-in-out infinite alternate-reverse;
}

/* =====================================================
   PARTICLES
===================================================== */

.about-hero-particles {
  position: absolute;
  inset: 0;
  z-index: -2;

  pointer-events: none;
}

.about-hero-particles span {
  position: absolute;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.62);

  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.5);

  animation: aboutParticleFloat 6s ease-in-out infinite;
}

.about-hero-particles span:nth-child(1) {
  left: 10%;
  top: 31%;
  animation-delay: -1s;
}

.about-hero-particles span:nth-child(2) {
  left: 15%;
  top: 73%;
  width: 4px;
  height: 4px;
  animation-delay: -4s;
}

.about-hero-particles span:nth-child(3) {
  left: 26%;
  top: 35%;
  animation-delay: -2.2s;
}

.about-hero-particles span:nth-child(4) {
  left: 39%;
  top: 19%;
  width: 3px;
  height: 3px;
  animation-delay: -3.4s;
}

.about-hero-particles span:nth-child(5) {
  left: 49%;
  top: 82%;
  animation-delay: -5s;
}

.about-hero-particles span:nth-child(6) {
  left: 61%;
  top: 28%;
  width: 4px;
  height: 4px;
  animation-delay: -1.7s;
}

.about-hero-particles span:nth-child(7) {
  left: 69%;
  top: 66%;
  animation-delay: -4.4s;
}

.about-hero-particles span:nth-child(8) {
  left: 76%;
  top: 38%;
  width: 3px;
  height: 3px;
  animation-delay: -2.8s;
}

.about-hero-particles span:nth-child(9) {
  left: 84%;
  top: 62%;
  animation-delay: -5.5s;
}

.about-hero-particles span:nth-child(10) {
  left: 91%;
  top: 32%;
  width: 4px;
  height: 4px;
  animation-delay: -1.4s;
}

.about-hero-particles span:nth-child(11) {
  left: 5%;
  top: 80%;
  width: 3px;
  height: 3px;
  background: #42e2dc;
  box-shadow: 0 0 14px #42e2dc;
  animation-delay: -3.2s;
}

.about-hero-particles span:nth-child(12) {
  left: 53%;
  top: 57%;
  width: 4px;
  height: 4px;
  background: #42e2dc;
  box-shadow: 0 0 14px #42e2dc;
  animation-delay: -4.8s;
}

/* =====================================================
   TECHNOLOGY BACKGROUND ILLUSTRATION
===================================================== */

.about-tech-visual {
  position: absolute;
  right: -45px;
  bottom: 20px;
  z-index: -3;

  width: 440px;
  height: 310px;

  opacity: 0.13;
  pointer-events: none;

  animation: aboutVisualFloat 7s ease-in-out infinite;
}

.about-device-phone {
  position: absolute;
  left: 20px;
  bottom: 15px;

  width: 112px;
  height: 230px;

  border: 7px solid rgba(255, 255, 255, 0.34);
  border-radius: 27px;

  transform: rotate(-4deg);

  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.about-phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;

  width: 25px;
  height: 3px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);

  transform: translateX(-50%);
}

.about-phone-screen {
  position: absolute;
  inset: 28px 9px 12px;

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.02)
    );
}

.about-device-keyboard {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 300px;
  height: 155px;
  padding: 16px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;

  border: 5px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px 18px 8px 8px;

  transform:
    perspective(600px)
    rotateX(52deg)
    rotateZ(-2deg);

  transform-origin: bottom;

  background: rgba(255, 255, 255, 0.03);
}

.about-device-keyboard span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;

  background: rgba(255, 255, 255, 0.04);

  animation: aboutKeyGlow 3s ease-in-out infinite;
}

.about-device-keyboard span:nth-child(2n) {
  animation-delay: -0.6s;
}

.about-device-keyboard span:nth-child(3n) {
  animation-delay: -1.2s;
}

.about-visual-ring {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.ring-one {
  width: 155px;
  height: 155px;
  right: 20px;
  top: -25px;

  animation: aboutRingSpin 15s linear infinite;
}

.ring-two {
  width: 105px;
  height: 105px;
  right: 45px;
  top: 0;

  border-style: dashed;

  animation: aboutRingSpinReverse 11s linear infinite;
}

/* =====================================================
   CONTENT
===================================================== */

.about-hero-container {
  position: relative;
  z-index: 5;

  width: min(1000px, 100%);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

/* Breadcrumb */

.about-breadcrumb {
  margin-bottom: 23px;
  padding: 9px 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 30px rgba(5, 7, 51, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.82);

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.about-breadcrumb a {
  color: #ffffff;
  text-decoration: none;

  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: #6af3eb;
}

.about-breadcrumb span[aria-current="page"] {
  color: #d9dbf4;
}

/* Title */

.about-hero-title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -6px;

  text-shadow:
    0 18px 45px rgba(5, 7, 51, 0.24);
}

.about-title-dot {
  display: inline-block;

  color: #9ffff7;

  animation: aboutDotPulse 2.2s ease-in-out infinite;
}

/* Description */

.about-hero-description {
  max-width: 720px;
  margin: 25px auto 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.7;
  font-weight: 600;
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.about-scroll-indicator {
  position: relative;

  width: 30px;
  height: 49px;
  margin-top: 47px;

  display: inline-flex;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;

  text-decoration: none;

  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.about-scroll-indicator:hover {
  border-color: #69f2ea;
  background: rgba(76, 229, 221, 0.08);

  transform: translateY(4px);
}

.about-scroll-wheel {
  width: 4px;
  height: 9px;
  margin-top: 11px;

  border-radius: 999px;

  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);

  animation: aboutScrollWheel 1.8s ease-in-out infinite;
}

/* =====================================================
   LOAD ANIMATION
===================================================== */

.about-hero-reveal {
  opacity: 0;
  filter: blur(8px);

  transform: translateY(34px);

  animation:
    aboutHeroReveal
    0.9s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}

.about-breadcrumb.about-hero-reveal {
  animation-delay: 0.15s;
}

.about-hero-title.about-hero-reveal {
  animation-delay: 0.28s;
}

.about-hero-description.about-hero-reveal {
  animation-delay: 0.42s;
}

.about-scroll-indicator.about-hero-reveal {
  animation-delay: 0.56s;
}

/* =====================================================
   NEXT SECTION PLACEHOLDER
===================================================== */

.about-content-placeholder {
  min-height: 250px;

  background:
    linear-gradient(
      180deg,
      #f7f8fc,
      #ffffff
    );
}

.about-content-placeholder-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes aboutGridFlow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 52px 52px;
  }
}

@keyframes aboutGlowOne {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-45px, 35px, 0)
      scale(1.1);
  }
}

@keyframes aboutGlowTwo {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(55px, -30px, 0)
      scale(1.08);
  }
}

@keyframes aboutGlowThree {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(0.95);
  }

  to {
    transform:
      translate3d(-20px, 18px, 0)
      scale(1.12);
  }
}

@keyframes aboutBeamMove {
  from {
    transform:
      rotate(31deg)
      translateX(-25px);
    opacity: 0.55;
  }

  to {
    transform:
      rotate(31deg)
      translateX(38px);
    opacity: 1;
  }
}

@keyframes aboutParticleFloat {
  0%,
  100% {
    transform: translateY(0) scale(0.85);
    opacity: 0.25;
  }

  50% {
    transform: translateY(-20px) scale(1.15);
    opacity: 1;
  }
}

@keyframes aboutVisualFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes aboutKeyGlow {
  0%,
  100% {
    background: rgba(255, 255, 255, 0.03);
  }

  50% {
    background: rgba(90, 237, 229, 0.15);
  }
}

@keyframes aboutRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutRingSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes aboutDotPulse {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

@keyframes aboutScrollWheel {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    transform: translateY(17px);
    opacity: 0;
  }
}

@keyframes aboutHeroReveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .about-hero-section {
    min-height: 570px;
    padding:
      150px
      22px
      75px;
  }

  .about-tech-visual {
    right: -100px;
    opacity: 0.1;
  }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 700px) {
  .about-hero-section {
    min-height: 570px;
    padding:
      125px
      17px
      65px;
  }

  .about-hero-title {
    font-size: clamp(58px, 18vw, 82px);
    letter-spacing: -4px;
  }

  .about-hero-description {
    max-width: 520px;
    margin-top: 20px;

    font-size: 15px;
    line-height: 1.7;
  }

  .about-breadcrumb {
    margin-bottom: 21px;
    padding: 8px 14px;

    font-size: 12px;
  }

  .about-scroll-indicator {
    margin-top: 38px;
  }

  .about-tech-visual {
    right: -180px;
    bottom: 30px;

    transform: scale(0.82);
    transform-origin: right bottom;

    opacity: 0.075;
  }

  .about-hero-beams span:nth-child(1) {
    left: 28%;
  }

  .about-hero-beams span:nth-child(2) {
    left: 50%;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {
  .about-hero-section {
    min-height: 550px;
    padding-top: 115px;
  }

  .about-hero-title {
    font-size: 59px;
    letter-spacing: -3px;
  }

  .about-hero-description {
    font-size: 14px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .about-hero-grid,
  .about-hero-glow,
  .about-hero-beams span,
  .about-hero-particles span,
  .about-tech-visual,
  .about-device-keyboard span,
  .about-visual-ring,
  .about-title-dot,
  .about-scroll-wheel {
    animation: none !important;
  }

  .about-hero-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

/* =====================================================
   ABOUT INTRO SECTION
===================================================== */

.about-intro-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(55, 224, 216, 0.08),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 22%,
      rgba(99, 64, 212, 0.07),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcff 55%,
      #f7f8fc 100%
    );
}

.about-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.28;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 124, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 124, 0.025) 1px,
      transparent 1px
    );

  background-size: 52px 52px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

/* Background glows */

.about-intro-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.glow-left {
  top: 80px;
  left: -150px;
  width: 350px;
  height: 350px;

  background:
    radial-gradient(
      circle,
      rgba(66, 224, 216, 0.12),
      transparent 70%
    );

  animation: aboutIntroGlowLeft 9s ease-in-out infinite alternate;
}

.glow-right {
  right: -160px;
  bottom: 20px;
  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(98, 61, 210, 0.11),
      transparent 70%
    );

  animation: aboutIntroGlowRight 11s ease-in-out infinite alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.about-intro-container {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.98fr)
    minmax(460px, 1.02fr);

  align-items: center;
  gap: 75px;
}

/* =====================================================
   CONTENT
===================================================== */

.about-intro-content {
  position: relative;
  max-width: 560px;
}

.about-intro-label {
  margin-bottom: 18px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d8;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.about-intro-label span {
  width: 24px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #36ddd5,
      #6f58df
    );

  box-shadow:
    0 0 10px rgba(54, 221, 213, 0.35);
}

.about-intro-content h2 {
  margin: 0 0 23px;

  color: #151c38;

  font-size: clamp(42px, 4.8vw, 67px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -3px;
}

.about-intro-text {
  position: relative;
  padding-left: 26px;
}

.about-intro-text::before {
  content: "";

  position: absolute;
  top: 4px;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #3bded6;

  box-shadow:
    0 0 0 7px rgba(59, 222, 214, 0.08),
    0 0 14px rgba(59, 222, 214, 0.42);

  animation: aboutIntroDotPulse 2.3s ease-in-out infinite;
}

.about-intro-text p {
  margin: 0 0 17px;

  color: #68738e;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.about-intro-media {
  position: relative;
  perspective: 1400px;
}

.about-intro-image-card {
  position: relative;
  z-index: 2;

  padding: 12px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(69, 80, 154, 0.08);
  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(245, 247, 255, 0.96)
    );

  box-shadow:
    0 34px 85px rgba(20, 24, 80, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);

  transform-style: preserve-3d;

  transition:
    transform 0.18s ease-out,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.about-intro-image-card:hover {
  border-color: rgba(62, 220, 212, 0.24);

  box-shadow:
    0 45px 105px rgba(20, 24, 80, 0.19),
    0 0 42px rgba(61, 220, 213, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.about-intro-image-mask {
  position: relative;

  overflow: hidden;

  border-radius: 25px;

  clip-path:
    inset(
      0 100% 0 0
      round 25px
    );

  transition:
    clip-path
    1.2s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.about-intro-media.is-visible
.about-intro-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 25px
    );
}

.about-intro-image-mask img {
  width: 100%;
  min-height: 445px;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.12);

  transition:
    transform
    1.35s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.about-intro-media.is-visible
.about-intro-image-mask img {
  transform: scale(1);
}

.about-intro-image-card:hover img {
  transform: scale(1.035);
}

/* Image shine */

.about-intro-shine {
  position: absolute;
  top: -25%;
  left: -80%;
  z-index: 5;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.58),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.about-intro-media.is-visible
.about-intro-shine {
  animation:
    aboutIntroSweep
    1.25s
    0.65s
    ease
    forwards;
}

/* Decorative orbits */

.about-intro-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.about-intro-orbit::before {
  content: "";

  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 16px rgba(70, 221, 214, 0.75);
}

.about-intro-orbit.orbit-one {
  top: -34px;
  right: -34px;

  width: 120px;
  height: 120px;

  animation: aboutIntroOrbit 13s linear infinite;
}

.about-intro-orbit.orbit-two {
  left: -38px;
  bottom: -38px;

  width: 155px;
  height: 155px;

  animation: aboutIntroOrbitReverse 17s linear infinite;
}

/* =====================================================
   EXPERIENCE CARD
===================================================== */

.about-experience-card {
  position: absolute;
  left: -25px;
  bottom: 35px;
  z-index: 5;

  min-width: 185px;
  padding: 20px 23px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  border: 1px solid rgba(75, 87, 170, 0.1);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 18px 50px rgba(20, 24, 80, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  animation:
    aboutExperienceFloat
    4.5s
    ease-in-out
    infinite;
}

.about-experience-card strong {
  color: #3d39a5;

  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.about-experience-card > span {
  color: #8991a7;

  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.about-intro-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(9px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-intro-content.about-intro-reveal {
  transform:
    translateX(-75px)
    translateY(35px);
}

.about-intro-media.about-intro-reveal {
  transform:
    translateX(80px)
    rotateY(-9deg)
    scale(0.92);
}

.about-intro-reveal.is-visible {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}

.about-intro-content.about-intro-reveal.is-visible {
  transform:
    translateX(0)
    translateY(0);
}

.about-intro-media.about-intro-reveal.is-visible {
  transform:
    translateX(0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes aboutIntroGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(35px, 24px, 0)
      scale(1.08);
  }
}

@keyframes aboutIntroGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-42px, -24px, 0)
      scale(1.1);
  }
}

@keyframes aboutIntroDotPulse {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes aboutIntroSweep {
  0% {
    left: -80%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes aboutIntroOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutIntroOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes aboutExperienceFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
  .about-intro-section {
    padding: 95px 22px 105px;
  }

  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-intro-content {
    max-width: 760px;
  }

  .about-intro-image-mask img {
    min-height: auto;
  }

  .about-intro-content.about-intro-reveal,
  .about-intro-media.about-intro-reveal {
    transform:
      translateY(65px)
      scale(0.95);
  }

  .about-intro-content.about-intro-reveal.is-visible,
  .about-intro-media.about-intro-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .about-intro-section {
    padding: 75px 16px 85px;
  }

  .about-intro-container {
    gap: 45px;
  }

  .about-intro-content h2 {
    margin-bottom: 20px;

    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .about-intro-text {
    padding-left: 20px;
  }

  .about-intro-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-intro-image-card {
    padding: 8px;
    border-radius: 23px;
  }

  .about-intro-image-mask {
    border-radius: 17px;
  }

  .about-intro-image-mask img {
    min-height: 310px;
  }

  .about-experience-card {
    left: 12px;
    bottom: 18px;

    min-width: 155px;
    padding: 15px 17px;

    border-radius: 15px;
  }

  .about-experience-card strong {
    font-size: 21px;
  }

  .about-experience-card > span {
    font-size: 10px;
  }

  .about-intro-orbit.orbit-one {
    width: 90px;
    height: 90px;
  }

  .about-intro-orbit.orbit-two {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 420px) {
  .about-intro-content h2 {
    font-size: 35px;
  }

  .about-intro-image-mask img {
    min-height: 280px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .about-intro-glow,
  .about-intro-text::before,
  .about-intro-shine,
  .about-intro-orbit,
  .about-experience-card {
    animation: none !important;
  }

  .about-intro-reveal,
  .about-intro-image-mask,
  .about-intro-image-mask img {
    opacity: 1;
    visibility: visible;

    filter: none;
    transform: none;
    clip-path: none;

    transition: none;
  }
}

/* =====================================================
   ABOUT INTRO SECTION — COMPLETE CSS
===================================================== */

.about-intro-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(55, 224, 216, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 22%,
      rgba(99, 64, 212, 0.08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbff 55%,
      #f5f7fc 100%
    );
}

/* Light grid */

.about-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(48, 59, 124, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 124, 0.026) 1px,
      transparent 1px
    );

  background-size: 52px 52px;
}

/* Decorative curved light */

.about-intro-section::after {
  content: "";
  position: absolute;
  top: -190px;
  left: 46%;
  z-index: -3;

  width: 540px;
  height: 540px;

  border: 1px solid rgba(91, 74, 205, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(91, 74, 205, 0.025),
    0 0 0 140px rgba(62, 220, 212, 0.018);

  animation: aboutSectionRing 18s linear infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.about-intro-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.about-glow-left {
  top: 60px;
  left: -160px;
  width: 370px;
  height: 370px;

  background:
    radial-gradient(
      circle,
      rgba(66, 224, 216, 0.14),
      transparent 70%
    );

  animation: aboutGlowLeft 9s ease-in-out infinite alternate;
}

.about-glow-right {
  right: -170px;
  bottom: 10px;
  width: 410px;
  height: 410px;

  background:
    radial-gradient(
      circle,
      rgba(98, 61, 210, 0.12),
      transparent 70%
    );

  animation: aboutGlowRight 11s ease-in-out infinite alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.about-intro-container {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.98fr)
    minmax(460px, 1.02fr);

  align-items: center;
  gap: 75px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.about-intro-content {
  position: relative;
  max-width: 570px;
}

.about-intro-label {
  margin-bottom: 18px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d8;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.about-intro-label span {
  position: relative;
  width: 26px;
  height: 2px;
  overflow: hidden;

  background: rgba(71, 221, 214, 0.18);
}

.about-intro-label span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #36ddd5,
      #6f58df
    );

  transform: translateX(-100%);
}

.about-scroll-reveal.is-visible
.about-intro-label span::before {
  animation: aboutLabelLine 0.8s ease 0.35s forwards;
}

.about-intro-title {
  margin: 0 0 24px;

  color: #151c38;

  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -3px;
}

.about-intro-text {
  position: relative;
  padding-left: 26px;
}

.about-intro-text::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #3bded6;

  box-shadow:
    0 0 0 7px rgba(59, 222, 214, 0.08),
    0 0 15px rgba(59, 222, 214, 0.45);

  animation: aboutTextDot 2.3s ease-in-out infinite;
}

.about-intro-text p {
  margin: 0 0 17px;

  color: #68738e;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.about-intro-media {
  position: relative;
  perspective: 1400px;
}

.about-intro-image-card {
  position: relative;
  z-index: 2;

  padding: 12px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(69, 80, 154, 0.09);
  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(245, 247, 255, 0.96)
    );

  box-shadow:
    0 34px 85px rgba(20, 24, 80, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.97);

  transform-style: preserve-3d;

  transition:
    transform 0.2s ease-out,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.about-intro-image-card:hover {
  border-color: rgba(62, 220, 212, 0.27);

  box-shadow:
    0 45px 105px rgba(20, 24, 80, 0.19),
    0 0 42px rgba(61, 220, 213, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.about-intro-image-mask {
  position: relative;
  overflow: hidden;
  border-radius: 25px;

  clip-path: inset(0 100% 0 0 round 25px);

  transition:
    clip-path 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-intro-media.is-visible
.about-intro-image-mask {
  clip-path: inset(0 0 0 0 round 25px);
}

.about-intro-image-mask img {
  width: 100%;
  min-height: 445px;
  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.14);

  transition:
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.about-intro-media.is-visible
.about-intro-image-mask img {
  transform: scale(1);
}

.about-intro-image-card:hover img {
  transform: scale(1.04);
}

/* Image shine */

.about-intro-shine {
  position: absolute;
  top: -25%;
  left: -85%;
  z-index: 5;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.62),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.about-intro-media.is-visible
.about-intro-shine {
  animation: aboutImageSweep 1.3s ease 0.75s forwards;
}

/* =====================================================
   EXPERIENCE CARD
===================================================== */

.about-experience-card {
  position: absolute;
  left: -25px;
  bottom: 35px;
  z-index: 8;

  min-width: 190px;
  padding: 20px 23px;

  display: flex;
  flex-direction: column;
  gap: 5px;

  border: 1px solid rgba(75, 87, 170, 0.11);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 18px 50px rgba(20, 24, 80, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  animation: aboutExperienceFloat 4.5s ease-in-out infinite;
}

.about-experience-card strong {
  color: #3d39a5;

  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.about-experience-card > span {
  color: #8991a7;

  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.about-year-counter.counter-complete {
  display: inline-block;
  animation: aboutCounterPop 0.5s ease;
}

/* =====================================================
   ORBITS
===================================================== */

.about-intro-orbit {
  position: absolute;
  z-index: 1;

  border: 1px solid rgba(94, 74, 204, 0.15);
  border-radius: 50%;

  pointer-events: none;
}

.about-intro-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 16px rgba(70, 221, 214, 0.78);
}

.about-orbit-one {
  top: -34px;
  right: -34px;

  width: 120px;
  height: 120px;

  animation: aboutOrbitSpin 13s linear infinite;
}

.about-orbit-two {
  left: -38px;
  bottom: -38px;

  width: 155px;
  height: 155px;

  animation: aboutOrbitSpinReverse 17s linear infinite;
}

/* =====================================================
   SCROLL ANIMATION
===================================================== */

/*
   Default visible fallback.
   JS fail hone par content hidden nahi rahega.
*/

.about-scroll-reveal {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

/*
   JavaScript script HTML par .about-js-ready add karega.
   Tab reveal items initial hidden state mein jayenge.
*/

.about-js-ready .about-scroll-reveal {
  opacity: 0;
  visibility: hidden;
  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-js-ready
.about-intro-content.about-scroll-reveal {
  transform:
    translate3d(-85px, 45px, 0)
    scale(0.94);
}

.about-js-ready
.about-intro-media.about-scroll-reveal {
  transform:
    translate3d(90px, 45px, 0)
    rotateY(-10deg)
    scale(0.9);
}

.about-js-ready
.about-scroll-reveal.is-visible {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}

.about-js-ready
.about-intro-content.about-scroll-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.about-js-ready
.about-intro-media.about-scroll-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* Text children stagger */

.about-js-ready
.about-intro-content
.about-intro-label,
.about-js-ready
.about-intro-content
.about-intro-title,
.about-js-ready
.about-intro-content
.about-intro-text {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-js-ready
.about-intro-content.is-visible
.about-intro-label,
.about-js-ready
.about-intro-content.is-visible
.about-intro-title,
.about-js-ready
.about-intro-content.is-visible
.about-intro-text {
  opacity: 1;
  transform: translateY(0);
}

.about-js-ready
.about-intro-content.is-visible
.about-intro-label {
  transition-delay: 0.14s;
}

.about-js-ready
.about-intro-content.is-visible
.about-intro-title {
  transition-delay: 0.27s;
}

.about-js-ready
.about-intro-content.is-visible
.about-intro-text {
  transition-delay: 0.42s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes aboutSectionRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutGlowLeft {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(38px, 25px, 0) scale(1.09);
  }
}

@keyframes aboutGlowRight {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-44px, -27px, 0) scale(1.1);
  }
}

@keyframes aboutLabelLine {
  to {
    transform: translateX(0);
  }
}

@keyframes aboutTextDot {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes aboutImageSweep {
  0% {
    left: -85%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes aboutExperienceFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes aboutOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutOrbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes aboutCounterPop {
  0% {
    transform: scale(1);
  }

  55% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
  .about-intro-section {
    padding: 95px 22px 105px;
  }

  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-intro-content {
    max-width: 760px;
  }

  .about-intro-image-mask img {
    min-height: auto;
  }

  .about-js-ready
  .about-intro-content.about-scroll-reveal,
  .about-js-ready
  .about-intro-media.about-scroll-reveal {
    transform:
      translateY(65px)
      scale(0.94);
  }

  .about-js-ready
  .about-intro-content.about-scroll-reveal.is-visible,
  .about-js-ready
  .about-intro-media.about-scroll-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .about-intro-section {
    padding: 75px 16px 85px;
  }

  .about-intro-container {
    gap: 45px;
  }

  .about-intro-title {
    margin-bottom: 20px;

    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .about-intro-text {
    padding-left: 20px;
  }

  .about-intro-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-intro-image-card {
    padding: 8px;
    border-radius: 23px;
  }

  .about-intro-image-mask {
    border-radius: 17px;
  }

  .about-intro-image-mask img {
    min-height: 310px;
  }

  .about-experience-card {
    left: 12px;
    bottom: 18px;

    min-width: 158px;
    padding: 15px 17px;

    border-radius: 15px;
  }

  .about-experience-card strong {
    font-size: 21px;
  }

  .about-experience-card > span {
    font-size: 10px;
  }

  .about-orbit-one {
    width: 88px;
    height: 88px;
  }

  .about-orbit-two {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 420px) {
  .about-intro-title {
    font-size: 35px;
  }

  .about-intro-image-mask img {
    min-height: 280px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .about-intro-glow,
  .about-intro-section::after,
  .about-intro-text::before,
  .about-intro-shine,
  .about-intro-orbit,
  .about-experience-card {
    animation: none !important;
  }

  .about-js-ready .about-scroll-reveal,
  .about-js-ready .about-intro-content > *,
  .about-intro-image-mask,
  .about-intro-image-mask img {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
    clip-path: none !important;

    transition: none !important;
  }
}

/* =====================================================
   ROYAL CARE ABOUT INTRO SECTION
   All classes scoped with rc-about
===================================================== */

.rc-about-section {
  position: relative;
  width: 100%;
  padding: 120px 24px 130px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(56, 224, 216, 0.1),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 22%,
      rgba(100, 62, 211, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbff 55%,
      #f4f6fc 100%
    );
}

/* Light grid */

.rc-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.34;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(50, 60, 126, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(50, 60, 126, 0.026) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 17%,
      #000 84%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 17%,
      #000 84%,
      transparent
    );
}

/* Large decorative ring */

.rc-about-section::after {
  content: "";
  position: absolute;
  top: -270px;
  right: 7%;
  z-index: -4;

  width: 570px;
  height: 570px;

  border: 1px solid rgba(88, 70, 200, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(88, 70, 200, 0.024),
    0 0 0 140px rgba(57, 220, 213, 0.017);

  animation: rcAboutLargeRing 24s linear infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-about-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(12px);
}

.rc-about-glow-left {
  top: 65px;
  left: -170px;

  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(57, 223, 215, 0.15),
      transparent 70%
    );

  animation:
    rcAboutGlowLeft
    9s
    ease-in-out
    infinite
    alternate;
}

.rc-about-glow-right {
  right: -180px;
  bottom: -30px;

  width: 440px;
  height: 440px;

  background:
    radial-gradient(
      circle,
      rgba(101, 61, 211, 0.13),
      transparent 70%
    );

  animation:
    rcAboutGlowRight
    11s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   FLOATING PARTICLES
===================================================== */

.rc-about-particles {
  position: absolute;
  inset: 0;
  z-index: -2;

  pointer-events: none;
}

.rc-about-particles span {
  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: rgba(61, 221, 214, 0.7);

  box-shadow:
    0 0 12px rgba(61, 221, 214, 0.65);

  animation:
    rcAboutParticleFloat
    6s
    ease-in-out
    infinite;
}

.rc-about-particles span:nth-child(1) {
  top: 18%;
  left: 8%;
  animation-delay: -1s;
}

.rc-about-particles span:nth-child(2) {
  top: 70%;
  left: 16%;
  width: 4px;
  height: 4px;
  animation-delay: -3.5s;
}

.rc-about-particles span:nth-child(3) {
  top: 27%;
  left: 48%;
  width: 4px;
  height: 4px;
  animation-delay: -2.2s;
}

.rc-about-particles span:nth-child(4) {
  top: 79%;
  left: 58%;
  animation-delay: -4.6s;
}

.rc-about-particles span:nth-child(5) {
  top: 24%;
  right: 10%;
  width: 5px;
  height: 5px;
  animation-delay: -2.8s;
}

.rc-about-particles span:nth-child(6) {
  right: 5%;
  bottom: 18%;
  width: 4px;
  height: 4px;
  animation-delay: -5s;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rc-about-container {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.98fr)
    minmax(450px, 1.02fr);

  align-items: center;
  gap: 78px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.rc-about-content {
  position: relative;
  max-width: 570px;
}

.rc-about-label {
  margin-bottom: 19px;

  display: inline-flex;
  align-items: center;
  gap: 11px;

  color: #6555d2;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-about-label-line {
  position: relative;

  width: 28px;
  height: 2px;

  display: inline-block;
  overflow: hidden;

  background: rgba(66, 221, 214, 0.18);
}

.rc-about-label-line::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #7359de
    );

  transform: translateX(-110%);
}

.rc-about-content.is-visible
.rc-about-label-line::before {
  animation:
    rcAboutLabelLine
    0.8s
    0.25s
    ease
    forwards;
}

.rc-about-title {
  margin: 0 0 25px;

  color: #151c38;

  font-size: clamp(42px, 4.7vw, 44px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -3px;
}

.rc-about-copy {
  position: relative;
  padding-left: 27px;
}

/* Animated vertical accent */

.rc-about-copy::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #3bded6;

  box-shadow:
    0 0 0 7px rgba(59, 222, 214, 0.08),
    0 0 16px rgba(59, 222, 214, 0.48);

  animation:
    rcAboutDotPulse
    2.3s
    ease-in-out
    infinite;
}

.rc-about-copy::after {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 7px;
  left: 3px;

  width: 1px;

  background:
    linear-gradient(
      to bottom,
      rgba(59, 222, 214, 0.48),
      rgba(101, 82, 210, 0.16),
      transparent
    );
}

.rc-about-copy p {
  margin: 0 0 18px;

  color: #68738e;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.rc-about-copy p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   RIGHT IMAGE AREA
===================================================== */

.rc-about-media {
  position: relative;
  perspective: 1400px;
}

.rc-about-image-frame {
  position: relative;
  z-index: 3;

  padding: 12px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(68, 80, 154, 0.09);
  border-radius: 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(244, 247, 255, 0.96)
    );

  box-shadow:
    0 35px 86px rgba(20, 24, 80, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transform-style: preserve-3d;

  transition:
    transform 0.18s ease-out,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-about-image-frame:hover {
  border-color: rgba(61, 220, 212, 0.28);

  box-shadow:
    0 46px 108px rgba(20, 24, 80, 0.2),
    0 0 42px rgba(61, 220, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.rc-about-image-mask {
  position: relative;

  overflow: hidden;

  border-radius: 25px;

  clip-path:
    inset(
      0 100% 0 0
      round 25px
    );

  transition:
    clip-path
    1.3s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-about-media.is-visible
.rc-about-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 25px
    );
}

.rc-about-image-mask img {
  width: 100%;
  min-height: 445px;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.14);

  filter:
    saturate(0.94)
    contrast(0.98);

  transition:
    transform
    1.4s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter
    0.5s
    ease;
}

.rc-about-media.is-visible
.rc-about-image-mask img {
  transform: scale(1);
}

.rc-about-image-frame:hover img {
  transform: scale(1.04);

  filter:
    saturate(1)
    contrast(1);
}

/* Image light sweep */

.rc-about-image-shine {
  position: absolute;
  top: -25%;
  left: -85%;
  z-index: 7;

  width: 43%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.62),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.rc-about-media.is-visible
.rc-about-image-shine {
  animation:
    rcAboutImageSweep
    1.3s
    0.75s
    ease
    forwards;
}

/* Decorative corners */

.rc-about-corner {
  position: absolute;
  z-index: 8;

  width: 38px;
  height: 38px;

  pointer-events: none;
}

.rc-corner-top {
  top: 6px;
  right: 6px;

  border-top: 2px solid #4bddda;
  border-right: 2px solid #4bddda;

  border-radius: 0 16px 0 0;
}

.rc-corner-bottom {
  left: 6px;
  bottom: 6px;

  border-left: 2px solid #6954d8;
  border-bottom: 2px solid #6954d8;

  border-radius: 0 0 0 16px;
}

/* =====================================================
   EXPERIENCE CARD
===================================================== */

.rc-about-experience {
  position: absolute;
  left: -28px;
  bottom: 35px;
  z-index: 9;

  min-width: 190px;
  padding: 20px 23px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  border: 1px solid rgba(75, 87, 170, 0.11);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);

  box-shadow:
    0 18px 50px rgba(20, 24, 80, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.99);

  animation:
    rcAboutExperienceFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-about-experience strong {
  color: #3d39a5;

  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.rc-about-experience > span {
  color: #8991a7;

  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.rc-about-counter.is-complete {
  display: inline-block;

  animation:
    rcAboutCounterPop
    0.5s
    ease;
}

/* =====================================================
   ORBITS
===================================================== */

.rc-about-orbit {
  position: absolute;
  z-index: 1;

  border: 1px solid rgba(94, 74, 204, 0.15);
  border-radius: 50%;

  pointer-events: none;
}

.rc-about-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.82);
}

.rc-about-orbit-one {
  top: -38px;
  right: -38px;

  width: 125px;
  height: 125px;

  animation:
    rcAboutOrbitSpin
    13s
    linear
    infinite;
}

.rc-about-orbit-two {
  left: -42px;
  bottom: -42px;

  width: 160px;
  height: 160px;

  border-style: dashed;

  animation:
    rcAboutOrbitSpinReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SAFE SCROLL REVEAL
===================================================== */

/*
  JavaScript fail hone par section visible rahega.
*/

.rc-about-reveal {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

/*
  JavaScript HTML element par .rc-about-js class add karega.
*/

.rc-about-js .rc-about-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(9px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-about-js
.rc-about-content.rc-about-reveal {
  transform:
    translate3d(-90px, 50px, 0)
    scale(0.93);
}

.rc-about-js
.rc-about-media.rc-about-reveal {
  transform:
    translate3d(95px, 50px, 0)
    rotateY(-11deg)
    scale(0.9);
}

.rc-about-js
.rc-about-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-about-js
.rc-about-content.rc-about-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rc-about-js
.rc-about-media.rc-about-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   CONTENT STAGGER
===================================================== */

.rc-about-js
.rc-about-content
.rc-about-stagger {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-about-js
.rc-about-content.is-visible
.rc-about-stagger {
  opacity: 1;
  transform: translateY(0);
}

.rc-about-js
.rc-about-content.is-visible
.rc-about-stagger:nth-child(1) {
  transition-delay: 0.15s;
}

.rc-about-js
.rc-about-content.is-visible
.rc-about-stagger:nth-child(2) {
  transition-delay: 0.3s;
}

.rc-about-js
.rc-about-content.is-visible
.rc-about-stagger:nth-child(3) {
  transition-delay: 0.46s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcAboutLargeRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcAboutGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(40px, 28px, 0)
      scale(1.1);
  }
}

@keyframes rcAboutGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -29px, 0)
      scale(1.1);
  }
}

@keyframes rcAboutParticleFloat {
  0%,
  100% {
    opacity: 0.25;

    transform:
      translateY(0)
      scale(0.85);
  }

  50% {
    opacity: 1;

    transform:
      translateY(-20px)
      scale(1.15);
  }
}

@keyframes rcAboutLabelLine {
  to {
    transform: translateX(0);
  }
}

@keyframes rcAboutDotPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.26);
  }
}

@keyframes rcAboutImageSweep {
  0% {
    left: -85%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes rcAboutExperienceFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcAboutOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcAboutOrbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes rcAboutCounterPop {
  0% {
    transform: scale(1);
  }

  55% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
  .rc-about-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rc-about-content {
    max-width: 760px;
  }

  .rc-about-image-mask img {
    min-height: auto;
  }

  .rc-about-js
  .rc-about-content.rc-about-reveal,
  .rc-about-js
  .rc-about-media.rc-about-reveal {
    transform:
      translateY(65px)
      scale(0.94);
  }

  .rc-about-js
  .rc-about-content.rc-about-reveal.is-visible,
  .rc-about-js
  .rc-about-media.rc-about-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-about-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-about-container {
    gap: 46px;
  }

  .rc-about-title {
    margin-bottom: 21px;

    font-size: 39px;
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .rc-about-copy {
    padding-left: 20px;
  }

  .rc-about-copy p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rc-about-image-frame {
    padding: 8px;
    border-radius: 23px;
  }

  .rc-about-image-mask {
    border-radius: 17px;
  }

  .rc-about-image-mask img {
    min-height: 310px;
  }

  .rc-about-experience {
    left: 12px;
    bottom: 18px;

    min-width: 158px;
    padding: 15px 17px;

    border-radius: 15px;
  }

  .rc-about-experience strong {
    font-size: 21px;
  }

  .rc-about-experience > span {
    font-size: 10px;
  }

  .rc-about-orbit-one {
    width: 88px;
    height: 88px;
  }

  .rc-about-orbit-two {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 420px) {
  .rc-about-title {
    font-size: 34px;
  }

  .rc-about-image-mask img {
    min-height: 280px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-about-section::after,
  .rc-about-glow,
  .rc-about-particles span,
  .rc-about-copy::before,
  .rc-about-image-shine,
  .rc-about-experience,
  .rc-about-orbit {
    animation: none !important;
  }

  .rc-about-js .rc-about-reveal,
  .rc-about-js .rc-about-stagger,
  .rc-about-image-mask,
  .rc-about-image-mask img {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
    clip-path: none !important;

    transition: none !important;
  }
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */

.rc-reasons-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 25%,
      rgba(57, 221, 214, 0.08),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 75%,
      rgba(98, 66, 207, 0.07),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcff 100%
    );
}

/* Soft grid */

.rc-reasons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.27;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(51, 61, 121, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(51, 61, 121, 0.025) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

/* Decorative circular shape */

.rc-reasons-section::after {
  content: "";
  position: absolute;
  right: -170px;
  top: -180px;
  z-index: -4;

  width: 500px;
  height: 500px;

  border: 1px solid rgba(99, 79, 203, 0.06);
  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(99, 79, 203, 0.02),
    0 0 0 135px rgba(57, 221, 214, 0.012);

  animation:
    rcReasonsRingRotate
    24s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-reasons-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(12px);
}

.rc-reasons-glow-left {
  top: 100px;
  left: -160px;

  width: 360px;
  height: 360px;

  background:
    radial-gradient(
      circle,
      rgba(53, 221, 214, 0.12),
      transparent 70%
    );

  animation:
    rcReasonsGlowLeft
    9s
    ease-in-out
    infinite
    alternate;
}

.rc-reasons-glow-right {
  right: -150px;
  bottom: -170px;

  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(99, 63, 209, 0.1),
      transparent 70%
    );

  animation:
    rcReasonsGlowRight
    11s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rc-reasons-container {
  position: relative;
  z-index: 2;

  width: min(1280px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(470px, 1fr)
    minmax(0, 0.98fr);

  align-items: center;
  gap: 68px;
}

/* =====================================================
   LEFT IMAGE
===================================================== */

.rc-reasons-media {
  position: relative;

  perspective: 1400px;
}

.rc-reasons-image-frame {
  position: relative;
  z-index: 3;

  padding: 10px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(61, 75, 145, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 247, 255, 0.96)
    );

  box-shadow:
    0 30px 75px rgba(19, 25, 73, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.rc-reasons-image-frame:hover {
  transform:
    translateY(-8px)
    rotateX(1deg)
    rotateY(-1deg);

  border-color: rgba(55, 218, 211, 0.25);

  box-shadow:
    0 42px 95px rgba(19, 25, 73, 0.18),
    0 0 35px rgba(54, 219, 212, 0.08);
}

.rc-reasons-image-mask {
  position: relative;

  overflow: hidden;

  border-radius: 23px;

  /* clip-path:
    inset(
      0 0 100% 0
      round 23px
    ); */

  transition:
    clip-path
    1.25s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-reasons-media.is-visible
.rc-reasons-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 23px
    );
}

.rc-reasons-image-mask img {
  width: 100%;
  min-height: 425px;

  display: block;

  object-fit: cover;
  object-position: center;

  transform:
    scale(1.13)
    translateY(15px);

  filter:
    saturate(0.94)
    contrast(0.98);

  transition:
    transform
    1.4s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter
    0.5s
    ease;
}

.rc-reasons-media.is-visible
.rc-reasons-image-mask img {
  transform:
    scale(1)
    translateY(0);
}

.rc-reasons-image-frame:hover img {
  transform: scale(1.04);

  filter:
    saturate(1)
    contrast(1);
}

/* Image shine */

.rc-reasons-image-shine {
  position: absolute;
  top: -25%;
  left: -80%;
  z-index: 6;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.58),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.rc-reasons-media.is-visible
.rc-reasons-image-shine {
  animation:
    rcReasonsImageSweep
    1.3s
    0.7s
    ease
    forwards;
}

/* Decorative corners */

.rc-reasons-image-corner {
  position: absolute;
  z-index: 7;

  width: 40px;
  height: 40px;

  pointer-events: none;
}

.rc-reasons-corner-one {
  top: 6px;
  left: 6px;

  border-top: 2px solid #43ddd6;
  border-left: 2px solid #43ddd6;

  border-radius: 16px 0 0 0;
}

.rc-reasons-corner-two {
  right: 6px;
  bottom: 6px;

  border-right: 2px solid #6852d2;
  border-bottom: 2px solid #6852d2;

  border-radius: 0 0 16px 0;
}

/* =====================================================
   FLOATING SUPPORT CARD
===================================================== */

.rc-reasons-floating-card {
  position: absolute;
  right: -24px;
  bottom: 30px;
  z-index: 9;

  min-width: 230px;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 1px solid rgba(67, 79, 147, 0.1);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 17px 44px rgba(19, 25, 73, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  animation:
    rcReasonsCardFloat
    4.3s
    ease-in-out
    infinite;
}

.rc-reasons-card-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;
  flex: 0 0 45px;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #45ddd6,
      #6651d3
    );

  box-shadow:
    0 10px 24px rgba(69, 83, 202, 0.22);

  font-size: 18px;
}

.rc-reasons-floating-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-reasons-floating-card strong {
  color: #1d2854;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.rc-reasons-floating-card small {
  color: #7b849c;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.rc-reasons-content {
  position: relative;
}

.rc-reasons-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d8;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-reasons-label span {
  width: 27px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3adfd7,
      #7157da
    );

  box-shadow:
    0 0 10px rgba(58, 223, 215, 0.32);
}

.rc-reasons-title {
  margin: 0 0 27px;

  color: #202858;

  font-size: clamp(39px, 4.1vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -2.4px;
}

/* =====================================================
   REASONS LIST
===================================================== */

.rc-reasons-list {
  margin: 0;
  padding: 0;

  display: grid;
  gap: 14px;

  list-style: none;
}

.rc-reasons-item {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 4px 0;
}

.rc-reasons-check {
  width: 22px;
  height: 22px;

  margin-top: 2px;

  display: grid;
  place-items: center;
  flex: 0 0 22px;

  border-radius: 50%;

  color: #6954d2;

  background:
    linear-gradient(
      145deg,
      rgba(101, 82, 210, 0.1),
      rgba(55, 220, 213, 0.1)
    );

  font-size: 11px;

  transform: scale(0) rotate(-50deg);
  opacity: 0;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.rc-reasons-content.is-visible
.rc-reasons-check {
  transform: scale(1) rotate(0);
  opacity: 1;
}

.rc-reasons-item:hover
.rc-reasons-check {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #43ddd6,
      #6651d3
    );

  transform: scale(1.08);
}

.rc-reasons-item p {
  margin: 0;

  color: #3f4964;

  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

/* =====================================================
   SAFE REVEAL BASE
===================================================== */

.rc-reasons-reveal {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

/*
  JavaScript HTML par .rc-reasons-js class add karega.
*/

.rc-reasons-js
.rc-reasons-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(9px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-reasons-js
.rc-reasons-media.rc-reasons-reveal {
  transform:
    translate3d(-95px, 55px, 0)
    rotateY(10deg)
    scale(0.91);
}

.rc-reasons-js
.rc-reasons-content.rc-reasons-reveal {
  transform:
    translate3d(90px, 45px, 0)
    scale(0.94);
}

.rc-reasons-js
.rc-reasons-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-reasons-js
.rc-reasons-media.rc-reasons-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

.rc-reasons-js
.rc-reasons-content.rc-reasons-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* =====================================================
   STAGGER CHILD ANIMATION
===================================================== */

.rc-reasons-js
.rc-reasons-content
.rc-reasons-stagger {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-stagger {
  opacity: 1;
  transform: translateY(0);
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-label {
  transition-delay: 0.12s;
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-title {
  transition-delay: 0.24s;
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(1) {
  transition-delay: 0.36s;
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(2) {
  transition-delay: 0.46s;
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(3) {
  transition-delay: 0.56s;
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(4) {
  transition-delay: 0.66s;
}

.rc-reasons-js
.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(5) {
  transition-delay: 0.76s;
}

.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(1)
.rc-reasons-check {
  transition-delay: 0.42s;
}

.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(2)
.rc-reasons-check {
  transition-delay: 0.52s;
}

.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(3)
.rc-reasons-check {
  transition-delay: 0.62s;
}

.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(4)
.rc-reasons-check {
  transition-delay: 0.72s;
}

.rc-reasons-content.is-visible
.rc-reasons-item:nth-child(5)
.rc-reasons-check {
  transition-delay: 0.82s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcReasonsRingRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcReasonsGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(40px, 24px, 0)
      scale(1.08);
  }
}

@keyframes rcReasonsGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-44px, -28px, 0)
      scale(1.1);
  }
}

@keyframes rcReasonsImageSweep {
  0% {
    left: -80%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes rcReasonsCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-reasons-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-reasons-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .rc-reasons-content {
    max-width: 780px;
  }

  .rc-reasons-image-mask img {
    min-height: auto;
  }

  .rc-reasons-js
  .rc-reasons-media.rc-reasons-reveal,
  .rc-reasons-js
  .rc-reasons-content.rc-reasons-reveal {
    transform:
      translateY(65px)
      scale(0.94);
  }

  .rc-reasons-js
  .rc-reasons-media.rc-reasons-reveal.is-visible,
  .rc-reasons-js
  .rc-reasons-content.rc-reasons-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-reasons-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-reasons-container {
    gap: 48px;
  }

  .rc-reasons-image-frame {
    padding: 7px;
    border-radius: 23px;
  }

  .rc-reasons-image-mask {
    border-radius: 17px;
  }

  .rc-reasons-image-mask img {
    min-height: 315px;
  }

  .rc-reasons-floating-card {
    right: 12px;
    bottom: 15px;

    min-width: 195px;
    padding: 13px 14px;
  }

  .rc-reasons-card-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .rc-reasons-title {
    margin-bottom: 23px;

    font-size: 36px;
    line-height: 1.14;
    letter-spacing: -1.7px;
  }

  .rc-reasons-title br {
    display: none;
  }

  .rc-reasons-item {
    gap: 10px;
  }

  .rc-reasons-item p {
    font-size: 14px;
    line-height: 1.75;
  }

  .rc-reasons-check {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

@media (max-width: 420px) {
  .rc-reasons-title {
    font-size: 32px;
  }

  .rc-reasons-image-mask img {
    min-height: 280px;
  }

  .rc-reasons-floating-card {
    position: relative;
    right: auto;
    bottom: auto;

    width: calc(100% - 24px);
    margin: -28px auto 0;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-reasons-section::after,
  .rc-reasons-glow,
  .rc-reasons-image-shine,
  .rc-reasons-floating-card {
    animation: none !important;
  }

  .rc-reasons-js .rc-reasons-reveal,
  .rc-reasons-js .rc-reasons-stagger,
  .rc-reasons-image-mask,
  .rc-reasons-image-mask img,
  .rc-reasons-check {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
    clip-path: none !important;

    transition: none !important;
  }
}


/*--------------------service page-------------------------------------------------*/
/* =====================================================
   ECOMMERCE PRICING SECTION
===================================================== */

.rc-pricing-section {
  position: relative;
  width: 100%;
  padding: 110px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(58, 222, 215, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(99, 65, 210, 0.09),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #f8f9fd 0%,
      #ffffff 52%,
      #f5f7fc 100%
    );
}

/* Background grid */

.rc-pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(54, 65, 122, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(54, 65, 122, 0.025) 1px,
      transparent 1px
    );

  background-size: 54px 54px;
}

/* Large ring */

.rc-pricing-section::after {
  content: "";
  position: absolute;
  top: -300px;
  right: -170px;
  z-index: -3;

  width: 620px;
  height: 620px;

  border: 1px solid rgba(98, 78, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 75px rgba(98, 78, 204, 0.023),
    0 0 0 145px rgba(60, 220, 213, 0.016);

  animation:
    rcPricingRingRotate
    25s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-pricing-glow {
  position: absolute;
  z-index: -2;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-pricing-glow-left {
  top: 50px;
  left: -170px;

  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 215, 0.13),
      transparent 70%
    );

  animation:
    rcPricingGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-pricing-glow-right {
  right: -190px;
  bottom: -150px;

  width: 440px;
  height: 440px;

  background:
    radial-gradient(
      circle,
      rgba(102, 63, 210, 0.11),
      transparent 70%
    );

  animation:
    rcPricingGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rc-pricing-container {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;
}

/* =====================================================
   HEADING
===================================================== */

.rc-pricing-heading {
  max-width: 780px;
  margin: 0 auto 58px;

  text-align: center;
}

.rc-pricing-label {
  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d8;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-pricing-label span {
  width: 28px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #7057db
    );

  box-shadow:
    0 0 10px rgba(59, 222, 214, 0.32);
}

.rc-pricing-heading h2 {
  margin: 0;

  color: #17203f;

  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2.8px;
}

.rc-pricing-heading p {
  max-width: 660px;
  margin: 20px auto 0;

  color: #6f7890;

  font-size: 15px;
  line-height: 1.75;
}

/* =====================================================
   PRICING GRID
===================================================== */

.rc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  align-items: stretch;
  gap: 24px;
}

/* =====================================================
   PRICING CARD
===================================================== */

.rc-price-card {
  position: relative;

  min-height: 100%;
  padding: 38px 25px 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(58, 71, 134, 0.09);
  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 25px 65px rgba(18, 26, 72, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.rc-price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(62, 220, 213, 0.11),
      transparent 42%
    );

  transition: opacity 0.4s ease;
}

.rc-price-card:hover {
  transform:
    translateY(-16px)
    scale(1.015);

  border-color: rgba(64, 216, 210, 0.25);

  box-shadow:
    0 38px 90px rgba(18, 26, 72, 0.18),
    0 0 35px rgba(62, 220, 213, 0.08);
}

.rc-price-card:hover::before {
  opacity: 1;
}

/* Top animated line */

.rc-card-top-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3ddfd7,
      #6b54d4
    );

  transform: translateX(-50%);

  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-price-card:hover .rc-card-top-line,
.rc-price-card.is-visible .rc-card-top-line {
  width: 78%;
}

/* =====================================================
   FEATURED CARD
===================================================== */

.rc-price-card-featured {
  z-index: 2;

  transform: translateY(-14px);

  border-color: rgba(89, 75, 200, 0.18);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 1),
      rgba(245, 246, 255, 0.98)
    );

  box-shadow:
    0 34px 85px rgba(44, 43, 122, 0.16),
    0 0 0 1px rgba(91, 76, 203, 0.03);
}

.rc-price-card-featured:hover {
  transform:
    translateY(-26px)
    scale(1.02);
}

.rc-popular-badge {
  position: absolute;
  top: 18px;
  right: -35px;

  min-width: 145px;
  padding: 7px 18px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #45ddd6,
      #6852d2
    );

  box-shadow:
    0 8px 22px rgba(76, 76, 187, 0.23);

  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;

  transform: rotate(40deg);
}

/* =====================================================
   ICON
===================================================== */

.rc-price-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(74, 83, 152, 0.09);
  border-radius: 24px;

  color: #ffffff;

  font-size: 35px;

  box-shadow:
    0 16px 35px rgba(36, 47, 116, 0.15);

  animation:
    rcPriceIconFloat
    4.5s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-price-card:nth-child(2) .rc-price-icon {
  animation-delay: -1.3s;
}

.rc-price-card:nth-child(3) .rc-price-icon {
  animation-delay: -2.4s;
}

.rc-price-icon-small {
  background:
    linear-gradient(
      145deg,
      #151c38,
      #3f4b74
    );
}

.rc-price-icon-medium {
  background:
    linear-gradient(
      145deg,
      #39d7cf,
      #5f52cc
    );
}

.rc-price-icon-large {
  background:
    linear-gradient(
      145deg,
      #167ec1,
      #36bf7a
    );
}

.rc-price-card:hover .rc-price-icon {
  transform:
    translateY(-7px)
    rotate(-4deg)
    scale(1.06);

  box-shadow:
    0 22px 45px rgba(45, 54, 130, 0.22);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.rc-price-card h3 {
  margin: 0;

  color: #19213f;

  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.rc-price-value {
  min-height: 48px;
  margin: 12px 0 15px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  color: #16ae3d;

  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.rc-currency {
  margin-top: 3px;
  margin-right: 2px;

  font-size: 20px;
}

.rc-price-value sup {
  margin: 3px 0 0 2px;

  font-size: 14px;
}

.rc-price-description {
  min-height: 76px;
  margin: 0 0 20px;

  color: #667088;

  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

/* =====================================================
   FEATURE LIST
===================================================== */

.rc-price-features {
  margin: 0 0 24px;
  padding: 0;

  display: grid;
  gap: 0;
  flex-grow: 1;

  list-style: none;
}

.rc-price-features li {
  padding: 10px 0;

  display: flex;
  align-items: flex-start;
  gap: 9px;

  border-bottom: 1px solid rgba(53, 66, 117, 0.09);

  color: #47516a;

  font-size: 12px;
  line-height: 1.5;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.rc-price-features li:last-child {
  border-bottom: 0;
}

.rc-price-features li i {
  margin-top: 3px;

  color: #6954d3;

  font-size: 11px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.rc-price-features li:hover {
  color: #17203f;

  transform: translateX(5px);
}

.rc-price-features li:hover i {
  color: #31cfc7;

  transform: scale(1.18);
}

/* =====================================================
   BUTTON
===================================================== */

.rc-price-button {
  position: relative;

  min-height: 48px;
  padding: 13px 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow: hidden;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 28px rgba(66, 76, 175, 0.19);

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-price-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.42),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rc-price-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 35px rgba(66, 76, 175, 0.27);
}

.rc-price-button:hover::before {
  left: 140%;
}

.rc-price-button i {
  transition: transform 0.3s ease;
}

.rc-price-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.rc-pricing-reveal {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

.rc-pricing-js .rc-pricing-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transform:
    translateY(75px)
    scale(0.94);

  transition:
    opacity 0.85s ease,
    visibility 0.85s ease,
    filter 0.85s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-pricing-js
.rc-pricing-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translateY(0)
    scale(1);
}

.rc-pricing-grid
.rc-price-card:nth-child(1) {
  transition-delay: 0.05s;
}

.rc-pricing-grid
.rc-price-card:nth-child(2) {
  transition-delay: 0.2s;
}

.rc-pricing-grid
.rc-price-card:nth-child(3) {
  transition-delay: 0.35s;
}

/* Featured card preserve raised position */

.rc-pricing-js
.rc-price-card-featured.rc-pricing-reveal {
  transform:
    translateY(65px)
    scale(0.92);
}

.rc-pricing-js
.rc-price-card-featured.rc-pricing-reveal.is-visible {
  transform:
    translateY(-14px)
    scale(1);
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcPricingRingRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcPricingGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 26px, 0)
      scale(1.09);
  }
}

@keyframes rcPricingGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-45px, -28px, 0)
      scale(1.1);
  }
}

@keyframes rcPriceIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-pricing-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-pricing-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rc-price-card-featured {
    transform: none;
  }

  .rc-pricing-js
  .rc-price-card-featured.rc-pricing-reveal.is-visible {
    transform: none;
  }

  .rc-price-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    margin: 0 auto;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
  .rc-pricing-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-pricing-heading {
    margin-bottom: 42px;
  }

  .rc-pricing-heading h2 {
    font-size: 37px;
    letter-spacing: -2px;
  }

  .rc-pricing-heading p {
    font-size: 14px;
  }

  .rc-pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rc-price-card,
  .rc-price-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .rc-price-card {
    padding:
      34px
      20px
      21px;
  }

  .rc-price-card-featured {
    transform: none;
  }

  .rc-price-card:hover,
  .rc-price-card-featured:hover {
    transform: translateY(-8px);
  }

  .rc-price-description {
    min-height: auto;
  }

  .rc-pricing-js
  .rc-price-card-featured.rc-pricing-reveal,
  .rc-pricing-js
  .rc-price-card-featured.rc-pricing-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

@media (max-width: 420px) {
  .rc-pricing-heading h2 {
    font-size: 32px;
  }

  .rc-price-icon {
    width: 72px;
    height: 72px;

    font-size: 30px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-pricing-section::after,
  .rc-pricing-glow,
  .rc-price-icon {
    animation: none !important;
  }

  .rc-pricing-js .rc-pricing-reveal {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/* =====================================================
   SERVICES GRID SECTION
===================================================== */

.rc-service-grid-section {
  position: relative;
  width: 100%;
  padding: 110px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(56, 222, 215, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(100, 64, 210, 0.08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbfe 55%,
      #f5f7fc 100%
    );
}

/* Background grid */

.rc-service-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.27;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(44, 56, 117, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(44, 56, 117, 0.025) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 16%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 16%,
      #000 85%,
      transparent
    );
}

/* Large decorative circle */

.rc-service-grid-section::after {
  content: "";
  position: absolute;
  top: -300px;
  right: -170px;
  z-index: -4;

  width: 610px;
  height: 610px;

  border: 1px solid rgba(96, 76, 202, 0.06);
  border-radius: 50%;

  box-shadow:
    0 0 0 75px rgba(96, 76, 202, 0.022),
    0 0 0 145px rgba(59, 220, 213, 0.015);

  animation:
    rcServiceBackgroundRing
    25s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-service-bg-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-service-glow-left {
  top: 80px;
  left: -170px;

  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(55, 221, 214, 0.13),
      transparent 70%
    );

  animation:
    rcServiceGlowLeft
    9s
    ease-in-out
    infinite
    alternate;
}

.rc-service-glow-right {
  right: -190px;
  bottom: -160px;

  width: 440px;
  height: 440px;

  background:
    radial-gradient(
      circle,
      rgba(102, 63, 211, 0.11),
      transparent 70%
    );

  animation:
    rcServiceGlowRight
    11s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rc-service-grid-container {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.rc-service-grid-heading {
  max-width: 760px;
  margin: 0 auto 58px;

  text-align: center;
}

.rc-service-small-label {
  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d8;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-service-small-label span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background:
    rgba(59, 222, 214, 0.18);
}

.rc-service-small-label span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #7057db
    );

  animation:
    rcServiceHeadingLine
    2.2s
    ease-in-out
    infinite;
}

.rc-service-grid-heading h2 {
  margin: 0;

  color: #17203f;

  font-size: clamp(39px, 4.5vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2.7px;
}

.rc-service-grid-heading p {
  max-width: 660px;
  margin: 20px auto 0;

  color: #707990;

  font-size: 15px;
  line-height: 1.75;
}

/* =====================================================
   CARDS GRID
===================================================== */

.rc-service-cards-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 26px;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.rc-service-box {
  position: relative;

  min-height: 330px;
  padding: 38px 34px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(54, 67, 128, 0.08);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 18px 50px rgba(22, 29, 77, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  text-align: center;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.rc-service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(57, 220, 213, 0.12),
      transparent 42%
    );

  transition: opacity 0.45s ease;
}

.rc-service-box::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  z-index: -1;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(99, 75, 204, 0.08),
      transparent 70%
    );

  transform: scale(0.75);

  transition:
    transform 0.55s ease,
    opacity 0.55s ease;
}

.rc-service-box:hover {
  transform:
    translateY(-13px)
    scale(1.012);

  border-color: rgba(54, 218, 211, 0.24);

  box-shadow:
    0 32px 75px rgba(22, 29, 77, 0.16),
    0 0 35px rgba(58, 218, 212, 0.07);
}

.rc-service-box:hover::before {
  opacity: 1;
}

.rc-service-box:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

/* =====================================================
   TOP BORDER ANIMATION
===================================================== */

.rc-service-top-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #7057db
    );

  transform: translateX(-50%);

  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-service-box:hover
.rc-service-top-line,
.rc-service-box.is-visible
.rc-service-top-line {
  width: 72%;
}

/* =====================================================
   ICON
===================================================== */

.rc-service-icon-wrap {
  position: relative;

  width: 76px;
  height: 76px;
  margin-bottom: 20px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(89, 80, 189, 0.09);
  border-radius: 50%;

  color: #6654d7;

  background:
    linear-gradient(
      145deg,
      rgba(65, 222, 214, 0.12),
      rgba(108, 84, 216, 0.08)
    );

  box-shadow:
    0 14px 32px rgba(54, 67, 140, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  font-size: 29px;

  animation:
    rcServiceIconFloat
    4.5s
    ease-in-out
    infinite;

  transition:
    color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.rc-service-box:nth-child(2)
.rc-service-icon-wrap {
  animation-delay: -1.2s;
}

.rc-service-box:nth-child(3)
.rc-service-icon-wrap {
  animation-delay: -2.1s;
}

.rc-service-box:nth-child(4)
.rc-service-icon-wrap {
  animation-delay: -3s;
}

.rc-service-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;

  border: 1px dashed rgba(100, 81, 210, 0.18);
  border-radius: 50%;

  animation:
    rcServiceIconOrbit
    11s
    linear
    infinite;
}

.rc-service-box:hover
.rc-service-icon-wrap {
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6651d2
    );

  box-shadow:
    0 20px 42px rgba(69, 77, 190, 0.22),
    0 0 25px rgba(59, 222, 214, 0.16);

  transform:
    translateY(-6px)
    rotate(-4deg)
    scale(1.05);
}

/* =====================================================
   TITLE
===================================================== */

.rc-service-box h3 {
  margin: 0;

  color: #252a31;

  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.rc-service-title-line {
  position: relative;

  width: 64px;
  height: 3px;
  margin: 11px auto 15px;

  display: block;
  overflow: hidden;

  border-radius: 999px;

  background:
    rgba(54, 218, 211, 0.18);
}

.rc-service-title-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;

  width: 50%;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      transparent,
      #3bded6,
      #6953d3,
      transparent
    );

  animation:
    rcServiceLineMove
    2.5s
    ease-in-out
    infinite;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.rc-service-box p {
  max-width: 520px;
  margin: 0;

  color: #626b7e;

  font-size: 13px;
  line-height: 1.72;
  font-weight: 400;
}

/* =====================================================
   CARD NUMBER
===================================================== */

.rc-service-card-number {
  position: absolute;
  right: 18px;
  bottom: 12px;

  color: rgba(91, 76, 190, 0.06);

  font-size: 58px;
  line-height: 1;
  font-weight: 800;

  pointer-events: none;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.rc-service-box:hover
.rc-service-card-number {
  color: rgba(91, 76, 190, 0.11);

  transform:
    translateY(-5px)
    scale(1.05);
}

/* =====================================================
   SAFE SCROLL REVEAL
===================================================== */

.rc-service-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/*
   JavaScript HTML par rc-service-js class add karega.
*/

.rc-service-js
.rc-service-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transform:
    translateY(70px)
    scale(0.94);

  transition:
    opacity 0.85s ease,
    visibility 0.85s ease,
    filter 0.85s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-service-js
.rc-service-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translateY(0)
    scale(1);
}

/* Card stagger */

.rc-service-cards-grid
.rc-service-box:nth-child(1) {
  transition-delay: 0.05s;
}

.rc-service-cards-grid
.rc-service-box:nth-child(2) {
  transition-delay: 0.17s;
}

.rc-service-cards-grid
.rc-service-box:nth-child(3) {
  transition-delay: 0.29s;
}

.rc-service-cards-grid
.rc-service-box:nth-child(4) {
  transition-delay: 0.41s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcServiceBackgroundRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcServiceGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(40px, 25px, 0)
      scale(1.09);
  }
}

@keyframes rcServiceGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-44px, -28px, 0)
      scale(1.1);
  }
}

@keyframes rcServiceHeadingLine {
  0% {
    transform: translateX(-110%);
  }

  50%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes rcServiceIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcServiceIconOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcServiceLineMove {
  0% {
    left: -50%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {
  .rc-service-grid-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-service-cards-grid {
    grid-template-columns: 1fr;
  }

  .rc-service-box {
    min-height: auto;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-service-grid-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-service-grid-heading {
    margin-bottom: 42px;
  }

  .rc-service-grid-heading h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .rc-service-grid-heading p {
    font-size: 14px;
  }

  .rc-service-cards-grid {
    gap: 20px;
  }

  .rc-service-box {
    padding:
      33px
      20px
      28px;

    border-radius: 22px;
  }

  .rc-service-box h3 {
    font-size: 22px;
  }

  .rc-service-box p {
    font-size: 13px;
    line-height: 1.68;
  }

  .rc-service-icon-wrap {
    width: 68px;
    height: 68px;

    font-size: 25px;
  }

  .rc-service-card-number {
    font-size: 48px;
  }
}

@media (max-width: 420px) {
  .rc-service-grid-heading h2 {
    font-size: 31px;
  }

  .rc-service-box {
    padding:
      31px
      17px
      26px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-service-grid-section::after,
  .rc-service-bg-glow,
  .rc-service-small-label span::before,
  .rc-service-icon-wrap,
  .rc-service-icon-wrap::before,
  .rc-service-title-line::before {
    animation: none !important;
  }

  .rc-service-js
  .rc-service-reveal {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/* =====================================================
   TECHNOLOGIES SECTION
===================================================== */

.rct-tech-section {
  position: relative;
  width: 100%;
  padding: 105px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 24%,
      rgba(52, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 65, 210, 0.09),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #f8faff 0%,
      #f2f5fc 50%,
      #f8f9fe 100%
    );
}

/* Background grid */

.rct-tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(46, 57, 119, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(46, 57, 119, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

/* Decorative ring */

.rct-tech-section::after {
  content: "";
  position: absolute;
  top: -300px;
  right: -190px;
  z-index: -4;

  width: 630px;
  height: 630px;

  border: 1px solid rgba(99, 79, 205, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 76px rgba(99, 79, 205, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rctBackgroundRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rct-tech-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rct-tech-glow-left {
  top: 120px;
  left: -170px;

  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(53, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rctGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rct-tech-glow-right {
  right: -190px;
  bottom: -160px;

  width: 440px;
  height: 440px;

  background:
    radial-gradient(
      circle,
      rgba(102, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rctGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rct-tech-container {
  position: relative;
  z-index: 2;

  width: min(1140px, 100%);
  margin: 0 auto;
}

/* =====================================================
   TOP HEADING
===================================================== */

.rct-tech-heading {
  margin-bottom: 58px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.rct-tech-heading-icon {
  position: relative;

  width: 90px;
  height: 90px;
  margin-bottom: 27px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(65, 78, 145, 0.08);
  border-radius: 50%;

  color: #31dcca;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 20px 50px rgba(21, 29, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  font-size: 31px;

  animation:
    rctHeadingIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rct-tech-heading-icon::before {
  content: "";
  position: absolute;
  inset: -8px;

  border: 1px dashed rgba(57, 218, 211, 0.25);
  border-radius: 50%;

  animation:
    rctHeadingOrbit
    12s
    linear
    infinite;
}

.rct-tech-heading-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #43ddd5;

  box-shadow:
    0 0 15px rgba(67, 221, 213, 0.82);
}

.rct-tech-heading-text {
  color: #252c3a;

  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.rct-tech-layout {
  display: grid;
  grid-template-columns:
    minmax(430px, 0.95fr)
    minmax(0, 1.05fr);

  align-items: center;
  gap: 70px;
}

/* =====================================================
   TECHNOLOGY CARDS
===================================================== */

.rct-tech-cards {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.rct-tech-card {
  position: relative;

  min-height: 195px;
  padding: 26px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(56, 68, 130, 0.075);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 18px 48px rgba(20, 28, 77, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.rct-tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(57, 221, 213, 0.14),
      transparent 52%
    );

  transition: opacity 0.45s ease;
}

.rct-tech-card:hover {
  transform:
    translateY(-12px)
    scale(1.018);

  border-color: rgba(57, 219, 212, 0.25);

  box-shadow:
    0 30px 70px rgba(20, 28, 77, 0.16),
    0 0 32px rgba(57, 219, 212, 0.08);
}

.rct-tech-card:hover::before {
  opacity: 1;
}

/* Card top line */

.rct-tech-card-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6953d4
    );

  transform: translateX(-50%);

  transition:
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.rct-tech-card:hover
.rct-tech-card-line,
.rct-tech-card.rct-card-visible
.rct-tech-card-line {
  width: 72%;
}

/* =====================================================
   TECHNOLOGY LOGOS
===================================================== */

.rct-tech-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 13px;

  display: grid;
  place-items: center;

  font-size: 73px;
  line-height: 1;

  animation:
    rctLogoFloat
    4.8s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.rct-tech-card:nth-child(2)
.rct-tech-logo {
  animation-delay: -1.2s;
}

.rct-tech-card:nth-child(3)
.rct-tech-logo {
  animation-delay: -2.3s;
}

.rct-tech-card:nth-child(4)
.rct-tech-logo {
  animation-delay: -3.4s;
}

.rct-html-logo {
  color: #e34f26;

  filter:
    drop-shadow(
      0 12px 18px rgba(227, 79, 38, 0.18)
    );
}

.rct-css-logo {
  color: #1572b6;

  filter:
    drop-shadow(
      0 12px 18px rgba(21, 114, 182, 0.18)
    );
}

.rct-angular-logo {
  color: #dd1b16;

  filter:
    drop-shadow(
      0 12px 18px rgba(221, 27, 22, 0.18)
    );
}

.rct-bootstrap-logo {
  color: #7952b3;

  filter:
    drop-shadow(
      0 12px 18px rgba(121, 82, 179, 0.2)
    );
}

.rct-tech-card:hover
.rct-tech-logo {
  transform:
    translateY(-7px)
    rotate(-4deg)
    scale(1.08);
}

.rct-tech-card strong {
  color: #272d48;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;

  opacity: 0;
  transform: translateY(8px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.rct-tech-card:hover strong {
  opacity: 1;
  transform: translateY(0);
}

.rct-card-number {
  position: absolute;
  right: 13px;
  bottom: 9px;

  color: rgba(86, 75, 190, 0.055);

  font-size: 43px;
  line-height: 1;
  font-weight: 800;

  pointer-events: none;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.rct-tech-content {
  position: relative;
}

.rct-tech-label {
  margin-bottom: 18px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6554d5;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.rct-tech-label span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rct-tech-label span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-110%);
}

.rct-tech-content.rct-visible
.rct-tech-label span::before {
  animation:
    rctLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

.rct-tech-content h2 {
  margin: 0 0 22px;

  color: #33305e;

  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -2.5px;
}

.rct-tech-content p {
  max-width: 590px;
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

/* =====================================================
   CONTACT BUTTON
===================================================== */

.rct-tech-button {
  position: relative;

  min-height: 48px;
  padding: 13px 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rct-tech-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.42),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rct-tech-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rct-tech-button:hover::before {
  left: 140%;
}

.rct-tech-button i {
  transition: transform 0.3s ease;
}

.rct-tech-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

/*
   Without JavaScript content visible rahega.
*/

.rct-scroll-item {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

/*
   JavaScript load hone par initial hidden state.
*/

.rct-scroll-enabled
.rct-scroll-item {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rct-scroll-enabled
.rct-tech-heading.rct-scroll-item {
  transform:
    translateY(65px)
    scale(0.92);
}

.rct-scroll-enabled
.rct-tech-cards.rct-scroll-item {
  transform:
    translate3d(-100px, 55px, 0)
    scale(0.9);
}

.rct-scroll-enabled
.rct-tech-content.rct-scroll-item {
  transform:
    translate3d(100px, 50px, 0)
    scale(0.92);
}

/* Visible states */

.rct-scroll-enabled
.rct-scroll-item.rct-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rct-scroll-enabled
.rct-tech-heading.rct-scroll-item.rct-visible {
  transform:
    translateY(0)
    scale(1);
}

.rct-scroll-enabled
.rct-tech-cards.rct-scroll-item.rct-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rct-scroll-enabled
.rct-tech-content.rct-scroll-item.rct-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* =====================================================
   TECHNOLOGY CARD STAGGER
===================================================== */

.rct-scroll-enabled
.rct-tech-card {
  opacity: 0;

  transform:
    translateY(48px)
    scale(0.88);

  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.rct-scroll-enabled
.rct-tech-cards.rct-visible
.rct-tech-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.rct-scroll-enabled
.rct-tech-cards.rct-visible
.rct-tech-card:nth-child(1) {
  transition-delay: 0.12s;
}

.rct-scroll-enabled
.rct-tech-cards.rct-visible
.rct-tech-card:nth-child(2) {
  transition-delay: 0.25s;
}

.rct-scroll-enabled
.rct-tech-cards.rct-visible
.rct-tech-card:nth-child(3) {
  transition-delay: 0.38s;
}

.rct-scroll-enabled
.rct-tech-cards.rct-visible
.rct-tech-card:nth-child(4) {
  transition-delay: 0.51s;
}

/* =====================================================
   RIGHT CONTENT STAGGER
===================================================== */

.rct-scroll-enabled
.rct-tech-content
.rct-content-child {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rct-scroll-enabled
.rct-tech-content.rct-visible
.rct-content-child {
  opacity: 1;

  transform: translateY(0);
}

.rct-scroll-enabled
.rct-tech-content.rct-visible
.rct-content-child:nth-child(1) {
  transition-delay: 0.12s;
}

.rct-scroll-enabled
.rct-tech-content.rct-visible
.rct-content-child:nth-child(2) {
  transition-delay: 0.26s;
}

.rct-scroll-enabled
.rct-tech-content.rct-visible
.rct-content-child:nth-child(3) {
  transition-delay: 0.4s;
}

.rct-scroll-enabled
.rct-tech-content.rct-visible
.rct-content-child:nth-child(4) {
  transition-delay: 0.54s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rctBackgroundRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rctGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 27px, 0)
      scale(1.09);
  }
}

@keyframes rctGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-46px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rctHeadingIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rctHeadingOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rctLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rctLabelReveal {
  to {
    transform: translateX(0);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {
  .rct-tech-section {
    padding:
      95px
      22px
      105px;
  }

  .rct-tech-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rct-tech-content {
    max-width: 760px;
  }

  .rct-scroll-enabled
  .rct-tech-cards.rct-scroll-item,
  .rct-scroll-enabled
  .rct-tech-content.rct-scroll-item {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rct-scroll-enabled
  .rct-tech-cards.rct-scroll-item.rct-visible,
  .rct-scroll-enabled
  .rct-tech-content.rct-scroll-item.rct-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rct-tech-section {
    padding:
      75px
      16px
      88px;
  }

  .rct-tech-heading {
    margin-bottom: 45px;
  }

  .rct-tech-heading-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 22px;

    font-size: 26px;
  }

  .rct-tech-heading-text {
    font-size: 22px;
  }

  .rct-tech-layout {
    gap: 47px;
  }

  .rct-tech-cards {
    gap: 10px;
  }

  .rct-tech-card {
    min-height: 160px;
    padding: 20px 12px;

    border-radius: 18px;
  }

  .rct-tech-logo {
    width: 73px;
    height: 73px;
    margin-bottom: 9px;

    font-size: 58px;
  }

  .rct-tech-content h2 {
    font-size: 37px;
    letter-spacing: -1.8px;
  }

  .rct-tech-content p {
    font-size: 14px;
    line-height: 1.78;
  }
}

@media (max-width: 420px) {
  .rct-tech-cards {
    grid-template-columns: 1fr;
  }

  .rct-tech-card {
    min-height: 150px;
  }

  .rct-tech-content h2 {
    font-size: 32px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rct-tech-section::after,
  .rct-tech-glow,
  .rct-tech-heading-icon,
  .rct-tech-heading-icon::before,
  .rct-tech-logo {
    animation: none !important;
  }

  .rct-scroll-enabled
  .rct-scroll-item,
  .rct-scroll-enabled
  .rct-tech-card,
  .rct-scroll-enabled
  .rct-content-child {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/* =====================================================
   MOBILE DEVELOPMENT SECTION
===================================================== */

.rcm-mobile-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(56, 222, 215, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 64, 210, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f7f9fe 0%,
      #f1f5fc 50%,
      #f8f9fe 100%
    );
}

/* Background grid */

.rcm-mobile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

/* Large decorative circle */

.rcm-mobile-section::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -190px;
  z-index: -4;

  width: 640px;
  height: 640px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcmMobileBackgroundRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rcm-mobile-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rcm-mobile-glow-left {
  top: 110px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcmMobileGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rcm-mobile-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rcmMobileGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rcm-mobile-container {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(600px, 1.14fr);

  align-items: center;
  gap: 72px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.rcm-mobile-content {
  position: relative;
  max-width: 560px;
}

.rcm-mobile-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rcm-mobile-label span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rcm-mobile-label span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rcm-mobile-content.rcm-mobile-visible
.rcm-mobile-label span::before {
  animation:
    rcmMobileLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

.rcm-mobile-content h2 {
  margin: 0 0 23px;

  color: #33305e;

  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -4px;
}

.rcm-mobile-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

/* =====================================================
   CONTACT BUTTON
===================================================== */

.rcm-mobile-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rcm-mobile-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rcm-mobile-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rcm-mobile-button:hover::before {
  left: 140%;
}

.rcm-mobile-button i {
  transition: transform 0.3s ease;
}

.rcm-mobile-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   RIGHT VISUAL PANEL
===================================================== */

.rcm-mobile-visual {
  position: relative;

  padding: 28px;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  perspective: 1400px;
}

.rcm-mobile-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcm-mobile-visual.rcm-mobile-visible::before {
  width: 74%;
}

/* =====================================================
   VISUAL HEADING
===================================================== */

.rcm-mobile-visual-head {
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.rcm-mobile-visual-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;
  flex: 0 0 52px;

  border-radius: 15px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 13px 30px rgba(66, 77, 177, 0.22);

  font-size: 20px;

  animation:
    rcmMobileVisualIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rcm-mobile-visual-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcm-mobile-visual-head strong {
  color: #242b4b;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.rcm-mobile-visual-head small {
  color: #8790a5;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   TECHNOLOGY GRID
===================================================== */

.rcm-mobile-tech-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}

/* Last three cards balanced in final row */

@media (min-width: 1101px) {
  .rcm-mobile-tech-card:nth-child(9) {
    grid-column: 1 / 2;
  }

  .rcm-mobile-tech-card:nth-child(10) {
    grid-column: 2 / 3;
  }

  .rcm-mobile-tech-card:nth-child(11) {
    grid-column: 3 / 4;
  }
}

/* =====================================================
   TECHNOLOGY CARD
===================================================== */

.rcm-mobile-tech-card {
  position: relative;

  min-height: 112px;
  padding: 15px 9px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(60, 72, 135, 0.075);
  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 12px 30px rgba(20, 28, 77, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcm-mobile-tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(56, 221, 214, 0.14),
      transparent 55%
    );

  transition: opacity 0.4s ease;
}

.rcm-mobile-tech-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6b54d4
    );

  transform: translateX(-50%);

  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcm-mobile-tech-card:hover {
  transform:
    translateY(-9px)
    scale(1.025);

  border-color:
    rgba(57, 219, 212, 0.25);

  box-shadow:
    0 23px 48px rgba(20, 28, 77, 0.14),
    0 0 25px rgba(57, 219, 212, 0.08);
}

.rcm-mobile-tech-card:hover::before {
  opacity: 1;
}

.rcm-mobile-tech-card:hover::after,
.rcm-mobile-tech-card.rcm-tech-visible::after {
  width: 68%;
}

/* =====================================================
   TECHNOLOGY LOGOS
===================================================== */

.rcm-mobile-tech-logo {
  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  font-size: 36px;

  animation:
    rcmMobileTechFloat
    4.6s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.rcm-mobile-tech-card:nth-child(2)
.rcm-mobile-tech-logo {
  animation-delay: -0.5s;
}

.rcm-mobile-tech-card:nth-child(3)
.rcm-mobile-tech-logo {
  animation-delay: -1s;
}

.rcm-mobile-tech-card:nth-child(4)
.rcm-mobile-tech-logo {
  animation-delay: -1.5s;
}

.rcm-mobile-tech-card:nth-child(5)
.rcm-mobile-tech-logo {
  animation-delay: -2s;
}

.rcm-mobile-tech-card:nth-child(6)
.rcm-mobile-tech-logo {
  animation-delay: -2.5s;
}

.rcm-mobile-tech-card:nth-child(7)
.rcm-mobile-tech-logo {
  animation-delay: -3s;
}

.rcm-mobile-tech-card:nth-child(8)
.rcm-mobile-tech-logo {
  animation-delay: -3.5s;
}

.rcm-mobile-tech-card:nth-child(9)
.rcm-mobile-tech-logo {
  animation-delay: -4s;
}

.rcm-mobile-tech-card:nth-child(10)
.rcm-mobile-tech-logo {
  animation-delay: -1.8s;
}

.rcm-mobile-tech-card:nth-child(11)
.rcm-mobile-tech-logo {
  animation-delay: -2.8s;
}

.rcm-mobile-tech-card:hover
.rcm-mobile-tech-logo {
  transform:
    translateY(-5px)
    rotate(-4deg)
    scale(1.1);
}

.rcm-mobile-tech-card > span {
  color: #343b54;

  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

/* Icon colors */

.rcm-ios-logo {
  color: #9199a6;
}

.rcm-android-logo {
  color: #73b72b;
}

.rcm-windows-logo {
  color: #2e9bea;
}

.rcm-blackberry-logo {
  color: #151515;
}

.rcm-phonegap-logo {
  color: #20232a;
}

.rcm-xamarin-logo {
  color: #3498db;
}

.rcm-titanium-logo {
  color: #8895a7;
}

.rcm-ionic-logo {
  color: #3880ff;
}

.rcm-angular-logo {
  color: #dd1b16;
}

.rcm-html-logo {
  color: #e34f26;
}

.rcm-sencha-logo {
  color: #63b631;
}

/* =====================================================
   ORBITS
===================================================== */

.rcm-mobile-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rcm-mobile-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rcm-mobile-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcmMobileOrbitSpin
    13s
    linear
    infinite;
}

.rcm-mobile-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcmMobileOrbitSpinReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SAFE SCROLL ANIMATION
===================================================== */

.rcm-mobile-scroll {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

.rcm-scroll-enabled
.rcm-mobile-scroll {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-scroll {
  transform:
    translate3d(-100px, 55px, 0)
    scale(0.92);
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-scroll {
  transform:
    translate3d(100px, 55px, 0)
    rotateY(-8deg)
    scale(0.9);
}

.rcm-scroll-enabled
.rcm-mobile-scroll.rcm-mobile-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-scroll.rcm-mobile-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-scroll.rcm-mobile-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   LEFT CONTENT STAGGER
===================================================== */

.rcm-scroll-enabled
.rcm-mobile-content
.rcm-mobile-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-visible
.rcm-mobile-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-visible
.rcm-mobile-content-item:nth-child(1) {
  transition-delay: 0.12s;
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-visible
.rcm-mobile-content-item:nth-child(2) {
  transition-delay: 0.26s;
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-visible
.rcm-mobile-content-item:nth-child(3) {
  transition-delay: 0.4s;
}

.rcm-scroll-enabled
.rcm-mobile-content.rcm-mobile-visible
.rcm-mobile-content-item:nth-child(4) {
  transition-delay: 0.54s;
}

/* =====================================================
   TECHNOLOGY CARD STAGGER
===================================================== */

.rcm-scroll-enabled
.rcm-mobile-tech-card {
  opacity: 0;

  transform:
    translateY(35px)
    scale(0.86);

  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(1) {
  transition-delay: 0.12s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(2) {
  transition-delay: 0.2s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(3) {
  transition-delay: 0.28s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(4) {
  transition-delay: 0.36s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(5) {
  transition-delay: 0.44s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(6) {
  transition-delay: 0.52s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(7) {
  transition-delay: 0.6s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(8) {
  transition-delay: 0.68s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(9) {
  transition-delay: 0.76s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(10) {
  transition-delay: 0.84s;
}

.rcm-scroll-enabled
.rcm-mobile-visual.rcm-mobile-visible
.rcm-mobile-tech-card:nth-child(11) {
  transition-delay: 0.92s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcmMobileBackgroundRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcmMobileGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 28px, 0)
      scale(1.09);
  }
}

@keyframes rcmMobileGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rcmMobileLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rcmMobileVisualIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcmMobileTechFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes rcmMobileOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcmMobileOrbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
  .rcm-mobile-section {
    padding:
      95px
      22px
      105px;
  }

  .rcm-mobile-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rcm-mobile-content {
    max-width: 760px;
  }

  .rcm-mobile-tech-grid {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }

  .rcm-scroll-enabled
  .rcm-mobile-content.rcm-mobile-scroll,
  .rcm-scroll-enabled
  .rcm-mobile-visual.rcm-mobile-scroll {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rcm-scroll-enabled
  .rcm-mobile-content.rcm-mobile-scroll.rcm-mobile-visible,
  .rcm-scroll-enabled
  .rcm-mobile-visual.rcm-mobile-scroll.rcm-mobile-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
  .rcm-mobile-section {
    padding:
      75px
      16px
      88px;
  }

  .rcm-mobile-container {
    gap: 47px;
  }

  .rcm-mobile-content h2 {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .rcm-mobile-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rcm-mobile-visual {
    padding: 20px;
    border-radius: 24px;
  }

  .rcm-mobile-tech-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 10px;
  }

  .rcm-mobile-tech-card {
    min-height: 105px;
    border-radius: 15px;
  }

  .rcm-mobile-tech-logo {
    width: 42px;
    height: 42px;

    font-size: 32px;
  }

  .rcm-mobile-tech-card:nth-child(10) {
    grid-column: 1 / 2;
    transform: translateX(50%);
  }

  .rcm-mobile-tech-card:nth-child(11) {
    grid-column: 2 / 3;
    transform: translateX(50%);
  }

  .rcm-scroll-enabled
  .rcm-mobile-visual.rcm-mobile-visible
  .rcm-mobile-tech-card:nth-child(10),
  .rcm-scroll-enabled
  .rcm-mobile-visual.rcm-mobile-visible
  .rcm-mobile-tech-card:nth-child(11) {
    transform: translateX(50%) scale(1);
  }

  .rcm-mobile-tech-card:nth-child(10):hover,
  .rcm-mobile-tech-card:nth-child(11):hover {
    transform:
      translateX(50%)
      translateY(-9px)
      scale(1.025);
  }
}

@media (max-width: 480px) {
  .rcm-mobile-content h2 {
    font-size: 48px;
  }

  .rcm-mobile-tech-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rcm-mobile-tech-card:nth-child(10) {
    grid-column: auto;
    transform: none;
  }

  .rcm-mobile-tech-card:nth-child(11) {
    grid-column: 1 / -1;

    width: calc(50% - 5px);
    margin: 0 auto;

    transform: none;
  }

  .rcm-scroll-enabled
  .rcm-mobile-visual.rcm-mobile-visible
  .rcm-mobile-tech-card:nth-child(10),
  .rcm-scroll-enabled
  .rcm-mobile-visual.rcm-mobile-visible
  .rcm-mobile-tech-card:nth-child(11) {
    transform:
      translateY(0)
      scale(1);
  }

  .rcm-mobile-tech-card:nth-child(10):hover,
  .rcm-mobile-tech-card:nth-child(11):hover {
    transform:
      translateY(-9px)
      scale(1.025);
  }

  .rcm-mobile-visual-head strong {
    font-size: 16px;
  }

  .rcm-mobile-visual-head small {
    font-size: 11px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rcm-mobile-section::after,
  .rcm-mobile-glow,
  .rcm-mobile-visual-icon,
  .rcm-mobile-tech-logo,
  .rcm-mobile-orbit {
    animation: none !important;
  }

  .rcm-scroll-enabled
  .rcm-mobile-scroll,
  .rcm-scroll-enabled
  .rcm-mobile-content-item,
  .rcm-scroll-enabled
  .rcm-mobile-tech-card {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}
/* =====================================================
   BACKEND / CORE FRAMEWORKS SECTION
===================================================== */

.rcb-backend-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(54, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(100, 64, 210, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f8faff 0%,
      #f2f5fc 52%,
      #f8f9fe 100%
    );
}

/* Background grid */

.rcb-backend-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

/* Decorative ring */

.rcb-backend-section::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -190px;
  z-index: -4;

  width: 640px;
  height: 640px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcbBackendRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rcb-backend-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rcb-backend-glow-left {
  top: 110px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcbBackendGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rcb-backend-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rcbBackendGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rcb-backend-container {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(590px, 1.1fr)
    minmax(0, 0.9fr);

  align-items: center;
  gap: 72px;
}

/* =====================================================
   LEFT VISUAL
===================================================== */

.rcb-backend-visual {
  position: relative;

  padding: 28px;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  perspective: 1400px;
}

.rcb-backend-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcb-backend-visual.rcb-backend-visible::before {
  width: 74%;
}

/* =====================================================
   VISUAL HEADING
===================================================== */

.rcb-backend-visual-head {
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.rcb-backend-head-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;
  flex: 0 0 52px;

  border-radius: 15px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 13px 30px rgba(66, 77, 177, 0.22);

  font-size: 20px;

  animation:
    rcbBackendHeadFloat
    4.5s
    ease-in-out
    infinite;
}

.rcb-backend-visual-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcb-backend-visual-head strong {
  color: #242b4b;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.rcb-backend-visual-head small {
  color: #8790a5;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   TECHNOLOGY GRID
===================================================== */

.rcb-backend-tech-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;
}

/* Last two cards centered */

@media (min-width: 1101px) {
  .rcb-backend-tech-card:nth-child(13) {
    grid-column: 2 / 3;
  }

  .rcb-backend-tech-card:nth-child(14) {
    grid-column: 3 / 4;
  }
}

/* =====================================================
   TECHNOLOGY CARD
===================================================== */

.rcb-backend-tech-card {
  position: relative;

  min-height: 112px;
  padding: 15px 9px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(60, 72, 135, 0.075);
  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 12px 30px rgba(20, 28, 77, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcb-backend-tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(56, 221, 214, 0.14),
      transparent 55%
    );

  transition: opacity 0.4s ease;
}

.rcb-backend-tech-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6b54d4
    );

  transform: translateX(-50%);

  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcb-backend-tech-card:hover {
  transform:
    translateY(-9px)
    scale(1.025);

  border-color:
    rgba(57, 219, 212, 0.25);

  box-shadow:
    0 23px 48px rgba(20, 28, 77, 0.14),
    0 0 25px rgba(57, 219, 212, 0.08);
}

.rcb-backend-tech-card:hover::before {
  opacity: 1;
}

.rcb-backend-tech-card:hover::after,
.rcb-backend-tech-card.rcb-card-visible::after {
  width: 68%;
}

/* =====================================================
   TECHNOLOGY ICONS
===================================================== */

.rcb-backend-tech-icon {
  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  font-size: 35px;

  animation:
    rcbBackendTechFloat
    4.6s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.rcb-backend-tech-card:nth-child(2)
.rcb-backend-tech-icon {
  animation-delay: -0.5s;
}

.rcb-backend-tech-card:nth-child(3)
.rcb-backend-tech-icon {
  animation-delay: -1s;
}

.rcb-backend-tech-card:nth-child(4)
.rcb-backend-tech-icon {
  animation-delay: -1.5s;
}

.rcb-backend-tech-card:nth-child(5)
.rcb-backend-tech-icon {
  animation-delay: -2s;
}

.rcb-backend-tech-card:nth-child(6)
.rcb-backend-tech-icon {
  animation-delay: -2.5s;
}

.rcb-backend-tech-card:nth-child(7)
.rcb-backend-tech-icon {
  animation-delay: -3s;
}

.rcb-backend-tech-card:nth-child(8)
.rcb-backend-tech-icon {
  animation-delay: -3.5s;
}

.rcb-backend-tech-card:nth-child(9)
.rcb-backend-tech-icon {
  animation-delay: -4s;
}

.rcb-backend-tech-card:nth-child(10)
.rcb-backend-tech-icon {
  animation-delay: -1.8s;
}

.rcb-backend-tech-card:nth-child(11)
.rcb-backend-tech-icon {
  animation-delay: -2.8s;
}

.rcb-backend-tech-card:nth-child(12)
.rcb-backend-tech-icon {
  animation-delay: -3.8s;
}

.rcb-backend-tech-card:nth-child(13)
.rcb-backend-tech-icon {
  animation-delay: -2.2s;
}

.rcb-backend-tech-card:nth-child(14)
.rcb-backend-tech-icon {
  animation-delay: -3.2s;
}

.rcb-backend-tech-card:hover
.rcb-backend-tech-icon {
  transform:
    translateY(-5px)
    rotate(-4deg)
    scale(1.1);
}

.rcb-backend-tech-card > span {
  color: #343b54;

  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

/* Icon colors */

.rcb-java-icon {
  color: #e34f26;
}

.rcb-dotnet-icon {
  color: #4169e1;
}

.rcb-biztalk-icon {
  color: #d73b4a;
}

.rcb-spring-icon {
  color: #6db33f;
}

.rcb-lamp-icon {
  color: #f09a23;
}

.rcb-mvc-icon {
  color: #4267b2;
}

.rcb-build-icon {
  color: #20a8e8;
}

.rcb-node-icon {
  color: #68a063;
}

.rcb-python-icon {
  color: #3776ab;
}

.rcb-sql-icon {
  color: #cc2927;
}

.rcb-informatica-icon {
  color: #6654d7;
}

.rcb-sharepoint-icon {
  color: #038387;
}

.rcb-windows-icon {
  color: #2e9bea;
}

.rcb-hibernate-icon {
  color: #bcae79;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.rcb-backend-content {
  position: relative;
  max-width: 580px;
}

.rcb-backend-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rcb-backend-label span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background:
    rgba(59, 222, 214, 0.18);
}

.rcb-backend-label span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rcb-backend-content.rcb-backend-visible
.rcb-backend-label span::before {
  animation:
    rcbBackendLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

.rcb-backend-content h2 {
  margin: 0 0 23px;

  color: #33305e;

  font-size: clamp(43px, 5vw, 67px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -3px;
}

.rcb-backend-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

/* =====================================================
   BUTTON
===================================================== */

.rcb-backend-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rcb-backend-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rcb-backend-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rcb-backend-button:hover::before {
  left: 140%;
}

.rcb-backend-button i {
  transition: transform 0.3s ease;
}

.rcb-backend-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   ORBITS
===================================================== */

.rcb-backend-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rcb-backend-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rcb-backend-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcbBackendOrbitSpin
    13s
    linear
    infinite;
}

.rcb-backend-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcbBackendOrbitSpinReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SAFE SCROLL REVEAL
===================================================== */

.rcb-backend-scroll {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

.rcb-scroll-enabled
.rcb-backend-scroll {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-scroll {
  transform:
    translate3d(-100px, 55px, 0)
    rotateY(8deg)
    scale(0.9);
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-scroll {
  transform:
    translate3d(100px, 55px, 0)
    scale(0.92);
}

.rcb-scroll-enabled
.rcb-backend-scroll.rcb-backend-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-scroll.rcb-backend-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-scroll.rcb-backend-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* =====================================================
   CONTENT STAGGER
===================================================== */

.rcb-scroll-enabled
.rcb-backend-content
.rcb-backend-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-visible
.rcb-backend-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-visible
.rcb-backend-content-item:nth-child(1) {
  transition-delay: 0.12s;
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-visible
.rcb-backend-content-item:nth-child(2) {
  transition-delay: 0.26s;
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-visible
.rcb-backend-content-item:nth-child(3) {
  transition-delay: 0.4s;
}

.rcb-scroll-enabled
.rcb-backend-content.rcb-backend-visible
.rcb-backend-content-item:nth-child(4) {
  transition-delay: 0.54s;
}

/* =====================================================
   CARD STAGGER
===================================================== */

.rcb-scroll-enabled
.rcb-backend-tech-card {
  opacity: 0;

  transform:
    translateY(35px)
    scale(0.86);

  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(1) {
  transition-delay: 0.1s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(2) {
  transition-delay: 0.17s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(3) {
  transition-delay: 0.24s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(4) {
  transition-delay: 0.31s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(5) {
  transition-delay: 0.38s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(6) {
  transition-delay: 0.45s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(7) {
  transition-delay: 0.52s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(8) {
  transition-delay: 0.59s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(9) {
  transition-delay: 0.66s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(10) {
  transition-delay: 0.73s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(11) {
  transition-delay: 0.8s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(12) {
  transition-delay: 0.87s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(13) {
  transition-delay: 0.94s;
}

.rcb-scroll-enabled
.rcb-backend-visual.rcb-backend-visible
.rcb-backend-tech-card:nth-child(14) {
  transition-delay: 1.01s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcbBackendRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcbBackendGlowLeft {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(42px, 28px, 0) scale(1.09);
  }
}

@keyframes rcbBackendGlowRight {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-47px, -30px, 0) scale(1.1);
  }
}

@keyframes rcbBackendHeadFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcbBackendTechFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes rcbBackendLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rcbBackendOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcbBackendOrbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
  .rcb-backend-section {
    padding:
      95px
      22px
      105px;
  }

  .rcb-backend-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rcb-backend-content {
    max-width: 760px;
  }

  .rcb-scroll-enabled
  .rcb-backend-visual.rcb-backend-scroll,
  .rcb-scroll-enabled
  .rcb-backend-content.rcb-backend-scroll {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rcb-scroll-enabled
  .rcb-backend-visual.rcb-backend-scroll.rcb-backend-visible,
  .rcb-scroll-enabled
  .rcb-backend-content.rcb-backend-scroll.rcb-backend-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
  .rcb-backend-section {
    padding:
      75px
      16px
      88px;
  }

  .rcb-backend-container {
    gap: 47px;
  }

  .rcb-backend-visual {
    padding: 20px;
    border-radius: 24px;
  }

  .rcb-backend-tech-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 10px;
  }

  .rcb-backend-tech-card {
    min-height: 105px;
    border-radius: 15px;
  }

  .rcb-backend-tech-icon {
    width: 42px;
    height: 42px;

    font-size: 31px;
  }

  .rcb-backend-content h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .rcb-backend-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rcb-backend-tech-card:nth-child(13),
  .rcb-backend-tech-card:nth-child(14) {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .rcb-backend-tech-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rcb-backend-content h2 {
    font-size: 36px;
  }

  .rcb-backend-visual-head strong {
    font-size: 16px;
  }

  .rcb-backend-visual-head small {
    font-size: 11px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rcb-backend-section::after,
  .rcb-backend-glow,
  .rcb-backend-head-icon,
  .rcb-backend-tech-icon,
  .rcb-backend-orbit {
    animation: none !important;
  }

  .rcb-scroll-enabled
  .rcb-backend-scroll,
  .rcb-scroll-enabled
  .rcb-backend-content-item,
  .rcb-scroll-enabled
  .rcb-backend-tech-card {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/* =====================================================
   DATABASE SECTION
===================================================== */

.rcd-database-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 22%,
      rgba(55, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 64, 210, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f8faff 0%,
      #f2f5fc 52%,
      #f8f9fe 100%
    );
}

/* Background grid */

.rcd-database-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

/* Decorative ring */

.rcd-database-section::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -190px;
  z-index: -4;

  width: 640px;
  height: 640px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcdDatabaseRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rcd-database-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rcd-database-glow-left {
  top: 110px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcdDatabaseGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rcd-database-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rcdDatabaseGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rcd-database-container {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(580px, 1.12fr);

  align-items: center;
  gap: 72px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.rcd-database-content {
  position: relative;
  max-width: 580px;
}

.rcd-database-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rcd-database-label span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rcd-database-label span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rcd-database-content.rcd-database-visible
.rcd-database-label span::before {
  animation:
    rcdDatabaseLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

.rcd-database-content h2 {
  margin: 0 0 23px;

  color: #33305e;

  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -4px;
}

.rcd-database-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

/* =====================================================
   BUTTON
===================================================== */

.rcd-database-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rcd-database-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rcd-database-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rcd-database-button:hover::before {
  left: 140%;
}

.rcd-database-button i {
  transition: transform 0.3s ease;
}

.rcd-database-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   RIGHT VISUAL PANEL
===================================================== */

.rcd-database-visual {
  position: relative;

  padding: 28px;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  perspective: 1400px;
}

.rcd-database-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcd-database-visual.rcd-database-visible::before {
  width: 74%;
}

/* =====================================================
   VISUAL HEADING
===================================================== */

.rcd-database-visual-head {
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.rcd-database-head-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;
  flex: 0 0 52px;

  border-radius: 15px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 13px 30px rgba(66, 77, 177, 0.22);

  font-size: 20px;

  animation:
    rcdDatabaseHeadFloat
    4.5s
    ease-in-out
    infinite;
}

.rcd-database-visual-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcd-database-visual-head strong {
  color: #242b4b;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.rcd-database-visual-head small {
  color: #8790a5;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   DATABASE GRID
===================================================== */

.rcd-database-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 12px;
}

/* =====================================================
   DATABASE CARD
===================================================== */

.rcd-database-card {
  position: relative;

  min-height: 125px;
  padding: 16px 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(60, 72, 135, 0.075);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 12px 30px rgba(20, 28, 77, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcd-database-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(56, 221, 214, 0.14),
      transparent 55%
    );

  transition: opacity 0.4s ease;
}

.rcd-database-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6b54d4
    );

  transform: translateX(-50%);

  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcd-database-card:hover {
  transform:
    translateY(-9px)
    scale(1.025);

  border-color:
    rgba(57, 219, 212, 0.25);

  box-shadow:
    0 23px 48px rgba(20, 28, 77, 0.14),
    0 0 25px rgba(57, 219, 212, 0.08);
}

.rcd-database-card:hover::before {
  opacity: 1;
}

.rcd-database-card:hover::after,
.rcd-database-card.rcd-card-visible::after {
  width: 68%;
}

/* =====================================================
   DATABASE ICONS
===================================================== */

.rcd-database-icon {
  width: 49px;
  height: 49px;

  display: grid;
  place-items: center;

  font-size: 36px;

  animation:
    rcdDatabaseIconFloat
    4.6s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.rcd-database-card:nth-child(2)
.rcd-database-icon {
  animation-delay: -0.6s;
}

.rcd-database-card:nth-child(3)
.rcd-database-icon {
  animation-delay: -1.2s;
}

.rcd-database-card:nth-child(4)
.rcd-database-icon {
  animation-delay: -1.8s;
}

.rcd-database-card:nth-child(5)
.rcd-database-icon {
  animation-delay: -2.4s;
}

.rcd-database-card:nth-child(6)
.rcd-database-icon {
  animation-delay: -3s;
}

.rcd-database-card:nth-child(7)
.rcd-database-icon {
  animation-delay: -3.6s;
}

.rcd-database-card:nth-child(8)
.rcd-database-icon {
  animation-delay: -4.2s;
}

.rcd-database-card:nth-child(9)
.rcd-database-icon {
  animation-delay: -2s;
}

.rcd-database-card:hover
.rcd-database-icon {
  transform:
    translateY(-5px)
    rotate(-4deg)
    scale(1.1);
}

.rcd-database-card > span {
  color: #343b54;

  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

/* Database colors */

.rcd-mysql-icon {
  color: #00758f;
}

.rcd-sqlserver-icon {
  color: #cc2927;
}

.rcd-oracle-icon {
  color: #f80000;
}

.rcd-mongodb-icon {
  color: #47a248;
}

.rcd-ims-icon {
  color: #118cc3;
}

.rcd-db2-icon {
  color: #2f9b35;
}

.rcd-hyperion-icon {
  color: #f1b61c;
}

.rcd-cassandra-icon {
  color: #2387b5;
}

.rcd-datastax-icon {
  color: #3c7394;
}

/* =====================================================
   DECORATIVE ORBITS
===================================================== */

.rcd-database-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rcd-database-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rcd-database-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcdDatabaseOrbitSpin
    13s
    linear
    infinite;
}

.rcd-database-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcdDatabaseOrbitSpinReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SAFE SCROLL ANIMATION
===================================================== */

.rcd-database-scroll {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

.rcd-scroll-enabled
.rcd-database-scroll {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-scroll {
  transform:
    translate3d(-100px, 55px, 0)
    scale(0.92);
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-scroll {
  transform:
    translate3d(100px, 55px, 0)
    rotateY(-8deg)
    scale(0.9);
}

.rcd-scroll-enabled
.rcd-database-scroll.rcd-database-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-scroll.rcd-database-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-scroll.rcd-database-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   LEFT CONTENT STAGGER
===================================================== */

.rcd-scroll-enabled
.rcd-database-content
.rcd-database-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-visible
.rcd-database-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-visible
.rcd-database-content-item:nth-child(1) {
  transition-delay: 0.12s;
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-visible
.rcd-database-content-item:nth-child(2) {
  transition-delay: 0.26s;
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-visible
.rcd-database-content-item:nth-child(3) {
  transition-delay: 0.4s;
}

.rcd-scroll-enabled
.rcd-database-content.rcd-database-visible
.rcd-database-content-item:nth-child(4) {
  transition-delay: 0.54s;
}

/* =====================================================
   DATABASE CARD STAGGER
===================================================== */

.rcd-scroll-enabled
.rcd-database-card {
  opacity: 0;

  transform:
    translateY(35px)
    scale(0.86);

  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(1) {
  transition-delay: 0.12s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(2) {
  transition-delay: 0.2s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(3) {
  transition-delay: 0.28s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(4) {
  transition-delay: 0.36s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(5) {
  transition-delay: 0.44s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(6) {
  transition-delay: 0.52s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(7) {
  transition-delay: 0.6s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(8) {
  transition-delay: 0.68s;
}

.rcd-scroll-enabled
.rcd-database-visual.rcd-database-visible
.rcd-database-card:nth-child(9) {
  transition-delay: 0.76s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcdDatabaseRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcdDatabaseGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 28px, 0)
      scale(1.09);
  }
}

@keyframes rcdDatabaseGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rcdDatabaseLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rcdDatabaseHeadFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcdDatabaseIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes rcdDatabaseOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcdDatabaseOrbitSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {
  .rcd-database-section {
    padding:
      95px
      22px
      105px;
  }

  .rcd-database-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rcd-database-content {
    max-width: 760px;
  }

  .rcd-scroll-enabled
  .rcd-database-content.rcd-database-scroll,
  .rcd-scroll-enabled
  .rcd-database-visual.rcd-database-scroll {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rcd-scroll-enabled
  .rcd-database-content.rcd-database-scroll.rcd-database-visible,
  .rcd-scroll-enabled
  .rcd-database-visual.rcd-database-scroll.rcd-database-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
  .rcd-database-section {
    padding:
      75px
      16px
      88px;
  }

  .rcd-database-container {
    gap: 47px;
  }

  .rcd-database-content h2 {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .rcd-database-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rcd-database-visual {
    padding: 20px;
    border-radius: 24px;
  }

  .rcd-database-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 10px;
  }

  .rcd-database-card {
    min-height: 108px;
    border-radius: 15px;
  }

  .rcd-database-icon {
    width: 42px;
    height: 42px;

    font-size: 31px;
  }
}

@media (max-width: 480px) {
  .rcd-database-content h2 {
    font-size: 47px;
  }

  .rcd-database-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .rcd-database-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 5px);
    margin: 0 auto;
  }

  .rcd-database-visual-head strong {
    font-size: 16px;
  }

  .rcd-database-visual-head small {
    font-size: 11px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rcd-database-section::after,
  .rcd-database-glow,
  .rcd-database-head-icon,
  .rcd-database-icon,
  .rcd-database-orbit {
    animation: none !important;
  }

  .rcd-scroll-enabled
  .rcd-database-scroll,
  .rcd-scroll-enabled
  .rcd-database-content-item,
  .rcd-scroll-enabled
  .rcd-database-card {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}
/* =====================================================
   BIG DATA SECTION
===================================================== */

.rc-bigdata-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(54, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(100, 64, 210, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f8faff 0%,
      #f2f5fc 52%,
      #f8f9fe 100%
    );
}

.rc-bigdata-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;
}

.rc-bigdata-section::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -190px;
  z-index: -4;

  width: 640px;
  height: 640px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation: rcBigDataRing 26s linear infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-bigdata-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-bigdata-glow-left {
  top: 110px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcBigDataGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-bigdata-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rcBigDataGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rc-bigdata-container {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(540px, 1.05fr)
    minmax(0, 0.95fr);

  align-items: center;
  gap: 72px;
}

/* =====================================================
   LEFT PANEL
===================================================== */

.rc-bigdata-visual {
  position: relative;

  padding: 30px;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  perspective: 1400px;
}

.rc-bigdata-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-bigdata-visual.is-visible::before {
  width: 74%;
}

/* =====================================================
   PANEL HEADING
===================================================== */

.rc-bigdata-panel-heading {
  margin-bottom: 27px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.rc-bigdata-panel-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;
  flex: 0 0 52px;

  border-radius: 15px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 13px 30px rgba(66, 77, 177, 0.22);

  font-size: 20px;

  animation:
    rcBigDataHeadFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-bigdata-panel-heading > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-bigdata-panel-heading strong {
  color: #242b4b;
  font-size: 18px;
  font-weight: 800;
}

.rc-bigdata-panel-heading small {
  color: #8790a5;
  font-size: 12px;
  font-weight: 600;
}

/* =====================================================
   GRID
===================================================== */

.rc-bigdata-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}

/* =====================================================
   CARDS
===================================================== */

.rc-bigdata-card {
  position: relative;

  min-height: 190px;
  padding: 25px 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(60, 72, 135, 0.075);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 14px 35px rgba(20, 28, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-bigdata-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(56, 221, 214, 0.15),
      transparent 55%
    );

  transition: opacity 0.4s ease;
}

.rc-bigdata-card:hover {
  transform:
    translateY(-10px)
    scale(1.02);

  border-color:
    rgba(57, 219, 212, 0.26);

  box-shadow:
    0 28px 58px rgba(20, 28, 77, 0.15),
    0 0 27px rgba(57, 219, 212, 0.08);
}

.rc-bigdata-card:hover::before {
  opacity: 1;
}

.rc-bigdata-card > strong {
  color: #252c47;
  font-size: 17px;
  font-weight: 800;
}

/* Top line */

.rc-bigdata-top-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6b54d4
    );

  transform: translateX(-50%);

  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-bigdata-card:hover
.rc-bigdata-top-line,
.rc-bigdata-card.card-visible
.rc-bigdata-top-line {
  width: 70%;
}

/* =====================================================
   LOGOS
===================================================== */

.rc-bigdata-logo {
  width: 115px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  animation:
    rcBigDataLogoFloat
    4.8s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.rc-bigdata-card:nth-child(2)
.rc-bigdata-logo {
  animation-delay: -1.1s;
}

.rc-bigdata-card:nth-child(3)
.rc-bigdata-logo {
  animation-delay: -2.2s;
}

.rc-bigdata-card:nth-child(4)
.rc-bigdata-logo {
  animation-delay: -3.3s;
}

.rc-bigdata-card:hover
.rc-bigdata-logo {
  transform:
    translateY(-6px)
    rotate(-3deg)
    scale(1.07);
}

/* Dummy image logos */

.rc-image-logo img {
  width: 100%;
  height: 76px;

  display: block;
  object-fit: contain;

  border: 1px solid rgba(65, 77, 145, 0.08);
  border-radius: 14px;

  background: #ffffff;

  box-shadow:
    0 10px 25px rgba(25, 35, 85, 0.1);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-bigdata-card:hover
.rc-image-logo img {
  transform:
    translateY(-5px)
    scale(1.06);

  box-shadow:
    0 16px 32px rgba(25, 35, 85, 0.16);
}

/* Tableau */

.rc-tableau-logo {
  color: #334b9c;
}

.rc-tableau-symbol {
  width: 68px;
  height: 68px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  align-items: center;
  justify-items: center;

  gap: 7px;

  transform: rotate(45deg);
}

.rc-tableau-symbol i {
  width: 10px;
  height: 10px;

  display: block;

  border-radius: 3px;

  background: currentColor;
}

.rc-tableau-symbol i:nth-child(2),
.rc-tableau-symbol i:nth-child(4),
.rc-tableau-symbol i:nth-child(6),
.rc-tableau-symbol i:nth-child(8) {
  background: #e6812c;
}

/* Jaspersoft */

.rc-jaspersoft-logo {
  color: #1789c9;
  font-size: 58px;

  filter:
    drop-shadow(
      0 12px 18px rgba(23, 137, 201, 0.2)
    );
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.rc-bigdata-content {
  position: relative;
  max-width: 580px;
}

.rc-bigdata-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-bigdata-label > span {
  width: 28px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );
}

.rc-bigdata-content h2 {
  margin: 0 0 23px;

  color: #33305e;

  font-size: clamp(44px, 5vw, 67px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -3px;
}

.rc-bigdata-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 16px;
  line-height: 1.9;
}

/* =====================================================
   BUTTON
===================================================== */

.rc-bigdata-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-bigdata-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rc-bigdata-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rc-bigdata-button:hover::before {
  left: 140%;
}

.rc-bigdata-button i {
  transition: transform 0.3s ease;
}

.rc-bigdata-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   ORBITS
===================================================== */

.rc-bigdata-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rc-bigdata-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rc-bigdata-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcBigDataOrbitSpin
    13s
    linear
    infinite;
}

.rc-bigdata-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcBigDataOrbitReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.rc-bigdata-reveal {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

.rc-bigdata-js
.rc-bigdata-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-bigdata-js
.rc-bigdata-visual.rc-bigdata-reveal {
  transform:
    translate3d(-100px, 55px, 0)
    rotateY(8deg)
    scale(0.9);
}

.rc-bigdata-js
.rc-bigdata-content.rc-bigdata-reveal {
  transform:
    translate3d(100px, 55px, 0)
    scale(0.92);
}

.rc-bigdata-js
.rc-bigdata-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-bigdata-js
.rc-bigdata-visual.rc-bigdata-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

.rc-bigdata-js
.rc-bigdata-content.rc-bigdata-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* Content stagger */

.rc-bigdata-js
.rc-bigdata-content-item {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-bigdata-js
.rc-bigdata-content.is-visible
.rc-bigdata-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rc-bigdata-js
.rc-bigdata-content.is-visible
.rc-bigdata-content-item:nth-child(1) {
  transition-delay: 0.12s;
}

.rc-bigdata-js
.rc-bigdata-content.is-visible
.rc-bigdata-content-item:nth-child(2) {
  transition-delay: 0.25s;
}

.rc-bigdata-js
.rc-bigdata-content.is-visible
.rc-bigdata-content-item:nth-child(3) {
  transition-delay: 0.38s;
}

.rc-bigdata-js
.rc-bigdata-content.is-visible
.rc-bigdata-content-item:nth-child(4) {
  transition-delay: 0.51s;
}

/* Card stagger */

.rc-bigdata-js
.rc-bigdata-card {
  opacity: 0;

  transform:
    translateY(40px)
    scale(0.88);

  transition:
    opacity 0.65s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-bigdata-js
.rc-bigdata-visual.is-visible
.rc-bigdata-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.rc-bigdata-js
.rc-bigdata-visual.is-visible
.rc-bigdata-card:nth-child(1) {
  transition-delay: 0.14s;
}

.rc-bigdata-js
.rc-bigdata-visual.is-visible
.rc-bigdata-card:nth-child(2) {
  transition-delay: 0.27s;
}

.rc-bigdata-js
.rc-bigdata-visual.is-visible
.rc-bigdata-card:nth-child(3) {
  transition-delay: 0.4s;
}

.rc-bigdata-js
.rc-bigdata-visual.is-visible
.rc-bigdata-card:nth-child(4) {
  transition-delay: 0.53s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcBigDataRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcBigDataGlowLeft {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(42px, 28px, 0) scale(1.09);
  }
}

@keyframes rcBigDataGlowRight {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-47px, -30px, 0) scale(1.1);
  }
}

@keyframes rcBigDataHeadFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcBigDataLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcBigDataOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcBigDataOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-bigdata-section {
    padding: 95px 22px 105px;
  }

  .rc-bigdata-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rc-bigdata-content {
    max-width: 760px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-bigdata-section {
    padding: 75px 16px 88px;
  }

  .rc-bigdata-container {
    gap: 48px;
  }

  .rc-bigdata-visual {
    padding: 20px;
    border-radius: 24px;
  }

  .rc-bigdata-grid {
    gap: 10px;
  }

  .rc-bigdata-card {
    min-height: 155px;
    padding: 20px 10px;

    border-radius: 17px;
  }

  .rc-bigdata-logo {
    width: 88px;
    height: 70px;
  }

  .rc-image-logo img {
    height: 62px;
  }

  .rc-bigdata-content h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .rc-bigdata-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 430px) {
  .rc-bigdata-grid {
    grid-template-columns: 1fr;
  }

  .rc-bigdata-content h2 {
    font-size: 35px;
  }
}

/* =====================================================
   CLOUD TECHNOLOGIES SECTION
===================================================== */

.rcc-cloud-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(55, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 64, 210, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f8faff 0%,
      #f2f5fc 52%,
      #f8f9fe 100%
    );
}

/* Background grid */

.rcc-cloud-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

/* Large decorative ring */

.rcc-cloud-section::after {
  content: "";
  position: absolute;
  top: -315px;
  right: -195px;
  z-index: -4;

  width: 650px;
  height: 650px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rccCloudBackgroundRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rcc-cloud-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rcc-cloud-glow-left {
  top: 110px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rccCloudGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rcc-cloud-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rccCloudGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rcc-cloud-container {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.86fr)
    minmax(580px, 1.14fr);

  align-items: center;
  gap: 72px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.rcc-cloud-content {
  position: relative;
  max-width: 560px;
}

.rcc-cloud-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rcc-cloud-label > span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background:
    rgba(59, 222, 214, 0.18);
}

.rcc-cloud-label > span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rcc-cloud-content.is-visible
.rcc-cloud-label > span::before {
  animation:
    rccCloudLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

.rcc-cloud-content h2 {
  margin: 0 0 23px;

  color: #33305e;

  font-size: clamp(55px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -4px;
}

.rcc-cloud-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

/* =====================================================
   CONTACT BUTTON
===================================================== */

.rcc-cloud-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rcc-cloud-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rcc-cloud-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rcc-cloud-button:hover::before {
  left: 140%;
}

.rcc-cloud-button i {
  transition: transform 0.3s ease;
}

.rcc-cloud-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   RIGHT CLOUD PANEL
===================================================== */

.rcc-cloud-visual {
  position: relative;

  padding: 30px;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  perspective: 1400px;
}

.rcc-cloud-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcc-cloud-visual.is-visible::before {
  width: 74%;
}

/* =====================================================
   PANEL HEADING
===================================================== */

.rcc-cloud-panel-heading {
  margin-bottom: 27px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.rcc-cloud-panel-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;
  flex: 0 0 52px;

  border-radius: 15px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 13px 30px rgba(66, 77, 177, 0.22);

  font-size: 20px;

  animation:
    rccCloudPanelIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rcc-cloud-panel-heading > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcc-cloud-panel-heading strong {
  color: #242b4b;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.rcc-cloud-panel-heading small {
  color: #8790a5;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   CLOUD TECHNOLOGY GRID
===================================================== */

.rcc-cloud-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}

/* =====================================================
   CLOUD TECHNOLOGY CARD
===================================================== */

.rcc-cloud-card {
  position: relative;

  min-height: 170px;
  padding: 24px 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(60, 72, 135, 0.075);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 14px 35px rgba(20, 28, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcc-cloud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 50% 0,
      rgba(56, 221, 214, 0.15),
      transparent 55%
    );

  transition: opacity 0.4s ease;
}

.rcc-cloud-card:hover {
  transform:
    translateY(-10px)
    scale(1.02);

  border-color:
    rgba(57, 219, 212, 0.26);

  box-shadow:
    0 28px 58px rgba(20, 28, 77, 0.15),
    0 0 27px rgba(57, 219, 212, 0.08);
}

.rcc-cloud-card:hover::before {
  opacity: 1;
}

.rcc-cloud-card-wide {
  grid-column: 1 / -1;

  min-height: 145px;
}

/* Animated top line */

.rcc-cloud-card-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 3px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6b54d4
    );

  transform: translateX(-50%);

  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcc-cloud-card:hover
.rcc-cloud-card-line,
.rcc-cloud-card.rcc-card-visible
.rcc-cloud-card-line {
  width: 70%;
}

/* =====================================================
   CLOUD LOGOS
===================================================== */

.rcc-cloud-logo {
  width: 90px;
  height: 72px;

  display: grid;
  place-items: center;

  font-size: 57px;
  line-height: 1;

  animation:
    rccCloudLogoFloat
    4.8s
    ease-in-out
    infinite;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.rcc-cloud-card:nth-child(2)
.rcc-cloud-logo {
  animation-delay: -1s;
}

.rcc-cloud-card:nth-child(3)
.rcc-cloud-logo {
  animation-delay: -2s;
}

.rcc-cloud-card:nth-child(4)
.rcc-cloud-logo {
  animation-delay: -3s;
}

.rcc-cloud-card:nth-child(5)
.rcc-cloud-logo {
  animation-delay: -4s;
}

.rcc-cloud-card:hover
.rcc-cloud-logo {
  transform:
    translateY(-6px)
    rotate(-4deg)
    scale(1.08);
}

.rcc-cloud-card strong {
  color: #252c47;

  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.rcc-cloud-card small {
  color: #8a92a6;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}

/* AWS */

.rcc-aws-logo {
  color: #ff9900;

  filter:
    drop-shadow(
      0 12px 18px rgba(255, 153, 0, 0.2)
    );
}

/* Azure */

.rcc-azure-logo {
  color: #168bd2;

  filter:
    drop-shadow(
      0 12px 18px rgba(22, 139, 210, 0.2)
    );
}

/* IBM */

.rcc-ibm-logo {
  color: #1768a8;

  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -3px;

  text-shadow:
    0 2px 0 rgba(23, 104, 168, 0.15);
}

/* Google Cloud */

.rcc-google-logo {
  color: #4285f4;

  filter:
    drop-shadow(
      0 12px 18px rgba(66, 133, 244, 0.18)
    );
}

/* VMware */

.rcc-vmware-logo {
  width: 70px;
  height: 55px;

  color: #343943;

  font-size: 43px;
}

.rcc-vmware-text {
  color: #20242d;

  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
}

/* =====================================================
   DECORATIVE ORBITS
===================================================== */

.rcc-cloud-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rcc-cloud-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rcc-cloud-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rccCloudOrbitSpin
    13s
    linear
    infinite;
}

.rcc-cloud-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rccCloudOrbitReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SAFE SCROLL REVEAL
===================================================== */

/*
   JavaScript fail ho to section visible rahega.
*/

.rcc-cloud-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/*
   JavaScript enabled hone ke baad initial hidden state.
*/

.rcc-cloud-js
.rcc-cloud-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcc-cloud-js
.rcc-cloud-content.rcc-cloud-reveal {
  transform:
    translate3d(-100px, 55px, 0)
    scale(0.92);
}

.rcc-cloud-js
.rcc-cloud-visual.rcc-cloud-reveal {
  transform:
    translate3d(100px, 55px, 0)
    rotateY(-8deg)
    scale(0.9);
}

/* Visible state */

.rcc-cloud-js
.rcc-cloud-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rcc-cloud-js
.rcc-cloud-content.rcc-cloud-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rcc-cloud-js
.rcc-cloud-visual.rcc-cloud-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   LEFT CONTENT STAGGER
===================================================== */

.rcc-cloud-js
.rcc-cloud-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rcc-cloud-js
.rcc-cloud-content.is-visible
.rcc-cloud-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rcc-cloud-js
.rcc-cloud-content.is-visible
.rcc-cloud-content-item:nth-child(1) {
  transition-delay: 0.12s;
}

.rcc-cloud-js
.rcc-cloud-content.is-visible
.rcc-cloud-content-item:nth-child(2) {
  transition-delay: 0.26s;
}

.rcc-cloud-js
.rcc-cloud-content.is-visible
.rcc-cloud-content-item:nth-child(3) {
  transition-delay: 0.4s;
}

.rcc-cloud-js
.rcc-cloud-content.is-visible
.rcc-cloud-content-item:nth-child(4) {
  transition-delay: 0.54s;
}

/* =====================================================
   CLOUD CARD STAGGER
===================================================== */

.rcc-cloud-js
.rcc-cloud-card {
  opacity: 0;

  transform:
    translateY(40px)
    scale(0.86);

  transition:
    opacity 0.65s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rcc-cloud-js
.rcc-cloud-visual.is-visible
.rcc-cloud-card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.rcc-cloud-js
.rcc-cloud-visual.is-visible
.rcc-cloud-card:nth-child(1) {
  transition-delay: 0.13s;
}

.rcc-cloud-js
.rcc-cloud-visual.is-visible
.rcc-cloud-card:nth-child(2) {
  transition-delay: 0.24s;
}

.rcc-cloud-js
.rcc-cloud-visual.is-visible
.rcc-cloud-card:nth-child(3) {
  transition-delay: 0.35s;
}

.rcc-cloud-js
.rcc-cloud-visual.is-visible
.rcc-cloud-card:nth-child(4) {
  transition-delay: 0.46s;
}

.rcc-cloud-js
.rcc-cloud-visual.is-visible
.rcc-cloud-card:nth-child(5) {
  transition-delay: 0.57s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rccCloudBackgroundRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rccCloudGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 28px, 0)
      scale(1.09);
  }
}

@keyframes rccCloudGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rccCloudLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rccCloudPanelIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rccCloudLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rccCloudOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rccCloudOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rcc-cloud-section {
    padding:
      95px
      22px
      105px;
  }

  .rcc-cloud-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rcc-cloud-content {
    max-width: 760px;
  }

  .rcc-cloud-js
  .rcc-cloud-content.rcc-cloud-reveal,
  .rcc-cloud-js
  .rcc-cloud-visual.rcc-cloud-reveal {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rcc-cloud-js
  .rcc-cloud-content.rcc-cloud-reveal.is-visible,
  .rcc-cloud-js
  .rcc-cloud-visual.rcc-cloud-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rcc-cloud-section {
    padding:
      75px
      16px
      88px;
  }

  .rcc-cloud-container {
    gap: 48px;
  }

  .rcc-cloud-content h2 {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .rcc-cloud-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rcc-cloud-visual {
    padding: 20px;

    border-radius: 24px;
  }

  .rcc-cloud-grid {
    gap: 10px;
  }

  .rcc-cloud-card {
    min-height: 150px;
    padding: 20px 10px;

    border-radius: 17px;
  }

  .rcc-cloud-card-wide {
    min-height: 135px;
  }

  .rcc-cloud-logo {
    width: 72px;
    height: 60px;

    font-size: 46px;
  }

  .rcc-cloud-card strong {
    font-size: 14px;
  }

  .rcc-vmware-text {
    font-size: 27px;
  }
}

@media (max-width: 430px) {
  .rcc-cloud-grid {
    grid-template-columns: 1fr;
  }

  .rcc-cloud-card-wide {
    grid-column: auto;
  }

  .rcc-cloud-content h2 {
    font-size: 48px;
  }

  .rcc-cloud-panel-heading strong {
    font-size: 16px;
  }

  .rcc-cloud-panel-heading small {
    font-size: 11px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rcc-cloud-section::after,
  .rcc-cloud-glow,
  .rcc-cloud-panel-icon,
  .rcc-cloud-logo,
  .rcc-cloud-orbit {
    animation: none !important;
  }

  .rcc-cloud-js
  .rcc-cloud-reveal,
  .rcc-cloud-js
  .rcc-cloud-content-item,
  .rcc-cloud-js
  .rcc-cloud-card {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/*----------------------------------------------how we work--------------------------------------------------------*/
/* =====================================================
   PREPARATION / BRIEF PROCESS SECTION
===================================================== */

.rc-process-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(55, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 64, 210, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbff 52%,
      #f5f7fc 100%
    );
}

/* Background grid */

.rc-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 14%,
      #000 86%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 14%,
      #000 86%,
      transparent
    );
}

/* Large decorative ring */

.rc-process-section::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -190px;
  z-index: -4;

  width: 640px;
  height: 640px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcProcessBackgroundRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-process-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-process-glow-left {
  top: 100px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcProcessGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-process-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.11),
      transparent 70%
    );

  animation:
    rcProcessGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rc-process-container {
  position: relative;
  z-index: 2;

  width: min(1260px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(560px, 1.12fr);

  align-items: center;
  gap: 78px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.rc-process-content {
  position: relative;
  max-width: 570px;
}

.rc-process-top {
  position: relative;

  width: 220px;
  height: 130px;
  margin-bottom: 10px;
}

.rc-process-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;

  width: 112px;
  height: 112px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(66, 79, 145, 0.08);
  border-radius: 50%;

  color: #37dcca;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 249, 255, 0.97)
    );

  box-shadow:
    0 20px 52px rgba(20, 28, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  font-size: 34px;

  animation:
    rcProcessIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-process-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;

  border: 1px dashed rgba(58, 220, 213, 0.24);
  border-radius: 50%;

  animation:
    rcProcessIconOrbit
    12s
    linear
    infinite;
}

.rc-process-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #44ddd5;

  box-shadow:
    0 0 16px rgba(68, 221, 213, 0.82);
}

.rc-process-number {
  position: absolute;
  top: 12px;
  left: 92px;
  z-index: 1;

  color: rgba(81, 92, 173, 0.1);

  font-size: 100px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;

  transform: translateX(-25px);
  opacity: 0;

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-process-content.is-visible
.rc-process-number {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   LABEL
===================================================== */

.rc-process-label {
  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-process-label > span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rc-process-label > span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rc-process-content.is-visible
.rc-process-label > span::before {
  animation:
    rcProcessLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

.rc-process-content h2 {
  margin: 0 0 18px;

  color: #17203f;

  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -2.8px;
}

.rc-process-content h3 {
  position: relative;

  margin: 0 0 19px;
  padding-left: 25px;

  color: #476cff;

  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.rc-process-content h3::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;

  width: 16px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6654d7
    );
}

.rc-process-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

/* =====================================================
   BUTTON
===================================================== */

.rc-process-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-process-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rc-process-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rc-process-button:hover::before {
  left: 140%;
}

.rc-process-button i {
  transition: transform 0.3s ease;
}

.rc-process-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   RIGHT IMAGE AREA
===================================================== */

.rc-process-media {
  position: relative;

  perspective: 1400px;
}

.rc-process-image-frame {
  position: relative;
  z-index: 3;

  padding: 11px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transform-style: preserve-3d;

  transition:
    transform 0.2s ease-out,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-process-image-frame:hover {
  border-color: rgba(57, 219, 212, 0.26);

  box-shadow:
    0 42px 100px rgba(20, 28, 77, 0.19),
    0 0 35px rgba(57, 219, 212, 0.08);
}

.rc-process-image-mask {
  position: relative;

  overflow: hidden;

  border-radius: 23px;

  clip-path:
    inset(
      0 100% 0 0
      round 23px
    );

  transition:
    clip-path
    1.3s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-process-media.is-visible
.rc-process-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 23px
    );
}

.rc-process-image-mask img {
  width: 100%;
  min-height: 430px;

  display: block;

  object-fit: cover;
  object-position: center;

  transform:
    scale(1.14)
    translateX(20px);

  filter:
    saturate(0.92)
    contrast(0.98);

  transition:
    transform
    1.4s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter
    0.5s
    ease;
}

.rc-process-media.is-visible
.rc-process-image-mask img {
  transform:
    scale(1)
    translateX(0);
}

.rc-process-image-frame:hover img {
  transform: scale(1.045);

  filter:
    saturate(1)
    contrast(1);
}

/* Image shine */

.rc-process-image-shine {
  position: absolute;
  top: -25%;
  left: -85%;
  z-index: 7;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.62),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.rc-process-media.is-visible
.rc-process-image-shine {
  animation:
    rcProcessImageSweep
    1.3s
    0.75s
    ease
    forwards;
}

/* Decorative corners */

.rc-process-corner {
  position: absolute;
  z-index: 8;

  width: 40px;
  height: 40px;

  pointer-events: none;
}

.rc-process-corner-top {
  top: 6px;
  right: 6px;

  border-top: 2px solid #45ddd6;
  border-right: 2px solid #45ddd6;

  border-radius: 0 16px 0 0;
}

.rc-process-corner-bottom {
  left: 6px;
  bottom: 6px;

  border-left: 2px solid #6954d5;
  border-bottom: 2px solid #6954d5;

  border-radius: 0 0 0 16px;
}

/* =====================================================
   FLOATING CARD
===================================================== */

.rc-process-floating-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  z-index: 9;

  min-width: 235px;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 1px solid rgba(67, 79, 147, 0.1);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 17px 44px rgba(19, 25, 73, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  animation:
    rcProcessCardFloat
    4.3s
    ease-in-out
    infinite;
}

.rc-process-floating-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;
  flex: 0 0 45px;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #45ddd6,
      #6651d3
    );

  box-shadow:
    0 10px 24px rgba(69, 83, 202, 0.22);

  font-size: 18px;
}

.rc-process-floating-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-process-floating-card strong {
  color: #1d2854;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.rc-process-floating-card small {
  color: #7b849c;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   ORBITS
===================================================== */

.rc-process-orbit {
  position: absolute;
  z-index: 1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rc-process-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rc-process-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcProcessOrbitSpin
    13s
    linear
    infinite;
}

.rc-process-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcProcessOrbitReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SAFE SCROLL REVEAL
===================================================== */

/* JS fail ho to visible rahega */

.rc-process-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/* JS enabled hidden state */

.rc-process-js
.rc-process-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-process-js
.rc-process-content.rc-process-reveal {
  transform:
    translate3d(-100px, 55px, 0)
    scale(0.92);
}

.rc-process-js
.rc-process-media.rc-process-reveal {
  transform:
    translate3d(100px, 55px, 0)
    rotateY(-8deg)
    scale(0.9);
}

/* Visible state */

.rc-process-js
.rc-process-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-process-js
.rc-process-content.rc-process-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rc-process-js
.rc-process-media.rc-process-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   CONTENT STAGGER
===================================================== */

.rc-process-js
.rc-process-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-process-js
.rc-process-content.is-visible
.rc-process-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rc-process-js
.rc-process-content.is-visible
.rc-process-content-item:nth-child(2) {
  transition-delay: 0.12s;
}

.rc-process-js
.rc-process-content.is-visible
.rc-process-content-item:nth-child(3) {
  transition-delay: 0.24s;
}

.rc-process-js
.rc-process-content.is-visible
.rc-process-content-item:nth-child(4) {
  transition-delay: 0.36s;
}

.rc-process-js
.rc-process-content.is-visible
.rc-process-content-item:nth-child(5) {
  transition-delay: 0.48s;
}

.rc-process-js
.rc-process-content.is-visible
.rc-process-content-item:nth-child(6) {
  transition-delay: 0.6s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcProcessBackgroundRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcProcessGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 28px, 0)
      scale(1.09);
  }
}

@keyframes rcProcessGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rcProcessIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcProcessIconOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcProcessLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rcProcessImageSweep {
  0% {
    left: -85%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes rcProcessCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcProcessOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcProcessOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-process-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-process-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .rc-process-content {
    max-width: 760px;
  }

  .rc-process-js
  .rc-process-content.rc-process-reveal,
  .rc-process-js
  .rc-process-media.rc-process-reveal {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rc-process-js
  .rc-process-content.rc-process-reveal.is-visible,
  .rc-process-js
  .rc-process-media.rc-process-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-process-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-process-container {
    gap: 48px;
  }

  .rc-process-top {
    width: 180px;
    height: 112px;
  }

  .rc-process-icon-wrap {
    width: 92px;
    height: 92px;

    font-size: 28px;
  }

  .rc-process-number {
    left: 75px;

    font-size: 80px;
  }

  .rc-process-content h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .rc-process-content h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .rc-process-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rc-process-image-frame {
    padding: 7px;

    border-radius: 23px;
  }

  .rc-process-image-mask {
    border-radius: 17px;
  }

  .rc-process-image-mask img {
    min-height: 320px;
  }

  .rc-process-floating-card {
    left: 12px;
    bottom: 15px;

    min-width: 205px;
    padding: 13px 14px;
  }

  .rc-process-floating-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }
}

@media (max-width: 430px) {
  .rc-process-content h2 {
    font-size: 35px;
  }

  .rc-process-image-mask img {
    min-height: 285px;
  }

  .rc-process-floating-card {
    position: relative;
    left: auto;
    bottom: auto;

    width: calc(100% - 24px);
    margin: -28px auto 0;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-process-section::after,
  .rc-process-glow,
  .rc-process-icon-wrap,
  .rc-process-icon-wrap::before,
  .rc-process-image-shine,
  .rc-process-floating-card,
  .rc-process-orbit {
    animation: none !important;
  }

  .rc-process-js
  .rc-process-reveal,
  .rc-process-js
  .rc-process-content-item,
  .rc-process-image-mask,
  .rc-process-image-mask img {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
    clip-path: none !important;

    transition: none !important;
  }
}

/* =====================================================
   PLANNING PROCESS SECTION
===================================================== */

.rc-planning-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 75%,
      rgba(55, 222, 214, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 20%,
      rgba(99, 64, 210, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbff 52%,
      #f5f7fc 100%
    );
}

/* Background grid */

.rc-planning-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 14%,
      #000 86%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 14%,
      #000 86%,
      transparent
    );
}

/* Decorative ring */

.rc-planning-section::after {
  content: "";
  position: absolute;
  top: -320px;
  left: -200px;
  z-index: -4;

  width: 650px;
  height: 650px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcPlanningRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-planning-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-planning-glow-left {
  left: -180px;
  bottom: -80px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcPlanningGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-planning-glow-right {
  top: 90px;
  right: -190px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.11),
      transparent 70%
    );

  animation:
    rcPlanningGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rc-planning-container {
  position: relative;
  z-index: 2;

  width: min(1260px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(560px, 1.12fr)
    minmax(0, 0.88fr);

  align-items: center;
  gap: 78px;
}

/* =====================================================
   LEFT IMAGE
===================================================== */

.rc-planning-media {
  position: relative;

  perspective: 1400px;
}

.rc-planning-image-frame {
  position: relative;
  z-index: 3;

  padding: 11px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transform-style: preserve-3d;

  transition:
    transform 0.2s ease-out,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-planning-image-frame:hover {
  border-color: rgba(57, 219, 212, 0.26);

  box-shadow:
    0 42px 100px rgba(20, 28, 77, 0.19),
    0 0 35px rgba(57, 219, 212, 0.08);
}

.rc-planning-image-mask {
  position: relative;

  overflow: hidden;

  border-radius: 23px;

  clip-path:
    inset(
      0 0 0 100%
      round 23px
    );

  transition:
    clip-path
    1.3s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-planning-media.is-visible
.rc-planning-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 23px
    );
}

.rc-planning-image-mask img {
  width: 100%;
  min-height: 430px;

  display: block;

  object-fit: cover;
  object-position: center;

  transform:
    scale(1.14)
    translateX(-20px);

  filter:
    saturate(0.92)
    contrast(0.98);

  transition:
    transform
    1.4s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter
    0.5s
    ease;
}

.rc-planning-media.is-visible
.rc-planning-image-mask img {
  transform:
    scale(1)
    translateX(0);
}

.rc-planning-image-frame:hover img {
  transform: scale(1.045);

  filter:
    saturate(1)
    contrast(1);
}

/* Image shine */

.rc-planning-image-shine {
  position: absolute;
  top: -25%;
  left: -85%;
  z-index: 7;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.62),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.rc-planning-media.is-visible
.rc-planning-image-shine {
  animation:
    rcPlanningImageSweep
    1.3s
    0.75s
    ease
    forwards;
}

/* Decorative corners */

.rc-planning-corner {
  position: absolute;
  z-index: 8;

  width: 40px;
  height: 40px;

  pointer-events: none;
}

.rc-planning-corner-top {
  top: 6px;
  left: 6px;

  border-top: 2px solid #45ddd6;
  border-left: 2px solid #45ddd6;

  border-radius: 16px 0 0 0;
}

.rc-planning-corner-bottom {
  right: 6px;
  bottom: 6px;

  border-right: 2px solid #6954d5;
  border-bottom: 2px solid #6954d5;

  border-radius: 0 0 16px 0;
}

/* =====================================================
   FLOATING CARD
===================================================== */

.rc-planning-floating-card {
  position: absolute;
  right: -28px;
  bottom: 28px;
  z-index: 9;

  min-width: 235px;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 1px solid rgba(67, 79, 147, 0.1);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 17px 44px rgba(19, 25, 73, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  animation:
    rcPlanningCardFloat
    4.3s
    ease-in-out
    infinite;
}

.rc-planning-floating-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;
  flex: 0 0 45px;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #45ddd6,
      #6651d3
    );

  box-shadow:
    0 10px 24px rgba(69, 83, 202, 0.22);

  font-size: 18px;
}

.rc-planning-floating-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-planning-floating-card strong {
  color: #1d2854;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.rc-planning-floating-card small {
  color: #7b849c;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.rc-planning-content {
  position: relative;
  max-width: 570px;
}

.rc-planning-top {
  position: relative;

  width: 220px;
  height: 130px;
  margin-bottom: 10px;
}

.rc-planning-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;

  width: 112px;
  height: 112px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(66, 79, 145, 0.08);
  border-radius: 50%;

  color: #37dcca;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 249, 255, 0.97)
    );

  box-shadow:
    0 20px 52px rgba(20, 28, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  font-size: 34px;

  animation:
    rcPlanningIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-planning-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;

  border: 1px dashed rgba(58, 220, 213, 0.24);
  border-radius: 50%;

  animation:
    rcPlanningIconOrbit
    12s
    linear
    infinite;
}

.rc-planning-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #44ddd5;

  box-shadow:
    0 0 16px rgba(68, 221, 213, 0.82);
}

.rc-planning-number {
  position: absolute;
  top: 12px;
  left: 92px;
  z-index: 1;

  color: rgba(81, 92, 173, 0.1);

  font-size: 100px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;

  transform: translateX(-25px);
  opacity: 0;

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-planning-content.is-visible
.rc-planning-number {
  opacity: 1;
  transform: translateX(0);
}

/* Label */

.rc-planning-label {
  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-planning-label > span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rc-planning-label > span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rc-planning-content.is-visible
.rc-planning-label > span::before {
  animation:
    rcPlanningLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

/* Typography */

.rc-planning-content h2 {
  margin: 0 0 18px;

  color: #17203f;

  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -2.8px;
}

.rc-planning-content h3 {
  position: relative;

  margin: 0 0 19px;
  padding-left: 25px;

  color: #476cff;

  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.rc-planning-content h3::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;

  width: 16px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6654d7
    );
}

.rc-planning-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

/* =====================================================
   BUTTON
===================================================== */

.rc-planning-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-planning-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rc-planning-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rc-planning-button:hover::before {
  left: 140%;
}

.rc-planning-button i {
  transition: transform 0.3s ease;
}

.rc-planning-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   ORBITS
===================================================== */

.rc-planning-orbit {
  position: absolute;
  z-index: 1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rc-planning-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rc-planning-orbit-one {
  top: -35px;
  left: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcPlanningOrbitSpin
    13s
    linear
    infinite;
}

.rc-planning-orbit-two {
  right: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcPlanningOrbitReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.rc-planning-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

.rc-planning-js
.rc-planning-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-planning-js
.rc-planning-media.rc-planning-reveal {
  transform:
    translate3d(-100px, 55px, 0)
    rotateY(8deg)
    scale(0.9);
}

.rc-planning-js
.rc-planning-content.rc-planning-reveal {
  transform:
    translate3d(100px, 55px, 0)
    scale(0.92);
}

.rc-planning-js
.rc-planning-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-planning-js
.rc-planning-media.rc-planning-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

.rc-planning-js
.rc-planning-content.rc-planning-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* Content stagger */

.rc-planning-js
.rc-planning-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-planning-js
.rc-planning-content.is-visible
.rc-planning-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rc-planning-js
.rc-planning-content.is-visible
.rc-planning-content-item:nth-child(2) {
  transition-delay: 0.12s;
}

.rc-planning-js
.rc-planning-content.is-visible
.rc-planning-content-item:nth-child(3) {
  transition-delay: 0.24s;
}

.rc-planning-js
.rc-planning-content.is-visible
.rc-planning-content-item:nth-child(4) {
  transition-delay: 0.36s;
}

.rc-planning-js
.rc-planning-content.is-visible
.rc-planning-content-item:nth-child(5) {
  transition-delay: 0.48s;
}

.rc-planning-js
.rc-planning-content.is-visible
.rc-planning-content-item:nth-child(6) {
  transition-delay: 0.6s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcPlanningRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcPlanningGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, -28px, 0)
      scale(1.09);
  }
}

@keyframes rcPlanningGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, 30px, 0)
      scale(1.1);
  }
}

@keyframes rcPlanningImageSweep {
  0% {
    left: -85%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes rcPlanningCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcPlanningIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcPlanningIconOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcPlanningLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rcPlanningOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcPlanningOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-planning-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-planning-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .rc-planning-content {
    max-width: 760px;
  }

  .rc-planning-js
  .rc-planning-media.rc-planning-reveal,
  .rc-planning-js
  .rc-planning-content.rc-planning-reveal {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rc-planning-js
  .rc-planning-media.rc-planning-reveal.is-visible,
  .rc-planning-js
  .rc-planning-content.rc-planning-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-planning-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-planning-container {
    gap: 48px;
  }

  .rc-planning-image-frame {
    padding: 7px;
    border-radius: 23px;
  }

  .rc-planning-image-mask {
    border-radius: 17px;
  }

  .rc-planning-image-mask img {
    min-height: 320px;
  }

  .rc-planning-floating-card {
    right: 12px;
    bottom: 15px;

    min-width: 205px;
    padding: 13px 14px;
  }

  .rc-planning-floating-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .rc-planning-top {
    width: 180px;
    height: 112px;
  }

  .rc-planning-icon-wrap {
    width: 92px;
    height: 92px;

    font-size: 28px;
  }

  .rc-planning-number {
    left: 75px;

    font-size: 80px;
  }

  .rc-planning-content h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .rc-planning-content h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .rc-planning-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 430px) {
  .rc-planning-content h2 {
    font-size: 35px;
  }

  .rc-planning-image-mask img {
    min-height: 285px;
  }

  .rc-planning-floating-card {
    position: relative;
    right: auto;
    bottom: auto;

    width: calc(100% - 24px);
    margin: -28px auto 0;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-planning-section::after,
  .rc-planning-glow,
  .rc-planning-image-shine,
  .rc-planning-floating-card,
  .rc-planning-icon-wrap,
  .rc-planning-icon-wrap::before,
  .rc-planning-orbit {
    animation: none !important;
  }

  .rc-planning-js
  .rc-planning-reveal,
  .rc-planning-js
  .rc-planning-content-item,
  .rc-planning-image-mask,
  .rc-planning-image-mask img {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
    clip-path: none !important;

    transition: none !important;
  }
}

/* =====================================================
   PRODUCTION / LAUNCH SECTION
===================================================== */

.rc-launch-section {
  position: relative;
  width: 100%;
  padding: 115px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(55, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 64, 210, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbff 52%,
      #f5f7fc 100%
    );
}

/* Background grid */

.rc-launch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 14%,
      #000 86%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 14%,
      #000 86%,
      transparent
    );
}

/* Decorative ring */

.rc-launch-section::after {
  content: "";
  position: absolute;
  top: -315px;
  right: -195px;
  z-index: -4;

  width: 650px;
  height: 650px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcLaunchRing
    26s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-launch-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-launch-glow-left {
  top: 100px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcLaunchGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-launch-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.11),
      transparent 70%
    );

  animation:
    rcLaunchGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rc-launch-container {
  position: relative;
  z-index: 2;

  width: min(1260px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(560px, 1.12fr);

  align-items: center;
  gap: 78px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.rc-launch-content {
  position: relative;
  max-width: 570px;
}

.rc-launch-top {
  position: relative;

  width: 220px;
  height: 130px;
  margin-bottom: 10px;
}

.rc-launch-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;

  width: 112px;
  height: 112px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(66, 79, 145, 0.08);
  border-radius: 50%;

  color: #37dcca;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 249, 255, 0.97)
    );

  box-shadow:
    0 20px 52px rgba(20, 28, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  font-size: 34px;

  animation:
    rcLaunchIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-launch-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -8px;

  border: 1px dashed rgba(58, 220, 213, 0.24);
  border-radius: 50%;

  animation:
    rcLaunchIconOrbit
    12s
    linear
    infinite;
}

.rc-launch-icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #44ddd5;

  box-shadow:
    0 0 16px rgba(68, 221, 213, 0.82);
}

.rc-launch-number {
  position: absolute;
  top: 12px;
  left: 92px;
  z-index: 1;

  color: rgba(81, 92, 173, 0.1);

  font-size: 100px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -8px;

  transform: translateX(-25px);
  opacity: 0;

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-launch-content.is-visible
.rc-launch-number {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   LABEL
===================================================== */

.rc-launch-label {
  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-launch-label > span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rc-launch-label > span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  transform: translateX(-110%);
}

.rc-launch-content.is-visible
.rc-launch-label > span::before {
  animation:
    rcLaunchLabelReveal
    0.8s
    0.3s
    ease
    forwards;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

.rc-launch-content h2 {
  margin: 0 0 18px;

  color: #17203f;

  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -2.8px;
}

.rc-launch-content h3 {
  position: relative;

  margin: 0 0 19px;
  padding-left: 25px;

  color: #476cff;

  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.rc-launch-content h3::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;

  width: 16px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6654d7
    );
}

.rc-launch-content p {
  margin: 0 0 28px;

  color: #626b7f;

  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
}

/* =====================================================
   BUTTON
===================================================== */

.rc-launch-button {
  position: relative;

  min-height: 49px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  overflow: hidden;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #526bb8,
      #6753ce
    );

  box-shadow:
    0 13px 30px rgba(67, 76, 173, 0.21);

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-launch-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;

  width: 40%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.44),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.65s ease;
}

.rc-launch-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 38px rgba(67, 76, 173, 0.29);
}

.rc-launch-button:hover::before {
  left: 140%;
}

.rc-launch-button i {
  transition: transform 0.3s ease;
}

.rc-launch-button:hover i {
  transform: translateX(5px);
}

/* =====================================================
   RIGHT IMAGE
===================================================== */

.rc-launch-media {
  position: relative;

  perspective: 1400px;
}

.rc-launch-image-frame {
  position: relative;
  z-index: 3;

  padding: 11px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 32px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 248, 255, 0.96)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transform-style: preserve-3d;

  transition:
    transform 0.2s ease-out,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-launch-image-frame:hover {
  border-color: rgba(57, 219, 212, 0.26);

  box-shadow:
    0 42px 100px rgba(20, 28, 77, 0.19),
    0 0 35px rgba(57, 219, 212, 0.08);
}

.rc-launch-image-mask {
  position: relative;

  overflow: hidden;

  border-radius: 23px;

  clip-path:
    inset(
      0 100% 0 0
      round 23px
    );

  transition:
    clip-path
    1.3s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-launch-media.is-visible
.rc-launch-image-mask {
  clip-path:
    inset(
      0 0 0 0
      round 23px
    );
}

.rc-launch-image-mask img {
  width: 100%;
  min-height: 430px;

  display: block;

  object-fit: cover;
  object-position: center;

  transform:
    scale(1.14)
    translateX(20px);

  filter:
    saturate(0.92)
    contrast(0.98);

  transition:
    transform
    1.4s
    cubic-bezier(0.22, 1, 0.36, 1),
    filter
    0.5s
    ease;
}

.rc-launch-media.is-visible
.rc-launch-image-mask img {
  transform:
    scale(1)
    translateX(0);
}

.rc-launch-image-frame:hover img {
  transform: scale(1.045);

  filter:
    saturate(1)
    contrast(1);
}

/* Image shine */

.rc-launch-image-shine {
  position: absolute;
  top: -25%;
  left: -85%;
  z-index: 7;

  width: 42%;
  height: 155%;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.62),
      transparent
    );

  transform: skewX(-20deg);
  opacity: 0;
}

.rc-launch-media.is-visible
.rc-launch-image-shine {
  animation:
    rcLaunchImageSweep
    1.3s
    0.75s
    ease
    forwards;
}

/* Decorative corners */

.rc-launch-corner {
  position: absolute;
  z-index: 8;

  width: 40px;
  height: 40px;

  pointer-events: none;
}

.rc-launch-corner-top {
  top: 6px;
  right: 6px;

  border-top: 2px solid #45ddd6;
  border-right: 2px solid #45ddd6;

  border-radius: 0 16px 0 0;
}

.rc-launch-corner-bottom {
  left: 6px;
  bottom: 6px;

  border-left: 2px solid #6954d5;
  border-bottom: 2px solid #6954d5;

  border-radius: 0 0 0 16px;
}

/* =====================================================
   FLOATING CARD
===================================================== */

.rc-launch-floating-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  z-index: 9;

  min-width: 245px;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 1px solid rgba(67, 79, 147, 0.1);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 17px 44px rgba(19, 25, 73, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  animation:
    rcLaunchCardFloat
    4.3s
    ease-in-out
    infinite;
}

.rc-launch-floating-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;
  flex: 0 0 45px;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #45ddd6,
      #6651d3
    );

  box-shadow:
    0 10px 24px rgba(69, 83, 202, 0.22);

  font-size: 18px;
}

.rc-launch-floating-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-launch-floating-card strong {
  color: #1d2854;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.rc-launch-floating-card small {
  color: #7b849c;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

/* =====================================================
   DECORATIVE ORBITS
===================================================== */

.rc-launch-orbit {
  position: absolute;
  z-index: 1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rc-launch-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rc-launch-orbit-one {
  top: -35px;
  right: -35px;

  width: 120px;
  height: 120px;

  animation:
    rcLaunchOrbitSpin
    13s
    linear
    infinite;
}

.rc-launch-orbit-two {
  left: -40px;
  bottom: -40px;

  width: 155px;
  height: 155px;

  border-style: dashed;

  animation:
    rcLaunchOrbitReverse
    17s
    linear
    infinite;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

/* Without JavaScript section visible rahega */

.rc-launch-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/* JavaScript enabled initial state */

.rc-launch-js
.rc-launch-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-launch-js
.rc-launch-content.rc-launch-reveal {
  transform:
    translate3d(-100px, 55px, 0)
    scale(0.92);
}

.rc-launch-js
.rc-launch-media.rc-launch-reveal {
  transform:
    translate3d(100px, 55px, 0)
    rotateY(-8deg)
    scale(0.9);
}

.rc-launch-js
.rc-launch-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-launch-js
.rc-launch-content.rc-launch-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

.rc-launch-js
.rc-launch-media.rc-launch-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* =====================================================
   CONTENT STAGGER
===================================================== */

.rc-launch-js
.rc-launch-content-item {
  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-launch-js
.rc-launch-content.is-visible
.rc-launch-content-item {
  opacity: 1;
  transform: translateY(0);
}

.rc-launch-js
.rc-launch-content.is-visible
.rc-launch-content-item:nth-child(2) {
  transition-delay: 0.12s;
}

.rc-launch-js
.rc-launch-content.is-visible
.rc-launch-content-item:nth-child(3) {
  transition-delay: 0.24s;
}

.rc-launch-js
.rc-launch-content.is-visible
.rc-launch-content-item:nth-child(4) {
  transition-delay: 0.36s;
}

.rc-launch-js
.rc-launch-content.is-visible
.rc-launch-content-item:nth-child(5) {
  transition-delay: 0.48s;
}

.rc-launch-js
.rc-launch-content.is-visible
.rc-launch-content-item:nth-child(6) {
  transition-delay: 0.6s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcLaunchRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcLaunchGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 28px, 0)
      scale(1.09);
  }
}

@keyframes rcLaunchGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rcLaunchIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcLaunchIconOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcLaunchLabelReveal {
  to {
    transform: translateX(0);
  }
}

@keyframes rcLaunchImageSweep {
  0% {
    left: -85%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes rcLaunchCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes rcLaunchOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcLaunchOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-launch-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-launch-container {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .rc-launch-content {
    max-width: 760px;
  }

  .rc-launch-js
  .rc-launch-content.rc-launch-reveal,
  .rc-launch-js
  .rc-launch-media.rc-launch-reveal {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rc-launch-js
  .rc-launch-content.rc-launch-reveal.is-visible,
  .rc-launch-js
  .rc-launch-media.rc-launch-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-launch-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-launch-container {
    gap: 48px;
  }

  .rc-launch-top {
    width: 180px;
    height: 112px;
  }

  .rc-launch-icon-wrap {
    width: 92px;
    height: 92px;

    font-size: 28px;
  }

  .rc-launch-number {
    left: 75px;

    font-size: 80px;
  }

  .rc-launch-content h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .rc-launch-content h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .rc-launch-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rc-launch-image-frame {
    padding: 7px;
    border-radius: 23px;
  }

  .rc-launch-image-mask {
    border-radius: 17px;
  }

  .rc-launch-image-mask img {
    min-height: 320px;
  }

  .rc-launch-floating-card {
    left: 12px;
    bottom: 15px;

    min-width: 215px;
    padding: 13px 14px;
  }

  .rc-launch-floating-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }
}

@media (max-width: 430px) {
  .rc-launch-content h2 {
    font-size: 35px;
  }

  .rc-launch-image-mask img {
    min-height: 285px;
  }

  .rc-launch-floating-card {
    position: relative;
    left: auto;
    bottom: auto;

    width: calc(100% - 24px);
    margin: -28px auto 0;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-launch-section::after,
  .rc-launch-glow,
  .rc-launch-icon-wrap,
  .rc-launch-icon-wrap::before,
  .rc-launch-image-shine,
  .rc-launch-floating-card,
  .rc-launch-orbit {
    animation: none !important;
  }

  .rc-launch-js
  .rc-launch-reveal,
  .rc-launch-js
  .rc-launch-content-item,
  .rc-launch-image-mask,
  .rc-launch-image-mask img {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;
    clip-path: none !important;

    transition: none !important;
  }
}
/*--------------------------------------------------contact css-------------------------------------------------*/

/* =====================================================
   CONTACT SECTION
===================================================== */

.rc-contact-section {
  position: relative;
  width: 100%;
  padding: 110px 24px 125px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(55, 222, 214, 0.09),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(99, 64, 210, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbff 55%,
      #f5f7fc 100%
    );
}

/* Background grid */

.rc-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;

  pointer-events: none;
  opacity: 0.25;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.026) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 13%,
      #000 87%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 13%,
      #000 87%,
      transparent
    );
}

/* Decorative ring */

.rc-contact-section::after {
  content: "";
  position: absolute;
  top: -320px;
  right: -200px;
  z-index: -4;

  width: 650px;
  height: 650px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation:
    rcContactRing
    27s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-contact-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(14px);
}

.rc-contact-glow-left {
  top: 170px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcContactGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-contact-glow-right {
  right: -190px;
  bottom: -160px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rcContactGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rc-contact-container {
  position: relative;
  z-index: 2;

  width: min(1260px, 100%);
  margin: 0 auto;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.rc-contact-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.rc-contact-label {
  margin-bottom: 15px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-contact-label > span {
  position: relative;

  width: 28px;
  height: 2px;

  overflow: hidden;

  background: rgba(59, 222, 214, 0.18);
}

.rc-contact-label > span::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6c55d6
    );

  animation:
    rcContactLabelMove
    2.3s
    ease-in-out
    infinite;
}

.rc-contact-heading h2 {
  margin: 0;

  color: #202750;

  font-size: clamp(43px, 5.3vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -3px;
}

.rc-contact-heading h2 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #202750,
      #6552cf
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.rc-contact-heading p {
  max-width: 590px;
  margin: 18px 0 0;

  color: #70798d;

  font-size: 15px;
  line-height: 1.75;
}

/* =====================================================
   MAIN LAYOUT
===================================================== */

.rc-contact-layout {
  display: grid;
  grid-template-columns:
    minmax(540px, 1.05fr)
    minmax(0, 0.95fr);

  align-items: start;
  gap: 68px;
}

/* =====================================================
   FORM CARD
===================================================== */

.rc-contact-form-card {
  position: relative;

  padding: 38px 40px 42px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.97)
    );

  box-shadow:
    0 30px 80px rgba(20, 28, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.rc-contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6d55d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-contact-form-card.is-visible::before {
  width: 72%;
}

.rc-contact-form-card::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -140px;
  z-index: -2;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(91, 74, 204, 0.08),
      transparent 70%
    );
}

/* =====================================================
   FORM HEADING
===================================================== */

.rc-contact-form-head {
  margin-bottom: 35px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.rc-contact-form-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;
  flex: 0 0 54px;

  border-radius: 16px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 14px 30px rgba(66, 77, 177, 0.24);

  font-size: 20px;

  animation:
    rcContactIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-contact-form-head > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rc-contact-form-head strong {
  color: #232a4d;

  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.rc-contact-form-head small {
  color: #8790a5;

  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

/* =====================================================
   FORM
===================================================== */

.rc-contact-form {
  display: grid;
  gap: 22px;
}

.rc-contact-field {
  position: relative;
  padding-top: 8px;
}

.rc-contact-field input,
.rc-contact-field textarea {
  width: 100%;

  border: 0;
  border-bottom: 1px solid rgba(52, 65, 120, 0.15);
  outline: none;

  color: #27304e;
  background: transparent;

  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;

  transition:
    border-color 0.35s ease,
    background 0.35s ease;
}

.rc-contact-field input {
  height: 56px;
  padding: 17px 42px 7px 12px;
}

.rc-contact-field textarea {
  min-height: 150px;
  padding: 24px 42px 12px 12px;

  resize: vertical;
}

.rc-contact-field label {
  position: absolute;
  top: 27px;
  left: 12px;

  color: #9ba2b2;

  font-size: 13px;
  line-height: 1;

  pointer-events: none;

  transform-origin: left top;

  transition:
    top 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.rc-contact-textarea-field label {
  top: 31px;
}

.rc-contact-field input:focus + label,
.rc-contact-field input:not(:placeholder-shown) + label,
.rc-contact-field textarea:focus + label,
.rc-contact-field textarea:not(:placeholder-shown) + label {
  top: 8px;

  color: #6654d7;

  transform: scale(0.82);
}

.rc-contact-field-icon {
  position: absolute;
  top: 28px;
  right: 12px;

  color: #a2a9b9;

  font-size: 15px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.rc-contact-textarea-field
.rc-contact-field-icon {
  top: 31px;
}

.rc-contact-field:focus-within
.rc-contact-field-icon {
  color: #4ddbd3;
  transform: translateY(-2px);
}

.rc-contact-field-line {
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6753d2
    );

  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-contact-field:focus-within
.rc-contact-field-line {
  width: 100%;
}

/* Error */

.rc-contact-error {
  margin-top: 6px;

  display: none;

  color: #d9534f;

  font-size: 11px;
  line-height: 1.4;
}

.rc-contact-field.has-error
.rc-contact-error {
  display: block;
}

.rc-contact-field.has-error input,
.rc-contact-field.has-error textarea {
  border-color: rgba(217, 83, 79, 0.5);
}

.rc-contact-field.has-error
.rc-contact-field-icon {
  color: #d9534f;
}

/* =====================================================
   SUBMIT BUTTON
===================================================== */

.rc-contact-submit {
  position: relative;

  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  padding: 15px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  overflow: hidden;

  border: 0;
  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #43dbcc,
      #5f54d0
    );

  box-shadow:
    0 15px 34px rgba(67, 76, 173, 0.23);

  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.rc-contact-submit::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -85%;

  width: 38%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.48),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.7s ease;
}

.rc-contact-submit:hover {
  transform: translateY(-4px);

  box-shadow:
    0 20px 42px rgba(67, 76, 173, 0.31);
}

.rc-contact-submit:hover::before {
  left: 145%;
}

.rc-contact-submit > i {
  transition: transform 0.3s ease;
}

.rc-contact-submit:hover > i {
  transform: translateX(5px);
}

.rc-contact-submit-loading {
  display: none;
  align-items: center;
  gap: 9px;
}

.rc-contact-submit-loading i {
  animation:
    rcContactSpinner
    0.8s
    linear
    infinite;
}

.rc-contact-submit.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.rc-contact-submit.is-loading
.rc-contact-submit-text,
.rc-contact-submit.is-loading > i {
  display: none;
}

.rc-contact-submit.is-loading
.rc-contact-submit-loading {
  display: inline-flex;
}

/* Success message */

.rc-contact-success {
  display: none;
  align-items: center;
  gap: 10px;

  padding: 13px 15px;

  border: 1px solid rgba(55, 180, 120, 0.18);
  border-radius: 12px;

  color: #287d5a;
  background: rgba(66, 210, 149, 0.09);

  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.rc-contact-success.is-visible {
  display: flex;
}

/* =====================================================
   RIGHT INFORMATION
===================================================== */

.rc-contact-info {
  position: relative;
  padding: 32px 0;
}

.rc-contact-info-badge {
  margin-bottom: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6654d7;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rc-contact-info-badge > span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 11px 25px rgba(66, 77, 177, 0.2);
}

.rc-contact-info h3 {
  max-width: 590px;
  margin: 0 0 25px;

  color: #202750;

  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.rc-contact-info > p {
  max-width: 610px;
  margin: 0 0 32px;

  color: #626b7f;

  font-size: 15px;
  line-height: 1.85;
}

/* =====================================================
   CONTACT DETAILS
===================================================== */

.rc-contact-details {
  display: grid;
  gap: 13px;
}

.rc-contact-detail {
  position: relative;

  min-height: 76px;
  padding: 15px 17px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 1px solid rgba(61, 74, 141, 0.08);
  border-radius: 17px;

  color: inherit;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 249, 255, 0.94)
    );

  box-shadow:
    0 12px 32px rgba(20, 28, 77, 0.075);

  text-decoration: none;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-contact-detail:hover {
  transform: translateY(-5px);

  border-color: rgba(57, 219, 212, 0.24);

  box-shadow:
    0 21px 45px rgba(20, 28, 77, 0.12);
}

.rc-contact-detail-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;
  flex: 0 0 45px;

  border-radius: 13px;

  color: #6654d7;

  background:
    linear-gradient(
      145deg,
      rgba(59, 222, 214, 0.13),
      rgba(102, 82, 210, 0.1)
    );

  font-size: 17px;
}

.rc-contact-detail > span:nth-child(2) {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rc-contact-detail small {
  color: #8c94a7;

  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}

.rc-contact-detail strong {
  overflow-wrap: anywhere;

  color: #27304e;

  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.rc-contact-detail > i {
  margin-left: auto;

  color: #9098aa;

  font-size: 12px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.rc-contact-detail:hover > i {
  color: #6654d7;
  transform: translate(3px, -3px);
}

/* =====================================================
   SUPPORT CARD
===================================================== */

.rc-contact-support-card {
  margin-top: 18px;
  padding: 19px;

  display: flex;
  align-items: flex-start;
  gap: 14px;

  border: 1px solid rgba(59, 222, 214, 0.14);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(59, 222, 214, 0.08),
      rgba(101, 82, 209, 0.07)
    );
}

.rc-contact-support-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;
  flex: 0 0 44px;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #46ddd5,
      #6552cf
    );

  box-shadow:
    0 11px 25px rgba(66, 77, 177, 0.2);
}

.rc-contact-support-card > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rc-contact-support-card strong {
  color: #252d4e;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.rc-contact-support-card p {
  margin: 0;

  color: #737c90;

  font-size: 12px;
  line-height: 1.6;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

/* No JS fallback */

.rc-contact-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/* JS initial state */

.rc-contact-js
.rc-contact-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-contact-js
.rc-contact-heading.rc-contact-reveal {
  transform:
    translateY(60px)
    scale(0.94);
}

.rc-contact-js
.rc-contact-form-card.rc-contact-reveal {
  transform:
    translate3d(-100px, 55px, 0)
    rotateY(7deg)
    scale(0.92);
}

.rc-contact-js
.rc-contact-info.rc-contact-reveal {
  transform:
    translate3d(100px, 55px, 0)
    scale(0.92);
}

/* Visible */

.rc-contact-js
.rc-contact-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);
}

.rc-contact-js
.rc-contact-heading.rc-contact-reveal.is-visible {
  transform:
    translateY(0)
    scale(1);
}

.rc-contact-js
.rc-contact-form-card.rc-contact-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

.rc-contact-js
.rc-contact-info.rc-contact-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* =====================================================
   RIGHT CONTENT STAGGER
===================================================== */

.rc-contact-js
.rc-contact-info-item {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.7s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-info-item {
  opacity: 1;
  transform: translateY(0);
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-info-item:nth-child(1) {
  transition-delay: 0.12s;
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-info-item:nth-child(2) {
  transition-delay: 0.24s;
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-info-item:nth-child(3) {
  transition-delay: 0.36s;
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-details
.rc-contact-info-item:nth-child(1) {
  transition-delay: 0.48s;
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-details
.rc-contact-info-item:nth-child(2) {
  transition-delay: 0.6s;
}

.rc-contact-js
.rc-contact-info.is-visible
.rc-contact-support-card {
  transition-delay: 0.72s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcContactRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcContactGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 28px, 0)
      scale(1.09);
  }
}

@keyframes rcContactGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-47px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rcContactLabelMove {
  0% {
    transform: translateX(-110%);
  }

  50%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes rcContactIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes rcContactSpinner {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .rc-contact-section {
    padding:
      95px
      22px
      105px;
  }

  .rc-contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .rc-contact-info {
    max-width: 760px;
  }

  .rc-contact-js
  .rc-contact-form-card.rc-contact-reveal,
  .rc-contact-js
  .rc-contact-info.rc-contact-reveal {
    transform:
      translateY(70px)
      scale(0.93);
  }

  .rc-contact-js
  .rc-contact-form-card.rc-contact-reveal.is-visible,
  .rc-contact-js
  .rc-contact-info.rc-contact-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-contact-section {
    padding:
      75px
      16px
      88px;
  }

  .rc-contact-heading {
    margin-bottom: 42px;
  }

  .rc-contact-heading h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .rc-contact-form-card {
    padding:
      28px
      20px
      30px;

    border-radius: 23px;
  }

  .rc-contact-form-head {
    margin-bottom: 28px;
  }

  .rc-contact-field textarea {
    min-height: 130px;
  }

  .rc-contact-info {
    padding: 10px 0;
  }

  .rc-contact-info h3 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .rc-contact-info > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .rc-contact-detail {
    padding: 14px;
  }
}

@media (max-width: 430px) {
  .rc-contact-heading h2 {
    font-size: 35px;
  }

  .rc-contact-form-card {
    padding:
      25px
      16px
      27px;
  }

  .rc-contact-form-head small {
    font-size: 11px;
  }

  .rc-contact-detail {
    align-items: flex-start;
  }

  .rc-contact-detail > i {
    display: none;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-contact-section::after,
  .rc-contact-glow,
  .rc-contact-label > span::before,
  .rc-contact-form-icon {
    animation: none !important;
  }

  .rc-contact-js
  .rc-contact-reveal,
  .rc-contact-js
  .rc-contact-info-item {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/* =====================================================
   CONTACT INFORMATION SECTION
===================================================== */

.rc-info-section {
  position: relative;
  width: 100%;
  padding: 90px 24px 100px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(55, 222, 214, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(101, 79, 211, 0.08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f9faff 100%
    );
}

/* Background grid */

.rc-info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;

  opacity: 0.23;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(43, 55, 118, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(43, 55, 118, 0.025) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 18%,
      #000 82%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 18%,
      #000 82%,
      transparent
    );
}

/* Decorative background ring */

.rc-info-section::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -180px;
  z-index: -3;

  width: 520px;
  height: 520px;

  border: 1px solid rgba(100, 79, 207, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 68px rgba(100, 79, 207, 0.02),
    0 0 0 135px rgba(57, 221, 213, 0.014);

  animation:
    rcInfoRingSpin
    25s
    linear
    infinite;
}

/* =====================================================
   BACKGROUND GLOWS
===================================================== */

.rc-info-glow {
  position: absolute;
  z-index: -2;

  border-radius: 50%;
  pointer-events: none;

  filter: blur(16px);
}

.rc-info-glow-left {
  top: 40px;
  left: -170px;

  width: 360px;
  height: 360px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.13),
      transparent 70%
    );

  animation:
    rcInfoGlowLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-info-glow-right {
  right: -180px;
  bottom: -130px;

  width: 410px;
  height: 410px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.1),
      transparent 70%
    );

  animation:
    rcInfoGlowRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.rc-info-container {
  position: relative;
  z-index: 2;

  width: min(1260px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}

/* =====================================================
   INFORMATION CARD
===================================================== */

.rc-info-card {
  position: relative;

  min-height: 260px;
  padding: 34px 30px 32px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(57, 71, 139, 0.075);
  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.96)
    );

  box-shadow:
    0 18px 48px rgba(20, 28, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  opacity: 0;

  background:
    radial-gradient(
      circle at 20% 0,
      rgba(57, 221, 213, 0.13),
      transparent 52%
    );

  transition: opacity 0.4s ease;
}

.rc-info-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  z-index: -3;

  width: 140px;
  height: 140px;

  border: 1px solid rgba(101, 80, 207, 0.08);
  border-radius: 50%;

  box-shadow:
    0 0 0 30px rgba(101, 80, 207, 0.018);
}

.rc-info-card:hover {
  transform:
    translateY(-10px)
    scale(1.012);

  border-color:
    rgba(57, 219, 212, 0.24);

  box-shadow:
    0 30px 68px rgba(20, 28, 77, 0.14),
    0 0 30px rgba(57, 219, 212, 0.07);
}

.rc-info-card:hover::before {
  opacity: 1;
}

/* Top gradient line */

.rc-info-card-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6654d7
    );

  transform: translateX(-50%);

  transition:
    width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-info-card:hover
.rc-info-card-line,
.rc-info-card.is-visible
.rc-info-card-line {
  width: 72%;
}

/* =====================================================
   ICON
===================================================== */

.rc-info-icon {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;
  flex: 0 0 58px;

  border-radius: 17px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 14px 32px rgba(66, 77, 177, 0.22);

  font-size: 21px;

  animation:
    rcInfoIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-info-card:nth-child(2)
.rc-info-icon {
  animation-delay: -1.4s;
}

.rc-info-card:nth-child(3)
.rc-info-icon {
  animation-delay: -2.8s;
}

.rc-info-icon::before {
  content: "";
  position: absolute;
  inset: -6px;

  border: 1px dashed rgba(61, 219, 212, 0.22);
  border-radius: 21px;

  animation:
    rcInfoIconOrbit
    11s
    linear
    infinite;
}

/* =====================================================
   CONTENT
===================================================== */

.rc-info-content {
  position: relative;
  z-index: 2;

  min-width: 0;
  padding-top: 4px;
}

.rc-info-number {
  position: absolute;
  top: -25px;
  right: -6px;
  z-index: -1;

  color: rgba(85, 76, 181, 0.05);

  font-size: 70px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -5px;

  pointer-events: none;
}

.rc-info-content h3 {
  margin: 0 0 20px;

  color: #202750;

  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

/* =====================================================
   ADDRESS
===================================================== */

.rc-info-content address {
  display: flex;
  flex-direction: column;
  gap: 8px;

  color: #60697d;

  font-size: 14px;
  line-height: 1.55;
  font-style: normal;
}

.rc-info-content address strong {
  margin-bottom: 4px;

  color: #343c59;

  font-size: 14px;
  font-weight: 700;
}

.rc-info-content address span {
  display: block;
}

/* =====================================================
   PHONE AND EMAIL LINKS
===================================================== */

.rc-info-link {
  position: relative;

  width: 100%;
  min-height: 78px;
  padding: 14px 42px 14px 15px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  border: 1px solid rgba(61, 74, 141, 0.075);
  border-radius: 15px;

  color: inherit;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(246, 248, 255, 0.88)
    );

  text-decoration: none;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-info-link:hover {
  transform: translateY(-4px);

  border-color:
    rgba(57, 219, 212, 0.25);

  box-shadow:
    0 16px 34px rgba(20, 28, 77, 0.1);
}

.rc-info-link > span {
  overflow-wrap: anywhere;

  color: #303957;

  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.rc-info-email > span {
  color: #2fcfbd;
}

.rc-info-link small {
  color: #8b93a6;

  font-size: 10px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.rc-info-link > i {
  position: absolute;
  top: 50%;
  right: 15px;

  color: #98a0b1;

  font-size: 12px;

  transform: translateY(-50%);

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.rc-info-link:hover > i {
  color: #6654d7;

  transform:
    translate(3px, calc(-50% - 3px));
}

/* =====================================================
   DIVIDERS ON DESKTOP
===================================================== */

@media (min-width: 901px) {
  .rc-info-card:not(:last-child)::after {
    content: "";
  }

  .rc-info-card:not(:last-child) {
    margin-right: 1px;
  }
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

/* No-JS fallback */

.rc-info-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/* JS enabled hidden state */

.rc-info-js
.rc-info-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transform:
    translateY(60px)
    scale(0.92);

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    filter 0.8s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Slight alternate directions */

.rc-info-js
.rc-info-card:nth-child(1) {
  transform:
    translate3d(-70px, 50px, 0)
    scale(0.92);
}

.rc-info-js
.rc-info-card:nth-child(2) {
  transform:
    translate3d(0, 70px, 0)
    scale(0.9);
}

.rc-info-js
.rc-info-card:nth-child(3) {
  transform:
    translate3d(70px, 50px, 0)
    scale(0.92);
}

/* Visible state */

.rc-info-js
.rc-info-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translate3d(0, 0, 0)
    scale(1);
}

/* Stagger timing */

.rc-info-js
.rc-info-card:nth-child(1) {
  transition-delay: 0.08s;
}

.rc-info-js
.rc-info-card:nth-child(2) {
  transition-delay: 0.2s;
}

.rc-info-js
.rc-info-card:nth-child(3) {
  transition-delay: 0.32s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcInfoRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcInfoGlowLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(42px, 24px, 0)
      scale(1.08);
  }
}

@keyframes rcInfoGlowRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-44px, -28px, 0)
      scale(1.1);
  }
}

@keyframes rcInfoIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes rcInfoIconOrbit {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {
  .rc-info-section {
    padding:
      80px
      22px
      90px;
  }

  .rc-info-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rc-info-card {
    min-height: auto;
  }

  .rc-info-js
  .rc-info-card:nth-child(1),
  .rc-info-js
  .rc-info-card:nth-child(2),
  .rc-info-js
  .rc-info-card:nth-child(3) {
    transform:
      translateY(60px)
      scale(0.94);
  }

  .rc-info-js
  .rc-info-card.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {
  .rc-info-section {
    padding:
      68px
      16px
      78px;
  }

  .rc-info-card {
    padding:
      27px
      20px
      25px;

    flex-direction: column;
    gap: 19px;

    border-radius: 21px;
  }

  .rc-info-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;

    border-radius: 15px;

    font-size: 19px;
  }

  .rc-info-content {
    width: 100%;
  }

  .rc-info-content h3 {
    margin-bottom: 17px;

    font-size: 19px;
  }

  .rc-info-number {
    top: -62px;
    right: 0;

    font-size: 62px;
  }

  .rc-info-content address {
    font-size: 13px;
  }

  .rc-info-link {
    min-height: 74px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-info-section::after,
  .rc-info-glow,
  .rc-info-icon,
  .rc-info-icon::before {
    animation: none !important;
  }

  .rc-info-js
  .rc-info-reveal {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}
/*--------------------------------------------echeque---------------------------------------------*/

/* =====================================================
   BILLING DETAILS SECTION
===================================================== */

.rc-billing-section {
  position: relative;
  width: 100%;
  padding: 100px 24px 115px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 22%,
      rgba(57, 221, 213, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(99, 78, 207, 0.09),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f8faff 0%,
      #f3f6fc 50%,
      #f8f9fe 100%
    );
}

.rc-billing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  opacity: 0.25;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.028) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.028) 1px,
      transparent 1px
    );

  background-size: 54px 54px;
}

.rc-billing-section::after {
  content: "";
  position: absolute;
  top: -310px;
  right: -190px;
  z-index: -4;

  width: 640px;
  height: 640px;

  border: 1px solid rgba(98, 77, 204, 0.07);
  border-radius: 50%;

  box-shadow:
    0 0 0 78px rgba(98, 77, 204, 0.022),
    0 0 0 150px rgba(57, 221, 213, 0.015);

  animation: rcBillingBackgroundSpin 26s linear infinite;
}

/* Background glows */

.rc-billing-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(15px);
}

.rc-billing-glow-left {
  top: 150px;
  left: -180px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(
      circle,
      rgba(55, 222, 214, 0.14),
      transparent 70%
    );

  animation:
    rcBillingGlowLeft 10s ease-in-out infinite alternate;
}

.rc-billing-glow-right {
  right: -190px;
  bottom: -170px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(
      circle,
      rgba(101, 63, 211, 0.12),
      transparent 70%
    );

  animation:
    rcBillingGlowRight 12s ease-in-out infinite alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rc-billing-container {
  position: relative;
  z-index: 2;

  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(540px, 1.18fr)
    minmax(340px, 0.82fr);

  align-items: stretch;
  gap: 24px;
}

/* =====================================================
   SHARED CARD STYLE
===================================================== */

.rc-billing-card,
.rc-billing-info-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(59, 73, 140, 0.075);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(247, 249, 255, 0.97)
    );

  box-shadow:
    0 25px 70px rgba(20, 28, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.rc-billing-card::before,
.rc-billing-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6654d7
    );

  transform: translateX(-50%);

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-billing-card.is-visible::before,
.rc-billing-info-card.is-visible::before {
  width: 72%;
}

/* =====================================================
   BILLING FORM CARD
===================================================== */

.rc-billing-card {
  padding: 34px 34px 30px;
}

.rc-billing-card-heading {
  margin-bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.rc-billing-heading-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;
  flex: 0 0 50px;

  border-radius: 15px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 13px 30px rgba(66, 77, 177, 0.22);

  font-size: 19px;

  animation:
    rcBillingHeadingFloat 4.5s ease-in-out infinite;
}

.rc-billing-card-heading > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-billing-card-heading span {
  color: #8b93a7;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rc-billing-card-heading h2 {
  margin: 0;

  color: #3158d4;

  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

/* =====================================================
   FORM GRID
===================================================== */

.rc-billing-grid {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 17px 16px;
}

.rc-billing-field {
  grid-column: span 3;
}

.rc-billing-full {
  grid-column: 1 / -1;
}

.rc-billing-city {
  grid-column: span 3;
}

.rc-billing-state {
  grid-column: span 2;
}

.rc-billing-zip {
  grid-column: span 1;
}

/* =====================================================
   FORM FIELDS
===================================================== */

.rc-billing-field label {
  margin-bottom: 8px;

  display: flex;
  align-items: center;
  gap: 6px;

  color: #242c49;

  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.rc-billing-field label i {
  color: #6654d7;
  font-size: 11px;
}

.rc-billing-input-wrap {
  position: relative;
}

.rc-billing-input-wrap input {
  width: 100%;
  height: 43px;
  padding: 9px 13px;

  border: 1px solid rgba(64, 77, 136, 0.18);
  border-radius: 9px;
  outline: none;

  color: #25304c;
  background: rgba(255, 255, 255, 0.75);

  font: inherit;
  font-size: 13px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.rc-billing-input-wrap input:focus {
  border-color: rgba(73, 211, 202, 0.65);

  background: #ffffff;

  box-shadow:
    0 0 0 4px rgba(59, 222, 214, 0.09);
}

.rc-billing-focus-line {
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6654d7
    );

  transform: translateX(-50%);

  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-billing-input-wrap:focus-within
.rc-billing-focus-line {
  width: calc(100% - 16px);
}

/* Amount */

.rc-billing-amount-wrap input {
  padding-left: 30px;
}

.rc-billing-currency {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 2;

  color: #6654d7;

  font-size: 13px;
  font-weight: 800;

  transform: translateY(-50%);
}

/* Password visibility */

.rc-billing-toggle {
  position: absolute;
  top: 50%;
  right: 8px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 8px;

  color: #8e96a8;
  background: transparent;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.rc-billing-toggle:hover {
  color: #6654d7;
  background: rgba(102, 84, 215, 0.07);
}

.rc-billing-input-wrap:has(.rc-billing-toggle) input {
  padding-right: 43px;
}

/* Errors */

.rc-billing-error {
  margin-top: 5px;

  display: none;

  color: #d9534f;

  font-size: 10px;
  line-height: 1.4;
}

.rc-billing-field.has-error
.rc-billing-error {
  display: block;
}

.rc-billing-field.has-error input {
  border-color: rgba(217, 83, 79, 0.55);

  box-shadow:
    0 0 0 3px rgba(217, 83, 79, 0.07);
}

/* =====================================================
   CONSENT
===================================================== */

.rc-billing-consent {
  margin: 22px 0 18px;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #6f788d;

  font-size: 11px;
  line-height: 1.55;

  cursor: pointer;
}

.rc-billing-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rc-billing-checkbox {
  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;
  flex: 0 0 18px;

  border: 1px solid rgba(68, 81, 142, 0.25);
  border-radius: 5px;

  color: transparent;
  background: #ffffff;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.rc-billing-consent input:checked +
.rc-billing-checkbox {
  color: #ffffff;
  border-color: #51d8ca;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6654d7
    );
}

/* =====================================================
   PAY BUTTON
===================================================== */

.rc-billing-submit {
  position: relative;

  width: 100%;
  min-height: 48px;
  padding: 13px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border: 0;
  border-radius: 10px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #396cf4,
      #2f52b5
    );

  box-shadow:
    0 14px 32px rgba(48, 82, 181, 0.24);

  font: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-billing-submit::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -85%;

  width: 38%;
  height: 200%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.48),
      transparent
    );

  transform: skewX(-20deg);

  transition: left 0.7s ease;
}

.rc-billing-submit:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 40px rgba(48, 82, 181, 0.31);
}

.rc-billing-submit:hover::before {
  left: 145%;
}

.rc-billing-submit-default,
.rc-billing-submit-loading {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rc-billing-submit-loading {
  display: none;
}

.rc-billing-submit.is-loading
.rc-billing-submit-default {
  display: none;
}

.rc-billing-submit.is-loading
.rc-billing-submit-loading {
  display: inline-flex;
}

.rc-billing-submit-loading i {
  animation: rcBillingSpinner 0.8s linear infinite;
}

/* Message */

.rc-billing-message {
  min-height: 0;
  margin-top: 14px;

  display: none;
  padding: 12px 14px;

  border-radius: 10px;

  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
}

.rc-billing-message.is-error {
  display: block;

  color: #a23d3a;
  background: rgba(217, 83, 79, 0.09);

  border: 1px solid rgba(217, 83, 79, 0.16);
}

.rc-billing-message.is-success {
  display: block;

  color: #287d5a;
  background: rgba(66, 210, 149, 0.09);

  border: 1px solid rgba(55, 180, 120, 0.18);
}

/* =====================================================
   RIGHT INFORMATION CARD
===================================================== */

.rc-billing-info-card {
  padding: 34px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.rc-billing-info-card::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  z-index: -2;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(94, 74, 204, 0.09),
      transparent 70%
    );
}

.rc-billing-info-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 18px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6652d2
    );

  box-shadow:
    0 16px 38px rgba(66, 77, 177, 0.24);

  font-size: 25px;

  animation:
    rcBillingInfoFloat 4.5s ease-in-out infinite;
}

.rc-billing-info-label {
  margin-bottom: 10px;

  color: #6654d7;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rc-billing-info-card h3 {
  max-width: 320px;
  margin: 0 0 19px;

  color: #2f58dc;

  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.rc-billing-info-card > p {
  margin: 0 0 14px;

  color: #5f687c;

  font-size: 12px;
  line-height: 1.7;
}

.rc-billing-info-divider {
  width: 100%;
  height: 1px;
  margin: 8px 0 17px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(65, 78, 139, 0.16),
      transparent
    );
}

/* Contact list */

.rc-billing-contact-list {
  width: 100%;

  display: grid;
  gap: 10px;
}

.rc-billing-contact-list a {
  position: relative;

  min-height: 68px;
  padding: 12px 35px 12px 12px;

  display: flex;
  align-items: center;
  gap: 11px;

  border: 1px solid rgba(61, 74, 141, 0.075);
  border-radius: 14px;

  color: inherit;
  background: rgba(255, 255, 255, 0.72);

  text-align: left;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.rc-billing-contact-list a:hover {
  transform: translateY(-4px);

  border-color: rgba(57, 219, 212, 0.25);

  box-shadow:
    0 15px 32px rgba(20, 28, 77, 0.09);
}

.rc-billing-contact-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;
  flex: 0 0 40px;

  border-radius: 12px;

  color: #6654d7;

  background:
    linear-gradient(
      145deg,
      rgba(59, 222, 214, 0.13),
      rgba(102, 82, 210, 0.1)
    );
}

.rc-billing-contact-list a > span:nth-child(2) {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-billing-contact-list small {
  color: #8d95a8;

  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.rc-billing-contact-list strong {
  overflow-wrap: anywhere;

  color: #27304e;

  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.rc-billing-contact-list a > i {
  position: absolute;
  top: 50%;
  right: 13px;

  color: #9ba2b2;

  font-size: 10px;

  transform: translateY(-50%);
}

/* Security card */

.rc-billing-security {
  width: 100%;
  margin-top: 18px;
  padding: 14px;

  display: flex;
  align-items: flex-start;
  gap: 11px;

  border: 1px solid rgba(59, 222, 214, 0.14);
  border-radius: 14px;

  color: #6654d7;

  background:
    linear-gradient(
      135deg,
      rgba(59, 222, 214, 0.08),
      rgba(101, 82, 209, 0.07)
    );

  text-align: left;
}

.rc-billing-security > i {
  margin-top: 2px;
  font-size: 17px;
}

.rc-billing-security div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-billing-security strong {
  color: #27304e;

  font-size: 11px;
  line-height: 1.3;
}

.rc-billing-security span {
  color: #798196;

  font-size: 9px;
  line-height: 1.5;
}

/* Decorative orbits */

.rc-billing-orbit {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(94, 74, 204, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.rc-billing-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #46ddd6;

  box-shadow:
    0 0 17px rgba(70, 221, 214, 0.8);
}

.rc-billing-orbit-one {
  top: -30px;
  right: -30px;

  width: 110px;
  height: 110px;

  animation:
    rcBillingOrbitSpin 13s linear infinite;
}

.rc-billing-orbit-two {
  left: -35px;
  bottom: -35px;

  width: 140px;
  height: 140px;

  border-style: dashed;

  animation:
    rcBillingOrbitReverse 17s linear infinite;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

.rc-billing-reveal {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
}

.rc-billing-js
.rc-billing-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-billing-js
.rc-billing-card.rc-billing-reveal {
  transform:
    translate3d(-90px, 55px, 0)
    rotateY(6deg)
    scale(0.92);
}

.rc-billing-js
.rc-billing-info-card.rc-billing-reveal {
  transform:
    translate3d(90px, 55px, 0)
    scale(0.92);
}

.rc-billing-js
.rc-billing-reveal.is-visible {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}

.rc-billing-js
.rc-billing-card.rc-billing-reveal.is-visible,
.rc-billing-js
.rc-billing-info-card.rc-billing-reveal.is-visible {
  transform:
    translate3d(0, 0, 0)
    rotateY(0)
    scale(1);
}

/* Form fields stagger */

.rc-billing-js
.rc-billing-field {
  opacity: 0;
  transform: translateY(22px);

  transition:
    opacity 0.6s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field {
  opacity: 1;
  transform: translateY(0);
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(1) {
  transition-delay: 0.1s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(2) {
  transition-delay: 0.16s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(3) {
  transition-delay: 0.22s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(4) {
  transition-delay: 0.28s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(5) {
  transition-delay: 0.34s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(6) {
  transition-delay: 0.4s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(7) {
  transition-delay: 0.46s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(8) {
  transition-delay: 0.52s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(9) {
  transition-delay: 0.58s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(10) {
  transition-delay: 0.64s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(11) {
  transition-delay: 0.7s;
}

.rc-billing-js
.rc-billing-card.is-visible
.rc-billing-field:nth-child(12) {
  transition-delay: 0.76s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcBillingBackgroundSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcBillingGlowLeft {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(42px, 28px, 0) scale(1.09);
  }
}

@keyframes rcBillingGlowRight {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-47px, -30px, 0) scale(1.1);
  }
}

@keyframes rcBillingHeadingFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes rcBillingInfoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
}

@keyframes rcBillingSpinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcBillingOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcBillingOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 980px) {
  .rc-billing-section {
    padding: 85px 22px 95px;
  }

  .rc-billing-container {
    grid-template-columns: 1fr;
  }

  .rc-billing-info-card {
    min-height: auto;
  }

  .rc-billing-js
  .rc-billing-card.rc-billing-reveal,
  .rc-billing-js
  .rc-billing-info-card.rc-billing-reveal {
    transform:
      translateY(65px)
      scale(0.94);
  }

  .rc-billing-js
  .rc-billing-reveal.is-visible {
    transform:
      translateY(0)
      scale(1);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .rc-billing-section {
    padding: 70px 16px 80px;
  }

  .rc-billing-card {
    padding: 28px 20px 25px;
    border-radius: 22px;
  }

  .rc-billing-info-card {
    padding: 29px 20px;
    border-radius: 22px;
  }

  .rc-billing-grid {
    grid-template-columns: 1fr;
  }

  .rc-billing-field,
  .rc-billing-full,
  .rc-billing-city,
  .rc-billing-state,
  .rc-billing-zip {
    grid-column: 1 / -1;
  }

  .rc-billing-card-heading {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .rc-billing-card {
    padding: 25px 16px 22px;
  }

  .rc-billing-card-heading h2 {
    font-size: 19px;
  }

  .rc-billing-info-card h3 {
    font-size: 18px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-billing-section::after,
  .rc-billing-glow,
  .rc-billing-heading-icon,
  .rc-billing-info-icon,
  .rc-billing-orbit {
    animation: none !important;
  }

  .rc-billing-js
  .rc-billing-reveal,
  .rc-billing-js
  .rc-billing-field {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/*--------------------------------------privacy-----------------------*/
/* =====================================================
   PRIVACY POLICY SECTION
===================================================== */

.rc-privacy-section {
  position: relative;
  width: 100%;
  padding: 120px 24px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(57, 221, 213, 0.1),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(102, 82, 209, 0.1),
      transparent 29%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9ff 100%
    );
}

.rc-privacy-container {
  position: relative;
  z-index: 2;

  width: min(1080px, 100%);
  margin: 0 auto;
}

/* =====================================================
   BACKGROUND
===================================================== */

.rc-privacy-bg,
.rc-privacy-grid {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.rc-privacy-bg {
  z-index: -2;
}

.rc-privacy-grid {
  opacity: 0.3;

  background-image:
    linear-gradient(
      rgba(48, 59, 120, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(48, 59, 120, 0.03) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );
}

.rc-privacy-orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(10px);
}

.rc-privacy-orb-one {
  top: 70px;
  left: -180px;

  width: 390px;
  height: 390px;

  background:
    radial-gradient(
      circle,
      rgba(57, 221, 213, 0.17),
      transparent 70%
    );

  animation:
    rcPrivacyOrbOne 11s ease-in-out infinite alternate;
}

.rc-privacy-orb-two {
  right: -180px;
  bottom: 80px;

  width: 430px;
  height: 430px;

  background:
    radial-gradient(
      circle,
      rgba(102, 82, 209, 0.14),
      transparent 70%
    );

  animation:
    rcPrivacyOrbTwo 13s ease-in-out infinite alternate;
}

/* =====================================================
   HEADING
===================================================== */

.rc-privacy-heading {
  position: relative;

  margin-bottom: 42px;
  padding: 45px 48px;

  overflow: hidden;

  border: 1px solid rgba(55, 70, 140, 0.08);
  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 249, 255, 0.96)
    );

  box-shadow:
    0 28px 75px rgba(20, 28, 77, 0.11);
}

.rc-privacy-heading::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 74%;
  height: 4px;

  border-radius: 0 0 50px 50px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6753d2
    );

  transform: translateX(-50%);
}

.rc-privacy-heading::after {
  content: "";

  position: absolute;
  top: -140px;
  right: -100px;
  z-index: -1;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(102, 82, 209, 0.1),
      transparent 70%
    );
}

.rc-privacy-label {
  margin-bottom: 17px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6753d2;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-privacy-label span {
  width: 30px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6753d2
    );
}

.rc-privacy-heading h1 {
  margin: 0 0 16px;

  color: #202750;

  font-size: clamp(48px, 7vw, 28px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -4px;
}

.rc-privacy-heading p {
  margin: 0;

  color: #687186;

  font-size: 14px;
  line-height: 1.7;
}

.rc-privacy-heading a {
  color: #35bfae;

  font-weight: 700;
  text-decoration: none;

  transition: color 0.3s ease;
}

.rc-privacy-heading a:hover {
  color: #6753d2;
}

/* =====================================================
   CONTENT
===================================================== */

.rc-privacy-content {
  display: grid;
  gap: 20px;
}

/* =====================================================
   PRIVACY BLOCK
===================================================== */

.rc-privacy-block {
  position: relative;

  padding: 34px 38px;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(55, 70, 140, 0.075);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(248, 250, 255, 0.96)
    );

  box-shadow:
    0 15px 45px rgba(20, 28, 77, 0.07);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-privacy-block::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 4px;
  height: 0;

  border-radius: 0 20px 20px 0;

  background:
    linear-gradient(
      to bottom,
      #3bded6,
      #6753d2
    );

  transition:
    height 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-privacy-block.is-visible::before,
.rc-privacy-block:hover::before {
  height: 100%;
}

.rc-privacy-block::after {
  content: "";

  position: absolute;
  top: -110px;
  right: -110px;
  z-index: -2;

  width: 230px;
  height: 230px;

  border-radius: 50%;

  opacity: 0;

  background:
    radial-gradient(
      circle,
      rgba(57, 221, 213, 0.12),
      transparent 70%
    );

  transition: opacity 0.4s ease;
}

.rc-privacy-block:hover {
  transform: translateY(-6px);

  border-color:
    rgba(57, 221, 213, 0.22);

  box-shadow:
    0 27px 62px rgba(20, 28, 77, 0.11);
}

.rc-privacy-block:hover::after {
  opacity: 1;
}

.rc-privacy-block-number {
  position: absolute;
  top: 10px;
  right: 24px;
  z-index: -1;

  color: rgba(87, 76, 181, 0.05);

  font-size: 76px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -6px;
}

.rc-privacy-block h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 16px;

  color: #202750;

  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.rc-privacy-block p {
  position: relative;
  z-index: 2;

  margin: 0 0 14px;

  color: #626b7f;

  font-size: 14px;
  line-height: 1.85;
}

.rc-privacy-block p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   LIST
===================================================== */

.rc-privacy-block ul {
  position: relative;
  z-index: 2;

  margin: 19px 0 0;
  padding: 0;

  display: grid;
  gap: 11px;

  list-style: none;
}

.rc-privacy-block li {
  position: relative;

  padding: 13px 15px 13px 42px;

  border: 1px solid rgba(55, 70, 140, 0.07);
  border-radius: 13px;

  color: #626b7f;
  background: rgba(255, 255, 255, 0.76);

  font-size: 13px;
  line-height: 1.65;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.rc-privacy-block li:hover {
  transform: translateX(5px);

  border-color:
    rgba(57, 221, 213, 0.22);
}

.rc-privacy-block li::before {
  content: "✓";

  position: absolute;
  top: 13px;
  left: 14px;

  width: 19px;
  height: 19px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6753d2
    );

  font-size: 10px;
  font-weight: 800;
}

/* =====================================================
   SCROLL TEXT ANIMATION
===================================================== */

.rc-privacy-animate {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

.rc-privacy-js
.rc-privacy-animate {
  opacity: 0;
  visibility: hidden;

  filter: blur(7px);

  transform:
    translateY(55px)
    scale(0.96);

  transition:
    opacity 0.85s ease,
    visibility 0.85s ease,
    filter 0.85s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-privacy-js
.rc-privacy-animate.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translateY(0)
    scale(1);
}

/* Text inside block */

.rc-privacy-js
.rc-privacy-block h2,
.rc-privacy-js
.rc-privacy-block p,
.rc-privacy-js
.rc-privacy-block li {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.65s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-privacy-js
.rc-privacy-block.is-visible h2,
.rc-privacy-js
.rc-privacy-block.is-visible p,
.rc-privacy-js
.rc-privacy-block.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

.rc-privacy-js
.rc-privacy-block.is-visible h2 {
  transition-delay: 0.12s;
}

.rc-privacy-js
.rc-privacy-block.is-visible p:nth-of-type(1) {
  transition-delay: 0.23s;
}

.rc-privacy-js
.rc-privacy-block.is-visible p:nth-of-type(2) {
  transition-delay: 0.32s;
}

.rc-privacy-js
.rc-privacy-block.is-visible p:nth-of-type(3) {
  transition-delay: 0.41s;
}

.rc-privacy-js
.rc-privacy-block.is-visible li:nth-child(1) {
  transition-delay: 0.34s;
}

.rc-privacy-js
.rc-privacy-block.is-visible li:nth-child(2) {
  transition-delay: 0.43s;
}

.rc-privacy-js
.rc-privacy-block.is-visible li:nth-child(3) {
  transition-delay: 0.52s;
}

/* =====================================================
   BACKGROUND ANIMATIONS
===================================================== */

@keyframes rcPrivacyOrbOne {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(44px, 28px, 0)
      scale(1.1);
  }
}

@keyframes rcPrivacyOrbTwo {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-48px, -30px, 0)
      scale(1.09);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {
  .rc-privacy-section {
    padding: 95px 20px;
  }

  .rc-privacy-heading {
    padding: 38px 34px;
  }

  .rc-privacy-block {
    padding: 30px 31px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {
  .rc-privacy-section {
    padding: 75px 15px;
  }

  .rc-privacy-heading {
    margin-bottom: 30px;
    padding: 30px 21px;

    border-radius: 21px;
  }

  .rc-privacy-heading h1 {
    font-size: 44px;
    letter-spacing: -2.7px;
  }

  .rc-privacy-heading p {
    font-size: 12px;
  }

  .rc-privacy-content {
    gap: 15px;
  }

  .rc-privacy-block {
    padding: 26px 21px;

    border-radius: 18px;
  }

  .rc-privacy-block-number {
    right: 16px;

    font-size: 62px;
  }

  .rc-privacy-block h2 {
    font-size: 17px;
  }

  .rc-privacy-block p {
    font-size: 13px;
    line-height: 1.75;
  }

  .rc-privacy-block li {
    padding:
      12px
      12px
      12px
      38px;

    font-size: 12px;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-privacy-orb {
    animation: none !important;
  }

  .rc-privacy-js
  .rc-privacy-animate,
  .rc-privacy-js
  .rc-privacy-block h2,
  .rc-privacy-js
  .rc-privacy-block p,
  .rc-privacy-js
  .rc-privacy-block li {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}

/*---------------------------------Disclaimer--------------------------------*/
/* =====================================================
   LEGAL DISCLAIMER SECTION
===================================================== */

.rc-disclaimer-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;

  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 7% 20%,
      rgba(57, 221, 213, 0.1),
      transparent 26%
    ),
    radial-gradient(
      circle at 93% 78%,
      rgba(102, 82, 209, 0.1),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9ff 100%
    );
}

/* =====================================================
   BACKGROUND DESIGN
===================================================== */

.rc-disclaimer-background,
.rc-disclaimer-grid {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.rc-disclaimer-background {
  z-index: -4;
}

.rc-disclaimer-grid {
  opacity: 0.3;

  background-image:
    linear-gradient(
      rgba(46, 58, 118, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(46, 58, 118, 0.03) 1px,
      transparent 1px
    );

  background-size: 52px 52px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

.rc-disclaimer-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
  filter: blur(15px);
}

.rc-disclaimer-orb-left {
  top: 30px;
  left: -170px;

  width: 370px;
  height: 370px;

  background:
    radial-gradient(
      circle,
      rgba(57, 221, 213, 0.15),
      transparent 70%
    );

  animation:
    rcDisclaimerOrbLeft
    10s
    ease-in-out
    infinite
    alternate;
}

.rc-disclaimer-orb-right {
  right: -180px;
  bottom: -120px;

  width: 420px;
  height: 420px;

  background:
    radial-gradient(
      circle,
      rgba(102, 82, 209, 0.13),
      transparent 70%
    );

  animation:
    rcDisclaimerOrbRight
    12s
    ease-in-out
    infinite
    alternate;
}

/* =====================================================
   CONTAINER
===================================================== */

.rc-disclaimer-container {
  position: relative;
  z-index: 2;

  width: min(1220px, 100%);
  margin: 0 auto;
}

/* =====================================================
   MAIN DISCLAIMER CARD
===================================================== */

.rc-disclaimer-card {
  position: relative;

  min-height: 340px;
  padding: 50px 320px 50px 52px;

  display: flex;
  align-items: center;

  overflow: hidden;
  isolation: isolate;

  border: 1px solid rgba(59, 73, 140, 0.08);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 249, 255, 0.97)
    );

  box-shadow:
    0 28px 78px rgba(20, 28, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.rc-disclaimer-card::before {
  content: "";

  position: absolute;
  top: -190px;
  right: -120px;
  z-index: -3;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(103, 82, 210, 0.12),
      transparent 70%
    );
}

.rc-disclaimer-card::after {
  content: "";

  position: absolute;
  left: -170px;
  bottom: -220px;
  z-index: -3;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(57, 221, 213, 0.11),
      transparent 70%
    );
}

.rc-disclaimer-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(57, 221, 213, 0.24);

  box-shadow:
    0 40px 95px rgba(20, 28, 77, 0.17),
    0 0 35px rgba(57, 221, 213, 0.07);
}

/* Top gradient line */

.rc-disclaimer-top-line {
  position: absolute;
  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6753d2
    );

  transform: translateX(-50%);

  transition:
    width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-disclaimer-card.is-visible
.rc-disclaimer-top-line,
.rc-disclaimer-card:hover
.rc-disclaimer-top-line {
  width: 76%;
}

/* =====================================================
   CONTENT
===================================================== */

.rc-disclaimer-content {
  position: relative;
  z-index: 3;

  max-width: 850px;
}

.rc-disclaimer-label {
  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #6753d2;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.rc-disclaimer-label span {
  width: 30px;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      #3bded6,
      #6753d2
    );
}

.rc-disclaimer-content h2 {
  margin: 0 0 22px;

  color: #202750;

  font-size: clamp(35px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2.7px;
}

.rc-disclaimer-content p {
  margin: 0 0 15px;

  color: #616a7f;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 400;
}

.rc-disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* =====================================================
   RIGHT VISUAL
===================================================== */

.rc-disclaimer-visual {
  position: absolute;
  top: 50%;
  right: 55px;

  width: 210px;
  height: 210px;

  display: grid;
  place-items: center;

  transform: translateY(-50%);
}

.rc-disclaimer-number {
  position: absolute;
  top: 50%;
  left: 50%;

  color: rgba(84, 76, 180, 0.06);

  font-size: 125px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -10px;

  transform:
    translate(-50%, -50%)
    rotate(-8deg);
}

.rc-disclaimer-icon {
  position: relative;
  z-index: 4;

  width: 100px;
  height: 100px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(63, 76, 139, 0.08);
  border-radius: 28px;

  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      #3bded6,
      #6753d2
    );

  box-shadow:
    0 20px 48px rgba(65, 77, 180, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);

  font-size: 37px;

  animation:
    rcDisclaimerIconFloat
    4.5s
    ease-in-out
    infinite;
}

.rc-disclaimer-icon::before {
  content: "";

  position: absolute;
  inset: -9px;

  border: 1px dashed rgba(57, 221, 213, 0.27);
  border-radius: 35px;

  animation:
    rcDisclaimerIconSpin
    13s
    linear
    infinite;
}

.rc-disclaimer-icon::after {
  content: "";

  position: absolute;
  top: 50%;
  left: -14px;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #48ddd5;

  box-shadow:
    0 0 18px rgba(72, 221, 213, 0.85);
}

/* Decorative rings */

.rc-disclaimer-ring {
  position: absolute;

  border: 1px solid rgba(101, 82, 209, 0.13);
  border-radius: 50%;
}

.rc-disclaimer-ring::before {
  content: "";

  position: absolute;
  top: 50%;
  left: -4px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #3bded6;

  box-shadow:
    0 0 15px rgba(59, 222, 214, 0.8);
}

.rc-disclaimer-ring-one {
  width: 160px;
  height: 160px;

  animation:
    rcDisclaimerRingSpin
    16s
    linear
    infinite;
}

.rc-disclaimer-ring-two {
  width: 205px;
  height: 205px;

  border-style: dashed;

  animation:
    rcDisclaimerRingReverse
    22s
    linear
    infinite;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */

/* JavaScript unavailable ho to section visible rahega */

.rc-disclaimer-reveal {
  opacity: 1;
  visibility: visible;

  filter: none;
  transform: none;
}

/* JavaScript enabled hidden state */

.rc-disclaimer-js
.rc-disclaimer-reveal {
  opacity: 0;
  visibility: hidden;

  filter: blur(8px);

  transform:
    translateY(70px)
    scale(0.94);

  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    filter 0.9s ease,
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-disclaimer-js
.rc-disclaimer-reveal.is-visible {
  opacity: 1;
  visibility: visible;

  filter: blur(0);

  transform:
    translateY(0)
    scale(1);
}

/* Inner text animation */

.rc-disclaimer-js
.rc-disclaimer-label,
.rc-disclaimer-js
.rc-disclaimer-content h2,
.rc-disclaimer-js
.rc-disclaimer-content p,
.rc-disclaimer-js
.rc-disclaimer-visual {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-label,
.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-content h2,
.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-content p {
  opacity: 1;
  transform: translateY(0);
}

.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-label {
  transition-delay: 0.13s;
}

.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-content h2 {
  transition-delay: 0.25s;
}

.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-content p:nth-of-type(1) {
  transition-delay: 0.37s;
}

.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-content p:nth-of-type(2) {
  transition-delay: 0.49s;
}

.rc-disclaimer-js
.rc-disclaimer-card.is-visible
.rc-disclaimer-visual {
  opacity: 1;

  transform:
    translateY(-50%)
    scale(1);

  transition-delay: 0.35s;
}

/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes rcDisclaimerOrbLeft {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(45px, 27px, 0)
      scale(1.09);
  }
}

@keyframes rcDisclaimerOrbRight {
  from {
    transform:
      translate3d(0, 0, 0)
      scale(1);
  }

  to {
    transform:
      translate3d(-48px, -30px, 0)
      scale(1.1);
  }
}

@keyframes rcDisclaimerIconFloat {
  0%,
  100% {
    transform:
      translateY(0)
      rotate(0);
  }

  50% {
    transform:
      translateY(-9px)
      rotate(-3deg);
  }
}

@keyframes rcDisclaimerIconSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcDisclaimerRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rcDisclaimerRingReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {
  .rc-disclaimer-section {
    padding: 85px 22px;
  }

  .rc-disclaimer-card {
    padding:
      48px
      245px
      48px
      42px;
  }

  .rc-disclaimer-visual {
    right: 25px;

    width: 180px;
    height: 180px;
  }

  .rc-disclaimer-icon {
    width: 85px;
    height: 85px;

    font-size: 31px;
  }

  .rc-disclaimer-ring-one {
    width: 140px;
    height: 140px;
  }

  .rc-disclaimer-ring-two {
    width: 180px;
    height: 180px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
  .rc-disclaimer-section {
    padding: 70px 16px;
  }

  .rc-disclaimer-card {
    min-height: auto;
    padding: 32px 22px 36px;

    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 28px;

    border-radius: 23px;
  }

  .rc-disclaimer-visual {
    position: relative;
    top: auto;
    right: auto;

    width: 145px;
    height: 145px;

    transform: none;
  }

  .rc-disclaimer-js
  .rc-disclaimer-visual {
    transform:
      translateY(25px)
      scale(0.9);
  }

  .rc-disclaimer-js
  .rc-disclaimer-card.is-visible
  .rc-disclaimer-visual {
    transform:
      translateY(0)
      scale(1);
  }

  .rc-disclaimer-icon {
    width: 72px;
    height: 72px;

    border-radius: 21px;

    font-size: 27px;
  }

  .rc-disclaimer-ring-one {
    width: 110px;
    height: 110px;
  }

  .rc-disclaimer-ring-two {
    width: 145px;
    height: 145px;
  }

  .rc-disclaimer-number {
    font-size: 88px;
  }

  .rc-disclaimer-content h2 {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .rc-disclaimer-content p {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .rc-disclaimer-orb,
  .rc-disclaimer-icon,
  .rc-disclaimer-icon::before,
  .rc-disclaimer-ring {
    animation: none !important;
  }

  .rc-disclaimer-js
  .rc-disclaimer-reveal,
  .rc-disclaimer-js
  .rc-disclaimer-label,
  .rc-disclaimer-js
  .rc-disclaimer-content h2,
  .rc-disclaimer-js
  .rc-disclaimer-content p,
  .rc-disclaimer-js
  .rc-disclaimer-visual {
    opacity: 1 !important;
    visibility: visible !important;

    filter: none !important;
    transform: none !important;

    transition: none !important;
  }
}