@import url("theme.css");

/* ===========================
   RESET
=========================== */

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

#app-content.is-navigating {
  opacity: 0.72;
  transition: opacity 0.18s ease;
}

html.falcon-spa-pending #app-content {
  visibility: hidden;
}

body {
  font-family: var(--font-body);

  background: var(--color-bg-body);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

:root {
  /* Pill footprint + shared air so EVERY page’s hero copy starts at the same Y */
  --header-stack: calc(16px + 14px + 54px + 14px);
  /* Desktop = sticky top 16 + stack + 64px air (matches home / contact) */
  --header-clearance: calc(16px + var(--header-stack) + 64px);
}

.container {
  width: 100%;
  max-width: var(--site-container-max-width);
  padding: 0 var(--site-container-inline-padding);
  margin: 0 auto;
}

.loader {
  position: relative;
  isolation: isolate;
  background: var(--color-white);
  overflow-x: clip;
}

/* Home hero shell — photo background (header + hero share one backdrop) */
.main-hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: none;
}

/* Background on a pseudo-layer so RTL can mirror it without flipping hero content */
.main-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--image-hero-background) center top / cover no-repeat;
  border-radius: inherit;
  pointer-events: none;
}

/* Home: header is a body-level sticky layer (not inside .loader overflow clip) */
.page-home #site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  background: transparent;
  /* Pull main-hero up so lavender still sits behind the pill */
  margin-bottom: calc(-1 * var(--header-stack));
}

.page-home .main-hero {
  padding-top: 0;
}

/* Home hero: same shared --header-clearance as about / services / web */
.page-home .hero {
  padding-top: var(--header-clearance);
  padding-bottom: clamp(2rem, 12vh, 6rem);
  box-sizing: border-box;
}





/* ===========================
   NAVBAR (extended from falcon-new-design)
   Layer stack: #site-header (top) → hero/content (below)
=========================== */

/* Sticky layer lives on the wrapper (same idea as falcon-new-design) */
#site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}

#site-header.is-hidden {
  transform: translateY(calc(-100% - 20px));
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #site-header {
    transition: none;
  }
}

.site-header {
  padding: 16px var(--nav-header-gutter) 0;
}

.site-header .nav {
  max-width: var(--nav-header-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px var(--nav-padding-x);
  background: var(--gradient-header);
  border-radius: var(--nav-radius-pill);
  box-shadow: var(--shadow-nav);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
  font-family: "Cairo", sans-serif;
}

.nav-actions {
  display: flex;
  gap: 8px;
  animation: fadeUp 1s 0.6s both;
  align-items: center;
}

.btn.btn-nav.lang-toggle {
  background: var(--color-white-glass);
  border: 1px solid var(--color-white);
  cursor: pointer;
  font: inherit;
}

/*
  About / Services: paint transparent FIRST (no purple flash on load).
  JS only adds .nav--solid after the hero leaves the viewport.
*/
.page-about .site-header .nav {
  background: transparent;
  box-shadow: none;
}

.page-about .site-header .nav .btn-nav {
  background: var(--color-white-12);
  color: var(--color-white);
  border: 1px solid var(--color-white-22);
  box-shadow: none;
}

.page-about .site-header .nav .btn-nav:hover {
  background: var(--color-white-20);
}

.page-about .site-header .nav.nav--solid,
.page-services .site-header .nav,
.page-services .site-header .nav.nav--solid {
  background: var(--gradient-header);
  box-shadow: var(--shadow-nav);
}

.page-about .site-header .nav.nav--solid .btn-nav,
.page-services .site-header .nav .btn-nav,
.page-services .site-header .nav.nav--solid .btn-nav {
  background: var(--nav-white);
  color: var(--nav-rebecca);
  border: 1px solid transparent;
}

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  position: relative;
  color: var(--color-white-92);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-bottom: 4px;
  transition:
    opacity 0.15s,
    color 0.15s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--nav-white);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.85;
  color: var(--color-text-nav-muted);
}

.nav-links a.is-active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nav-white);
  color: var(--nav-rebecca);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 10px 22px;
  border-radius: var(--nav-radius-pill);
  white-space: nowrap;
  transition:
    transform 0.12s,
    box-shadow 0.15s;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nav-mobile-bar-bg);
  border-radius: 2px;
}

/* Mobile bottom tab bar — own layer so page transform/filter animations don't jank it */
#site-mobile-nav {
  position: relative;
  z-index: 200;
  isolation: isolate;
  pointer-events: none;
}

#site-mobile-nav .mobile-tabbar {
  pointer-events: auto;
}

.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-around;
  gap: 2px;
  width: 100%;
  padding: 5px 8px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--nav-mobile-bar-bg);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(147, 84, 183, 0.08);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(35, 73, 118, 0.1);
  /* Promote to compositor; ignore ancestor visual effects */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.mobile-tabbar-indicator {
  position: absolute;
  top: 10px;
  left: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-mobile-tab);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(147, 84, 183, 0.35);
  transition: transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
}

.mobile-tabbar::after {
  content: "";
  position: absolute;
  bottom: calc(4px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--color-brand-mid);
  border-radius: 99px;
  opacity: 0.7;
}

.mobile-tab {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 6px 4px 14px;
  color: var(--color-text-tab-inactive);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.25s ease;
}

.mobile-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  transition:
    color 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.mobile-tab-label {
  display: none;
}

.mobile-tab.is-active {
  color: var(--nav-white);
}

.mobile-tab.is-active .mobile-tab-icon {
  color: var(--nav-white);
  transform: scale(1.02);
}

.mobile-tab:not(.is-active):active .mobile-tab-icon {
  transform: scale(0.92);
}

@media (prefers-reduced-motion: reduce) {

  .mobile-tabbar-indicator,
  .mobile-tab-icon {
    transition: none;
  }
}

/* Header demo page */
.page-header-demo {
  min-height: 100vh;
  background: var(--gradient-stats);
}

/* Legacy navbar helpers (kept for about/services pages still using old markup) */
.navbar {
  height: 82px;
  background: var(--gradient-brand-horizontal);
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-shadow: var(--shadow-nav);
}

.logo img {
  width: 120px;
}

.nav-menu {
  display: flex;
  gap: 38px;
}

.nav-menu a {
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--color-text-nav-muted);
}

.nav-menu .active {
  position: relative;
}

.nav-btn {
  width: 155px;
  height: 52px;
  border-radius: 60px;
  background: white;
  color: var(--color-link-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  transition: 0.35s;
}

.nav-btn:hover {
  transform: translateY(-5px);
}

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

.hero {
  position: relative;
  z-index: 1;
  padding: 50px 0;
  background: transparent;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 70px;
  row-gap: 28px;
}

.page-home .hero.is-hero-loading .hero-content>.tag,
.page-home .hero.is-hero-loading .hero-content>h1,
.page-home .hero.is-hero-loading .hero-content>p {
  opacity: 0.28;
  filter: blur(0.5px);
}

.page-home .hero .hero-content>.tag,
.page-home .hero .hero-content>h1,
.page-home .hero .hero-content>p {
  transition: opacity 0.22s ease, filter 0.22s ease;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
}

/* ===========================
   EYEBROW LABEL (home — matches .about-tag)
=========================== */

.page-home .about-tag,
.page-home .tag,
.page-home .section-tag,
.page-home .projects-header .section-title,
.page-home .testimonial-header .section-title {
  display: inline-flex;
  align-items: center;
  gap: var(--eyebrow-gap);
  margin: 0;
  padding: 0;
  line-height: 1;
  color: var(--eyebrow-color);
  font-size: var(--eyebrow-font-size);
  font-weight: var(--eyebrow-font-weight);
  letter-spacing: var(--eyebrow-letter-spacing);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Consistent gap from eyebrow label → section h2 (home) */
.page-home .about-content h2,
.page-home .services-header h2,
.page-home .projects-header h2,
.page-home .testimonial-header h2 {
  margin-top: var(--eyebrow-heading-gap);
}

.page-home .projects-header,
.page-home .testimonial-header {
  align-items: flex-start;
}

.page-home .about-tag::before,
.page-home .about-tag::after,
.page-home .tag::before,
.page-home .tag::after,
.page-home .section-tag::before,
.page-home .section-tag::after,
.page-home .projects-header .section-title::before,
.page-home .projects-header .section-title::after,
.page-home .testimonial-header .section-title::before,
.page-home .testimonial-header .section-title::after {
  content: "";
  flex-shrink: 0;
  width: var(--eyebrow-line-width);
  height: var(--eyebrow-line-height);
  background: var(--eyebrow-color);
  border-radius: 2px;
}

.page-home .projects-header .view-btn,
.page-home .testimonial-header .view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--eyebrow-color);
  font-size: var(--eyebrow-font-size);
  font-weight: var(--eyebrow-font-weight);
  letter-spacing: var(--eyebrow-letter-spacing);
  text-transform: uppercase;
  transition: 0.35s;
}

.page-home .projects-header .view-btn:hover,
.page-home .testimonial-header .view-btn:hover {
  gap: 18px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);

  line-height: 1.15;

  margin-top: 12px;

  color: var(--color-text-headline);

  font-weight: 700;
}

.hero-content h1 .hero-accent {
  font-family: var(--font-heading);
  background: var(--gradient-text-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: inherit;
}

.hero-content p {
  margin-top: 28px;

  color: var(--color-text-paragraph);

  font-size: 17px;

  line-height: 1.65;

  max-width: 540px;
}

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

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.hero-actions .reviews {
  margin-top: 28px;
}

.btn-primary,
.btn-secondary,
.btn-primary1,
.btn-secondary1,
.about-btn a,
.services-btn a,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  min-height: var(--btn-height);
  height: var(--btn-height);
  padding: var(--btn-padding-block) var(--btn-padding-inline);
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
  transition: 0.35s;
}

.btn-primary,
.btn-primary1 {
  min-width: var(--btn-min-width);
}

.btn-primary,
.btn-primary1,
.about-btn a,
.services-btn a,
.contact-form button {
  border: none;
}

.btn-primary {
  background: var(--gradient-button);

  color: var(--color-white);

  box-shadow: 0 15px 35px var(--color-brand-tint-30);
}

.btn-primary:hover {
  transform: translateY(-6px);

  box-shadow: 0 25px 45px rgba(58, 122, 197, 0.45);
}

.btn-secondary {
  width: auto;
  min-width: 190px;

  border-color: var(--color-border-light);

  background: var(--color-white);

  color: var(--color-text-body);
}

.btn-secondary:hover {
  background: var(--color-primary-hover);

  border-color: var(--color-primary-hover);

  color: var(--color-white);
}

/*==========================
      REVIEWS
===========================*/

.reviews {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-top: 50px;
}

.users {
  display: flex;
}

.users img {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid white;

  margin-left: -15px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.users img:first-child {
  margin-left: 0;
}

.stars {
  color: var(--color-star);

  font-size: 18px;

  letter-spacing: 3px;
}

.reviews small {
  color: var(--color-text-soft);

  font-size: 15px;
}

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

.hero-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laptop {
  width: 650px;

  border-radius: 18px;

  max-width: 103%;

  animation: floatLaptop 5s ease-in-out infinite;

  filter: drop-shadow(0 35px 60px rgba(80, 45, 170, 0.18));
}

.about-image img {
  border-radius: 18px;
  max-width: 80%;
}

@keyframes floatLaptop {
  0% {
    transform: translateY(0);
  }

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

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

/*==========================
      FLOATING CARDS
===========================*/

.info-card {
  position: absolute;

  z-index: 2;

  background: var(--color-white-88);

  backdrop-filter: blur(20px);

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

  border-radius: 18px;

  padding: 14px 16px;

  min-width: 132px;

  max-width: 148px;

  box-shadow: 0 14px 32px rgba(84, 55, 185, 0.16);

  animation: cardFloat 4s ease-in-out infinite;
}

.info-card small {
  color: var(--color-text-caption);

  font-size: 11px;
}

.info-card h3 {
  margin-top: 4px;

  font-size: 26px;

  color: var(--color-text);
}

.info-card span {
  color: var(--color-text-subtle);

  font-size: 11px;
}

.score {
  width: 58px;

  height: 58px;

  border-radius: 50%;

  border: 4px solid #4ccb6d;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-top: 10px;

  font-size: 22px;

  font-weight: 700;
}

.card1 {
  top: 170px;
  left: -40px;
}

.card2 {
  top: 20px;
  right: -30px;

  animation-delay: 1s;
}

.card3 {
  left: 140px;
  bottom: -80px;

  animation-delay: 2s;
}

.card4 {
  bottom: -45px;
  right: -15px;
  animation-delay: 3s;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0);
  }

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

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

.info-card:hover {
  transform: translateY(-8px);

  transition: 0.3s;
}

/*==================================
    SCROLL ANIMATION
===================================*/

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/*==================================
    HOVER EFFECT
===================================*/

.nav-links a,
.nav-menu a,
.btn-primary,
.btn-secondary,
.info-card,
.users img {
  transition: all 0.35s ease;
}

.info-card:hover {
  transform: translateY(-12px) scale(1.03);

  box-shadow: 0 25px 60px rgba(91, 63, 193, 0.25);
}

.btn-primary:hover {
  transform: translateY(-8px);
}

.btn-secondary:hover {
  transform: translateY(-8px);
}

.users img:hover {
  transform: translateY(-8px);
}

.cta-grid {
  display: grid;
  gap: 8px;
  width: 100%;
  grid-template-columns: 1fr 6fr 2fr;
  grid-template-areas:
    "icon header header"
    "icon content content";
}

.cta-grid-heading {
  grid-area: header;
  min-width: 0;
  overflow-wrap: anywhere;
}

.cta-grid-content {
  grid-area: content;
  min-width: 0;
  overflow-wrap: anywhere;
}

.cta-grid-shop {
  grid-area: shop;
}

.cta-grid-icon {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradient-mobile-tab);
  box-shadow: 0 6px 20px rgba(147, 84, 183, 0.35);
}

a.cta-btn.cta-btn-default.cta-grid-btn {
  grid-row: 1 / span 1;
}

.icon-box1.gg>img {
  width: 85px;
}

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

/* ===========================
    Tablet
=========================== */

@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 var(--site-container-inline-padding);
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content,
  .hero-actions,
  .hero-image {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-buttons,
  .reviews {
    justify-content: center;
  }

  .hero-image {
    margin-top: 10px;
    min-height: 520px;
    justify-self: center;
  }

  .laptop {
    width: 90%;
    max-width: 550px;
  }

  .card1 {
    top: 160px;
    left: 20px;
  }

  .card2 {
    top: 20px;
    right: 20px;
  }

  .card3 {
    bottom: 20px;
    left: 80px;
  }

  .card4 {
    right: 20px;
    bottom: 120px;
  }
}

/* ===========================
   HOME MOBILE (matches design)
=========================== */

@media (max-width: 768px) {
  :root {
    --header-stack: calc(10px + 8px + 40px + 8px);
    /* Mobile = stack + 48px air (matches home / contact) */
    --header-clearance: calc(var(--header-stack) + 48px);
    /* One shared hero content rail on every page */
    --mobile-hero-rail: min(92%, 420px);
  }

  body {
    padding-bottom: 20px;
    background: var(--color-white);
  }

  .loader {
    background: var(--color-white);
    overflow-x: clip;
  }

  .about {
    background: var(--color-white);
  }

  .mobile-tabbar {
    display: flex;
  }

  .mobile-tabbar-indicator {
    width: 44px;
    height: 44px;
  }

  .mobile-tab-icon {
    width: 44px;
    height: 44px;
  }

  .mobile-tab {
    padding: 6px 2px 6px;
  }

  /* One hero shell: sticky pill header + hero (like falcon-new-design) */
  .main-hero {
    background: var(--image-hero-background) center top / cover no-repeat;

    padding-bottom: 36px;

  }

  /* Shared mobile header inset — all pages; reinforced later for about/contact/services */
  #site-header {
    top: 8px;
    z-index: 100;
    padding: 10px 16px 0;
  }

  .page-home #site-header {
    margin-bottom: calc(-1 * var(--header-stack));
  }

  .site-header {
    padding: 0;
  }

  .site-header .nav {
    justify-content: space-between;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 8px;
    gap: 12px;
    border-radius: var(--nav-radius-pill);
    background: var(--gradient-header);
    box-shadow: var(--shadow-nav);
  }

  .site-header .nav-links,
  .site-header .nav-toggle {
    display: none !important;
  }

  .site-header .btn-nav {
    display: inline-flex !important;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nav-rebecca);
    background: var(--color-white);
    border-radius: 999px;
  }

  .nav-logo img {
    height: 40px;
  }

  /* Hero shell — home only (don't reset other pages' .hero padding) */
  .page-home .hero {
    padding-top: var(--header-clearance) !important;
    padding-bottom: 1.5rem !important;
    padding-inline: 0 !important;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
  }

  /*
      Unified mobile hero rail (same width / centering as home).
      Replaces the old global `.hero .container { min(92%, 420px) }` which
      only matched some templates and left about/contact/services misaligned.
    */
  .page-home .hero .container,
  .page-home .hero-wrapper,
  .page-about .about-hero .container,
  .page-web .hero .container,
  .page-contact .contact>.container,
  .page-contact .contact-page>.container {
    width: var(--mobile-hero-rail) !important;
    max-width: var(--mobile-hero-rail) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  .page-services .services-hero {
    width: var(--mobile-hero-rail) !important;
    max-width: var(--mobile-hero-rail) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: var(--header-clearance) !important;
    box-sizing: border-box;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-content {
    text-align: left;
    align-items: flex-start;
  }

  /* Home mobile type — close to contact, slightly larger hero voice */
  .page-home .about-tag,
  .page-home .tag,
  .page-home .section-tag,
  .page-home .projects-header .section-title,
  .page-home .testimonial-header .section-title {
    display: inline-flex;
    align-items: center;
    gap: var(--eyebrow-gap);
    font-size: var(--eyebrow-font-size-mobile);
    letter-spacing: var(--eyebrow-letter-spacing-mobile);
    color: var(--eyebrow-color);
    font-weight: var(--eyebrow-font-weight);
    text-align: left;
  }

  .page-home .about-tag::before,
  .page-home .about-tag::after,
  .page-home .tag::before,
  .page-home .tag::after,
  .page-home .section-tag::before,
  .page-home .section-tag::after,
  .page-home .projects-header .section-title::before,
  .page-home .projects-header .section-title::after,
  .page-home .testimonial-header .section-title::before,
  .page-home .testimonial-header .section-title::after {
    width: var(--eyebrow-line-width-mobile);
    height: var(--eyebrow-line-height);
    background: var(--eyebrow-color);
  }

  .page-home .hero-content h1,
  .hero-content h1 {
    margin-top: 12px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-heading);
    text-align: left;
  }

  .hero-content h1 .hero-accent {
    font-family: var(--font-heading);
    font-size: inherit;
    background: var(--gradient-text-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .page-home .hero-content p,
  .hero-content p {
    margin-top: 12px;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-paragraph-mobile);
    max-width: 34ch;
    text-align: left;
  }

  .hero-image {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin: 4px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .laptop {
    width: min(86%, 300px);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 22px 40px rgba(80, 45, 170, 0.18));
  }

  .info-card {
    position: absolute;
    z-index: 2;
    width: auto;
    min-width: 108px;
    max-width: 128px;
    padding: 10px 12px;
    border-radius: 14px;
    margin: 0;
    animation: none;
    background: var(--color-white-94);
    box-shadow: 0 10px 28px rgba(35, 73, 118, 0.14);
  }

  .info-card small {
    font-size: 10px;
  }

  .info-card h3 {
    margin-top: 2px;
    font-size: 18px;
  }

  .info-card span {
    font-size: 10px;
  }

  .info-card .score {
    width: 44px;
    height: 44px;
    font-size: 15px;
    margin: 6px auto 4px;
    border-width: 3px;
  }

  /* Match falcon-new-design float positions */
  .card1 {
    top: 33%;
    bottom: auto;
    left: 0;
    right: auto;
    transform: translateY(-50%);
  }

  .card2 {
    top: 0;
    right: 0;
    left: auto;
  }

  .card3 {
    top: 65%;
    bottom: auto;
    left: 22px;
    right: auto;
    transform: translateY(-50%);
    min-width: 120px;
    padding: 12px 14px;
  }

  .card4 {
    bottom: 34px;
    right: 34px;
    left: auto;
    top: auto;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 0;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .btn-secondary {
    background: var(--color-white);
    border: 1px solid #e4dff5;
    color: var(--color-text-card);
  }

  .reviews {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    flex-direction: row;
    text-align: left;
  }

  .reviews small {
    font-size: 13px;
    color: var(--color-text-card-muted);
    font-weight: 600;
  }

  /* About — exact match to uploaded mobile design */
  .about {
    padding: 64px 0 48px;
    background: var(--color-bg-soft);
    overflow: visible;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: min(92%, 420px);
  }

  .about-image {
    display: none !important;
  }

  .about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-tag {
    gap: var(--eyebrow-gap);
    font-size: var(--eyebrow-font-size-mobile);
    letter-spacing: var(--eyebrow-letter-spacing-mobile);
    color: var(--eyebrow-color);
    font-weight: var(--eyebrow-font-weight);
  }

  .about-tag::before,
  .about-tag::after {
    width: var(--eyebrow-line-width-mobile);
    height: var(--eyebrow-line-height);
    background: var(--eyebrow-color);
  }

  .about-content h2 {
    margin-top: var(--eyebrow-heading-gap-mobile);
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.22;
    font-weight: 700;
    color: var(--color-text-heading);
  }

  .about-content h2 span {
    color: var(--mini-sub-title-color);
  }

  .about-content p {
    margin: 16px auto 0;
    font-size: 14px;
    line-height: 1.7;
    max-width: 32ch;
    color: var(--color-text-body-alt);
  }

  .about-btn {
    position: relative;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .about-btn a {
    width: auto;
    min-width: 0;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px !important;
    font-size: 14px;
    box-shadow: 0 12px 28px rgba(99, 91, 255, 0.26);
  }

  .about-btn a i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .grow {
    position: absolute;

    gap: 2px;
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 2;
  }

  .grow span {
    font-family: "Caveat", cursive;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent-light);
    white-space: nowrap;
  }

  .grow img {
    width: 44px;
    margin-left: 52px;
    transform: rotate(18deg);
  }

  /* Stats — 2x2 panel matching uploaded design */
  .stats {
    padding: 8px 0 40px;
    background: var(--color-bg-soft);
  }

  .stats-container {
    width: min(92%, 420px);
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(165deg,
        #ede6ff 0%,
        var(--color-bg-lavender) 48%,
        #d9cef5 100%);
    border: 0;
    box-shadow: none;
  }

  .stat-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 22px 12px 18px;
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 6px 18px rgba(90, 70, 160, 0.08);
    animation: none !important;
  }

  .stat-box .icon,
  .stats .icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-bg-icon);
    color: var(--color-icon);
    font-size: 18px;
    margin: 0 auto;
    animation: none !important;
    box-shadow: none;
  }

  .stats,
  .stats-container {
    overflow: visible;
  }

  .stat-box .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
    overflow: visible;
    opacity: 1;
    visibility: visible;
  }

  .stat-box h2,
  .stats .text h2 {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
    line-height: 1.1;
    opacity: 1;
    visibility: visible;
  }

  .stat-box p,
  .stats .text p {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: var(--color-text-client-role);
    margin: 0;
    opacity: 1;
    visibility: visible;
  }

  /* Services stacked cards */
  .services {
    padding: 48px 0 40px;
    background: #f7f6fb;
  }

  .services-header {
    margin-bottom: 28px;
    text-align: center;
  }

  .services-header .left {
    width: 100%;
  }

  .services .section-tag,
  .section-tag {
    font-size: var(--eyebrow-font-size-mobile);
    letter-spacing: var(--eyebrow-letter-spacing-mobile);
    font-weight: var(--eyebrow-font-weight);
    color: var(--eyebrow-color);
  }

  .services-header h2 {
    margin-top: var(--eyebrow-heading-gap-mobile);
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--color-text-heading);
  }

  .services-lede {
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.65;
    max-width: 34ch;
    text-align: center;
    color: var(--color-text-body-alt);
  }

  .page-home .services .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .services .service-card {
    animation: none;
    padding: 22px 20px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(70, 50, 140, 0.06);
  }

  .page-home .services .service-card::before,
  .page-home .services .service-card::after {
    display: none;
  }

  .page-home .services .service-card .icon-box {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .page-home .services .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-heading);
  }

  .page-home .services .service-card p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--color-text-body-alt);
    margin-bottom: 16px;
  }

  .page-home .services .service-card a {
    font-size: 14px;
    font-weight: 600;
  }

  .services-btn {
    margin-top: 28px;
  }

  .services-btn a {
    width: 100%;
    max-width: none;
    justify-content: center;
    border-radius: 16px;
    padding: 15px 22px;
    font-size: 15px;
    font-weight: 600;
    height: auto;
  }

  /* Projects carousel — full-bleed track, content-aligned start */
  .projects {
    padding: 48px 0 36px;
    background: var(--color-white);
    overflow: visible;
  }

  .projects .container {
    overflow: visible;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    text-align: left;
  }

  .projects-header>div {
    width: 100%;
    text-align: left;
  }

  .projects-header .view-btn {
    display: none;
  }

  .page-home .about-content h2,
  .page-home .services-header h2,
  .page-home .projects-header h2,
  .page-home .testimonial-header h2 {
    margin-top: var(--eyebrow-heading-gap-mobile);
  }

  .projects .section-title,
  .projects-header .section-title {
    display: inline-flex;
    align-items: center;
    width: auto;
    justify-content: flex-start;
    font-size: var(--eyebrow-font-size-mobile);
    letter-spacing: var(--eyebrow-letter-spacing-mobile);
    font-weight: var(--eyebrow-font-weight);
    color: var(--eyebrow-color);
    text-align: left;
    margin: 0;
    padding: 0;
  }

  .projects-header h2 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-heading);
    text-align: left;
  }

  .projects-grid {
    --projects-gutter: calc(50vw - 50%);
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--projects-gutter);
    scroll-padding-right: 16px;
    /* Break out of .container to the screen edges */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* First card lines up with page content; right side can reach the edge */
    padding: 4px 16px 12px var(--projects-gutter);
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pinch-zoom;
    scrollbar-width: none;
    cursor: grab;
  }

  .projects-grid::-webkit-scrollbar {
    display: none;
  }

  .projects-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .project-card {
    flex: 0 0 min(300px, calc(100vw - var(--projects-gutter) - 36px));
    width: min(300px, calc(100vw - var(--projects-gutter) - 36px));
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    animation: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(60, 40, 120, 0.1);
    flex-shrink: 0;
    user-select: none;
  }

  .project-card img {
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .project-image {
    height: 190px;
  }

  .project-tag {
    left: 14px;
    bottom: 14px;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 1.4px;
    font-weight: 600;
  }

  .project-content {
    padding: 20px 18px 22px;
  }

  .project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-heading);
  }

  .project-content p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    color: var(--color-text-body-alt);
  }

  .project-content strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
  }

  .projects-dots {
    display: flex;
  }

  /* Testimonials horizontal */
  .testimonials {
    padding: 36px 0 28px;
    background: var(--color-band-home-mobile);
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    text-align: left;
  }

  .testimonial-header>div {
    width: 100%;
    text-align: left;
  }

  .testimonial-header .view-btn {
    display: none;
  }

  .testimonials .section-title,
  .testimonial-header .section-title {
    display: inline-flex;
    align-items: center;
    width: auto;
    justify-content: flex-start;
    font-size: var(--eyebrow-font-size-mobile);
    letter-spacing: var(--eyebrow-letter-spacing-mobile);
    font-weight: var(--eyebrow-font-weight);
    color: var(--eyebrow-color);
    text-align: left;
    margin: 0;
    padding: 0;
  }

  .testimonial-header h2 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-heading);
    text-align: left;
  }

  .testimonial-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 4px 2px 12px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pinch-zoom;
    scrollbar-width: none;
    cursor: grab;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-grid.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .testimonial-card {
    flex: 0 0 78%;
    width: 78%;
    max-width: 320px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    animation: none;
    min-height: auto;
    flex-shrink: 0;
    user-select: none;
    padding: 22px 18px;
  }

  .testimonial-card img {
    -webkit-user-drag: none;
    pointer-events: none;
  }

  .testimonial-card .quote-icon {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: var(--color-text-quote);
  }

  .client-info img {
    width: 42px;
    height: 42px;
  }

  .client-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-text-heading);
  }

  .client-info span {
    font-size: 12px;
    color: var(--color-text-client-role);
  }

  /* CTA + footer overlapping zone — home band matches mobile testimonials above */
  .page-home .footer-cta-zone {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 28px;
    overflow: visible;
    background: var(--color-band-home-mobile);
  }

  .cta {
    order: 1;
    position: relative;
    z-index: 2;
    margin: 0 0 -40px;
    padding: 0;
    background: transparent;
    pointer-events: none;
  }

  .cta-box {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 22px 18px;
    border-radius: 20px;
    pointer-events: auto;
  }

  .cta-left {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    text-align: left;
  }

  .cta-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    flex-shrink: 0;
  }

  .cta-grid {
    display: grid;
    gap: 8px;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "header"
      "content";
  }

  .cta-grid-heading {
    grid-area: header;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cta-grid-content {
    grid-area: content;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cta-grid-shop {
    grid-area: shop;
  }

  .cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .cta-box h2,
  .cta-text h2 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--color-white);
    text-align: left;
  }

  .cta-box p,
  .cta-text p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: var(--color-white-85);
    text-align: left;
  }

  .cta-btn {
    display: none;
  }

  .footer-cta-zone footer,
  footer {
    order: 2;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 72px 0 calc(96px + env(safe-area-inset-bottom, 0px));
    background: var(--color-footer-bg);
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 18px;
  }

  .footer-top {
    padding-bottom: 24px;
  }

  .footer-top img,
  .footer-logo img {
    width: 140px;
  }

  .social-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .social-links a {
    font-size: 13px;
  }

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

  .footer-bottom p,
  .footer-bottom a {
    font-size: 12px;
  }

  .navbar {
    padding: 18px;
  }

  .logo img {
    width: 120px;
  }

  .nav-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .tag {
    font-size: 10px;
  }

  .info-card {
    max-width: 130px;
    padding: 8px 10px;
  }

  .card1 {
    left: -2px;
  }

  .card2 {
    right: -2px;
  }
}

/*=========================
      ABOUT
==========================*/

.about {
  padding: 90px 0;

  background: var(--color-bg-muted-alt);

  overflow: hidden;
}

.about-container {
  width: 100%;

  max-width: var(--site-container-max-width);

  padding: 0 var(--site-container-inline-padding);

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 80px;
}

.about-content {
  width: 50%;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-top: var(--eyebrow-heading-gap);
  margin-bottom: 20px;
  color: var(--color-text-heading);
  line-height: 1.5;
}

@media (min-width: 769px) {
  .about-content h2 {
    width: 700px;
  }
}

.about-content h2 span {
  color: var(--mini-sub-title-color);
}

.about-content p {
  color: var(--color-text-paragraph-light);
  line-height: 1.7;
  font-size: 18px;
  max-width: 520px;
}

/*=========================
    ABOUT BUTTON
==========================*/

.about-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 56px;
}

.about-btn a {
  min-width: var(--btn-min-width);
  background: var(--gradient-button);
  color: var(--color-white);
  box-shadow: 0 15px 35px var(--color-brand-tint-30);
}

.about-btn a:hover {
  transform: translateY(-4px);
}

.about-btn a i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.grow {
  position: absolute;
  top: -32px;
  right: -180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 2;
}

.grow span {
  color: #1d5bb7;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.grow img {
  width: 48px;
  margin-left: 48px;
  transform: rotate(12deg);
}

/*=========================
      IMAGE
==========================*/

.about-image {
  width: 50%;

  position: relative;

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

.about-image img {
  width: 100%;

  transition: 0.5s;
}

.about-image img:hover {
  transform: rotate(5deg) scale(1.03);
}

.shape {
  position: absolute;

  width: 180px;
  height: 180px;

  background: var(--color-bg-decor-shape);

  border-radius: 20px;

  top: -20px;
  right: 30px;

  transform: rotate(18deg);

  z-index: -1;
}

.dots {
  position: absolute;

  width: 110px;
  height: 110px;

  right: -20px;
  top: 30px;

  background-image: radial-gradient(#8b5cf6 2px, transparent 2px);

  background-size: 14px 14px;

  opacity: 0.35;
}

/*================================
        Animation
================================*/

.about-content {
  animation: fadeLeft 1s ease;
}

.about-image {
  animation: fadeRight 1s ease;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(80px) rotate(5deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(8deg);
  }
}

.about-image img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: rotate(8deg) translateY(0);
  }

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

  100% {
    transform: rotate(8deg) translateY(0);
  }
}

/*==========================
       Responsive
===========================*/

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }

  .about-container {
    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 60px;
  }

  .about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-content p {
    max-width: 650px;

    margin: auto;
  }

  .about-btn {
    justify-content: center;

    align-items: center;

    flex-wrap: wrap;
  }

  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 90%;

    max-width: 600px;
  }

  .shape {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .about-image img {
    width: 100%;
    border-radius: 30px;
  }

  .shape {
    width: 120px;
    height: 120px;
    top: -15px;
    right: 10px;
  }

  .dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 28px;
  }

  .about-tag {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .about-content p {
    font-size: 14px;
  }

  .grow {
    right: 4px;
    top: -42px;
  }

  .grow span {
    font-size: 22px;
  }
}

/*=========================
        STATS
==========================*/

.stats {
  padding: 70px 20px;
  background: var(--gradient-stats);
}

.stats-container {
  width: 100%;
  max-width: var(--site-container-max-width);
  margin: 0 auto;

  background: var(--color-white);

  border-radius: 25px;
  padding: 35px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;

  box-shadow: 0 15px 40px rgba(93, 67, 180, 0.12);

  position: relative;
  overflow: hidden;
}

/* Soft premium glow داخل البوكس */
.stats-container::before {
  content: "";
  position: absolute;

  width: 320px;
  height: 320px;

  top: -220px;
  left: 50%;

  transform: translateX(-50%);

  background: radial-gradient(circle,
      var(--color-icon-glow-soft),
      transparent 70%);

  border-radius: 50%;

  opacity: 0.7;
  pointer-events: none;

  animation: containerGlow 6s ease-in-out infinite alternate;
}

/* =========================
   STAT BOX
========================= */

.stat-box {
  display: flex;
  align-items: center;
  gap: 18px;

  position: relative;
  z-index: 1;



  animation: statReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* Stagger animation */

.stat-box:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
  animation-delay: 0.25s;
}

.stat-box:nth-child(3) {
  animation-delay: 0.4s;
}

.stat-box:nth-child(4) {
  animation-delay: 0.55s;
}

/* Hover */

.stat-box:hover {
  transform: translateY(-8px);
}

/* خط بسيط يظهر وقت الـ hover */

.stat-box::after {
  content: "";

  position: absolute;

  bottom: -10px;
  left: 50%;

  width: 0;
  height: 2px;

  transform: translateX(-50%);

  background: linear-gradient(90deg,
      transparent,
      var(--color-primary),
      transparent);

  border-radius: 10px;

  transition: width 0.4s ease;
}

.stat-box:hover::after {
  width: 70%;
}

/* =========================
   ICON
========================= */

.icon {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  background: var(--color-bg-icon);

  border-radius: 15px;

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

  color: var(--color-icon);

  font-size: 24px;

  box-shadow: 0 6px 20px rgba(93, 67, 180, 0.08);

  animation: iconBreath 3s ease-in-out infinite;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.stat-box:nth-child(2) .icon {
  animation-delay: 0.4s;
}

.stat-box:nth-child(3) .icon {
  animation-delay: 0.8s;
}

.stat-box:nth-child(4) .icon {
  animation-delay: 1.2s;
}

.stat-box:hover .icon {
  transform: translateY(-4px) scale(1.08) rotate(-3deg);

  background: var(--color-primary);
  color: var(--color-white);

  box-shadow:
    0 12px 28px var(--color-icon-glow-soft),
    0 0 0 6px var(--color-icon-glow-clear);
}

/* =========================
   TEXT
========================= */

.text h2 {
  font-size: 38px;
  color: var(--color-text-dark);
  margin-bottom: 4px;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.text p {
  color: var(--color-text-stat-label);
  font-size: 15px;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.stat-box:hover .text h2 {
  transform: translateY(-2px);
}

.stat-box:hover .text p {
  transform: translateY(-1px);
}

/* =========================
   KEYFRAMES
========================= */

@keyframes statReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    filter: blur(5px);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes iconBreath {

  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 6px 20px rgba(93, 67, 180, 0.08);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 26px var(--color-icon-glow-soft);
  }
}

@keyframes containerGlow {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.45;
  }

  100% {
    transform: translateX(-50%) scale(1.15);
    opacity: 0.85;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 576px) {
  .stats {
    padding: 45px 14px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr !important;

    gap: 12px;

    padding: 16px;

    border-radius: 26px;
  }

  .stat-box {
    flex-direction: column;

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

    text-align: center;

    gap: 10px;

    padding: 20px 8px 16px;
  }

  .icon {
    width: 50px;
    height: 50px;

    font-size: 21px;

    border-radius: 14px;
  }

  .stats .text h2 {
    font-size: 28px;
  }

  .stats .text p {
    font-size: 11px;
  }

  .stat-box:hover {
    transform: translateY(-4px);
  }
}

/* احترام إعدادات تقليل الحركة */

@media (prefers-reduced-motion: reduce) {

  .stat-box,
  .icon,
  .stats-container::before {
    animation: none !important;
  }

  .stat-box {
    opacity: 1;
    transform: none;
  }
}

/*=========================
        SERVICES
==========================*/
/* =====================================================
   SERVICES SECTION
===================================================== */

.services {
  padding: 120px 0;
  background: var(--color-bg-muted);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* =====================================================
   BACKGROUND ANIMATION
===================================================== */

.services::before {
  content: "";
  position: absolute;

  width: 550px;
  height: 550px;

  top: -260px;
  right: -180px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(65, 130, 220, 0.16),
      rgba(125, 80, 255, 0.08),
      transparent 70%);

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

  animation: servicesGlow 7s ease-in-out infinite alternate;
}




/* =====================================================
   CONTAINER
===================================================== */

.services .container {
  width: 100%;
  max-width: var(--site-container-max-width);

  padding: 0 var(--site-container-inline-padding);

  margin: 0 auto;

  position: relative;
  z-index: 2;
}


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

.services-header {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 60px;

  margin-bottom: 70px;

  opacity: 0;

  animation:
    headerReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}


.services-header .left {
  flex: 1;
}


/* =====================================================
   SECTION TAG
===================================================== */

.section-tag {
  color: var(--color-text-eyebrow);

  font-size: var(--eyebrow-font-size);

  letter-spacing: var(--eyebrow-letter-spacing);

  font-weight: var(--eyebrow-font-weight);

  text-transform: uppercase;

  display: inline-block;

  opacity: 0;

  animation:
    tagReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}


/* =====================================================
   TITLE
===================================================== */

.services-header h2 {
  margin-top: var(--eyebrow-heading-gap);

  font-size: 52px;

  line-height: 1.25;

  color: var(--color-text);
}


.services-header h2 span {
  color: var(--mini-sub-title-color);

  display: inline-block;

  transition:
    transform 0.4s ease,
    text-shadow 0.4s ease;
}


.services-header h2 span:hover {
  transform: translateY(-4px);

  text-shadow:
    0 10px 22px rgba(55, 120, 210, 0.18);
}


/* =====================================================
   PARAGRAPH
===================================================== */

.services-header p,
.services-lede {
  color: var(--color-text-caption);

  line-height: 32px;

  font-size: 18px;

  margin-top: 18px;
}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {
  display: grid;

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

  gap: 28px;

  perspective: 1200px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
  background: var(--color-white);

  border-radius: 18px;

  padding: 28px;

  border:
    1px solid #ece7ff;

  box-shadow:
    0 12px 20px rgba(128, 181, 246, 0.28);

  position: relative;

  overflow: hidden;

  opacity: 0;

  transform:
    translateY(65px) scale(0.93);

  transform-origin:
    center bottom;

  animation:
    cardReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;

  will-change: transform;
}


/* =====================================================
   STAGGERED CARDS
===================================================== */

.service-card:nth-child(1) {
  animation-delay: 0.25s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.55s;
}

.service-card:nth-child(4) {
  animation-delay: 0.7s;
}


/* =====================================================
   TOP GRADIENT LINE
===================================================== */

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  transform:
    translateX(-50%);

  background:
    var(--gradient-text-accent);

  border-radius:
    0 0 12px 12px;

  transition:
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: 5;
}


.service-card:hover::before {
  width: 100%;
}


/* =====================================================
   SHINE
===================================================== */

.service-card::after {
  content: "";

  position: absolute;

  top: -35%;
  left: -130%;

  width: 50%;
  height: 170%;

  background: linear-gradient(110deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0.08),
      transparent);

  transform:
    rotate(12deg);

  pointer-events: none;

  transition:
    left 0.8s ease;

  z-index: 3;
}


.service-card:hover::after {
  left: 150%;
}


/* =====================================================
   CARD HOVER
===================================================== */

.service-card:hover {
  transform:
    translateY(-16px) scale(1.035);

  border-color:
    rgba(80, 105, 240, 0.28);

  box-shadow:
    0 30px 60px rgba(55, 100, 180, 0.20),

    0 12px 28px rgba(110, 70, 220, 0.13);
}


/* =====================================================
   ICON BOX
===================================================== */

.service-card .icon-box {
  width: 58px;
  height: 58px;

  background:
    var(--color-bg-icon-box);

  border-radius: 14px;

  display: flex;

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

  color:
    var(--color-icon);

  font-size: 24px;

  margin-bottom: 25px;

  position: relative;

  z-index: 6;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),

    background 0.4s ease,

    color 0.4s ease,

    border-radius 0.4s ease,

    box-shadow 0.4s ease;
}


/* Ring around icon */

.service-card .icon-box::before {
  content: "";

  position: absolute;

  inset: -8px;

  border-radius: 19px;

  border:
    1px solid rgba(70, 120, 220, 0.18);

  opacity: 0;

  transform:
    scale(0.65);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);

  pointer-events: none;
}


/* =====================================================
   ICON HOVER
===================================================== */

.service-card:hover .icon-box {
  background:
    var(--color-primary);

  color:
    var(--color-white);

  transform:
    translateY(-7px) scale(1.12) rotate(-4deg);

  border-radius: 18px;

  box-shadow:
    0 15px 30px rgba(60, 105, 200, 0.25),

    0 0 0 6px rgba(80, 115, 230, 0.08);
}


.service-card:hover .icon-box::before {
  opacity: 1;

  transform:
    scale(1);
}


/* Icon */

.service-card .icon-box i {
  position: relative;

  z-index: 2;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.service-card:hover .icon-box i {
  transform:
    scale(1.12) rotate(4deg);
}


/* =====================================================
   CARD TITLE
===================================================== */

.service-card h3 {
  font-size: 20px;

  color:
    var(--color-text);

  margin-bottom: 16px;

  position: relative;

  z-index: 6;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}


.service-card:hover h3 {
  transform:
    translateY(-3px);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.service-card p {
  color:
    var(--color-text-card-desc);

  font-size: 15px;

  margin-bottom: 28px;

  font-weight: 300;

  position: relative;

  z-index: 6;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


.service-card:hover p {
  transform:
    translateY(-3px);

  opacity: 0.92;
}


/* =====================================================
   LEARN MORE
===================================================== */

.service-card a {
  height: 32px;

  display: flex;

  align-items: center;

  justify-content:
    flex-start;

  gap: 12px;

  color:
    var(--color-text-link);

  font-size: 20px;

  font-weight: 400;

  position: relative;

  z-index: 7;

  transition:
    gap 0.35s ease,
    transform 0.35s ease,
    color 0.35s ease;
}


.service-card:hover a {
  gap: 18px;

  transform:
    translateX(4px);
}


/* Learn More Arrow */

.service-card a i {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),

    filter 0.4s ease;
}


.service-card:hover a i {
  transform:
    translateX(7px) scale(1.15);

  filter:
    drop-shadow(0 5px 8px rgba(50, 95, 180, 0.25));
}


/* =====================================================
   VIEW ALL SERVICES BUTTON
===================================================== */

.services-btn {
  margin-top: 60px;

  opacity: 0;

  transform:
    translateY(30px);

  animation:
    buttonReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}


.services-btn a {
  min-width:
    var(--btn-min-width);

  background:
    var(--gradient-button);

  color:
    var(--color-white);

  box-shadow:
    var(--shadow-services-btn);

  position: relative;

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),

    box-shadow 0.4s ease;
}


.services-btn a:hover {
  transform:
    translateY(-7px) scale(1.04);

  box-shadow:
    0 18px 35px rgba(70, 80, 220, 0.25);
}


.services-btn a i {
  transition:
    transform 0.35s ease;
}


.services-btn a:hover i {
  transform:
    translateX(6px);
}


/* =====================================================
   PROJECT DOTS
===================================================== */

.projects-dots {
  display: none;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 22px;
}


.projects-dots button {
  width: 9px;
  height: 9px;

  border: 0;

  border-radius: 50%;

  background:
    var(--color-celestial-tint-60);

  padding: 0;

  cursor: pointer;

  flex-shrink: 0;

  appearance: none;

  -webkit-appearance: none;

  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease;
}


.projects-dots button.is-active {
  width: 24px;

  border-radius: 20px;

  background:
    var(--color-primary);
}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes headerReveal {

  0% {
    opacity: 0;

    transform:
      translateY(45px);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0);
  }
}


@keyframes tagReveal {

  0% {
    opacity: 0;

    transform:
      translateX(-25px);
  }

  100% {
    opacity: 1;

    transform:
      translateX(0);
  }
}


@keyframes cardReveal {

  0% {
    opacity: 0;

    transform:
      translateY(65px) scale(0.93);

    filter:
      blur(5px);
  }

  60% {
    opacity: 1;

    filter:
      blur(0);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0) scale(1);

    filter:
      blur(0);
  }
}


@keyframes buttonReveal {

  0% {
    opacity: 0;

    transform:
      translateY(30px);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0);
  }
}


@keyframes servicesGlow {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.45;
  }

  100% {
    transform:
      translate(-55px, 45px) scale(1.15);

    opacity: 0.9;
  }
}


@keyframes servicesGlowTwo {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.3;
  }

  100% {
    transform:
      translate(70px, -45px) scale(1.2);

    opacity: 0.75;
  }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

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

  .services-header {
    flex-direction: column;

    gap: 30px;
  }

  .services-header .right {
    width: 100%;
  }
}


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

@media (max-width: 768px) {

  .services {
    padding: 50px 0;
  }

  .services-header {
    margin-bottom: 40px;

    gap: 20px;
  }

  .services-header h2 {
    font-size: 36px;

    line-height: 1.2;
  }

  .services-header p,
  .services-lede {
    font-size: 15px;

    line-height: 26px;
  }

  .page-home .services .services-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .page-home .services .service-card {
    padding: 25px;
  }

  .page-home .services .service-card:hover {
    transform:
      translateY(-7px) scale(1.015);
  }

  .page-home .services .service-card:hover .icon-box {
    transform:
      translateY(-4px) scale(1.07);
  }

  .services-btn {
    display: flex;

    justify-content: center;

    margin-top: 40px;
  }

  .projects-dots {
    display: flex;
  }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .services {
    padding: 40px 0;
  }

  .services-header h2 {
    font-size: 31px;
  }

  .page-home .services .service-card h3 {
    font-size: 19px;
  }

  .page-home .services .service-card p {
    font-size: 14px;

    line-height: 23px;
  }

  .page-home .services .service-card a {
    font-size: 17px;
  }

  .page-home .services .service-card .icon-box {
    width: 54px;

    height: 54px;

    font-size: 22px;
  }
}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .services::before,
  .services::after,
  .services-header,
  .section-tag,
  .service-card,
  .services-btn {
    animation: none !important;
  }

  .services-header,
  .section-tag,
  .service-card,
  .services-btn {
    opacity: 1;

    transform: none;
  }
}

/*=========================
    PROJECTS SECTION
=========================*/

.projects {
  background: var(--color-bg-muted);
  overflow: hidden;
  /*margin-bottom: 90px;*/
}

.projects .container {
  width: 100%;
  max-width: var(--site-container-max-width);
  padding: 0 var(--site-container-inline-padding);
  margin: 0 auto;
}

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

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.projects-header .section-title,
.projects .section-title {
  color: var(--eyebrow-color);
  font-size: var(--eyebrow-font-size);
  font-weight: var(--eyebrow-font-weight);
  letter-spacing: var(--eyebrow-letter-spacing);
  text-transform: uppercase;
}

.projects-header h2 {
  margin-top: var(--eyebrow-heading-gap);
  font-size: 48px;
  color: var(--color-text);
  font-weight: 700;
}

.projects-header h2 span {
  color: var(--mini-sub-title-color);
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--eyebrow-color);
  font-weight: var(--eyebrow-font-weight);
  font-size: var(--eyebrow-font-size);
  letter-spacing: var(--eyebrow-letter-spacing);
  text-transform: uppercase;
  transition: 0.35s;
}

.view-btn:hover {
  gap: 18px;
}

/*=========================
        GRID
=========================*/

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 0 50px;
}

/*=========================
        CARD
=========================*/

.project-card {
  background: var(--color-white);

  border-radius: 22px;

  overflow: hidden;

  border: 1px solid #ece9ff;

  box-shadow: 0 15px 35px rgba(97, 77, 212, 0.055);

  transition: 0.45s;

  position: relative;
}

.project-image {
  position: relative;

  height: 280px;

  overflow: hidden;
}

.project-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.8s;
}

.project-tag {
  position: absolute;

  left: 18px;

  bottom: 18px;

  background: var(--color-bg-project-tag);

  color: var(--color-text-project-tag);

  padding: 12px 24px;

  border-radius: 40px;

  font-size: 15px;

  font-weight: 400;

  letter-spacing: 2px;
}

.project-content {
  padding: 28px;
}

.project-content h3 {
  font-size: 24px;

  color: var(--color-text);

  margin-bottom: 18px;
}

.project-content p {
  color: var(--color-text-project-desc);

  font-size: 16px;

  line-height: 32px;

  margin-bottom: 22px;
}

.project-content strong {
  font-size: 17px;

  color: var(--color-text-dark);
}

/*=========================
        HOVER
=========================*/

.project-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 60px rgba(92, 65, 208, 0.18);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 60%;

  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      var(--color-white-45),
      transparent);

  transform: skewX(-25deg);

  transition: 1s;
}

.project-card:hover::before {
  left: 160%;
}

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

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 70px 0;
  }

  .projects-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;
  }

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

/*=====================================
        FLOATING CARDS (desktop)
======================================*/

@media (min-width: 769px) {
  .project-card {
    animation: floating 5s ease-in-out infinite;
  }

  .project-card:nth-child(2) {
    animation-delay: 0.7s;
  }

  .project-card:nth-child(3) {
    animation-delay: 1.4s;
  }
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

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

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

/*=====================================
        IMAGE SHINE
======================================*/

.project-image::after {
  content: "";

  position: absolute;

  top: 0;

  left: -140%;

  width: 60%;

  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      var(--color-white-45),
      transparent);

  transform: skewX(-25deg);

  animation: shine 5s infinite;
}

@keyframes shine {
  100% {
    left: 180%;
  }
}

/*=====================================
      Animated Border
======================================*/

.project-card {
  border: 1px solid rgba(124, 92, 255, 0.15);
}

.project-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 22px;

  padding: 1px;

  background: linear-gradient(135deg,
      transparent,
      rgba(124, 92, 255, 0.35),
      transparent);

  -webkit-mask:
    linear-gradient(var(--color-white) 0 0) content-box,
    linear-gradient(var(--color-white) 0 0);

  -webkit-mask-composite: xor;

  pointer-events: none;
}

/*=====================================
      Tag Animation
======================================*/

.project-tag {
  animation: pulseTag 3s infinite;
}

@keyframes pulseTag {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/*=====================================
        Button Animation
======================================*/

.view-btn {
  position: relative;

  overflow: hidden;
}

.view-btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 40%;

  height: 100%;

  background: var(--color-white-45);

  transform: skewX(-25deg);

  animation: btnShine 3.5s infinite;
}

@keyframes btnShine {
  100% {
    left: 180%;
  }
}

/*==============================
      Spotlight Effect
===============================*/

.project-card {
  position: relative;

  overflow: hidden;
}

.project-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
      rgba(124, 92, 255, 0.18),
      transparent 35%);

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.project-card:hover::before {
  opacity: 1;
}

/*==========================
    TESTIMONIAL SECTION
===========================*/

.testimonials {
  padding: 70px 0 70px;

  background: var(--color-band-home);
}

.container {
  width: 100%;

  max-width: var(--site-container-max-width);

  padding: 0 var(--site-container-inline-padding);

  margin: 0 auto;
}

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

.testimonial-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-bottom: 60px;
}

.testimonial-header .section-title,
.testimonials .section-title {
  color: var(--eyebrow-color);

  letter-spacing: var(--eyebrow-letter-spacing);

  font-size: var(--eyebrow-font-size);

  font-weight: var(--eyebrow-font-weight);

  text-transform: uppercase;
}

.testimonial-header h2 {
  margin-top: var(--eyebrow-heading-gap);

  font-size: 48px;

  color: var(--color-text);
}

.testimonial-header .view-btn {
  display: flex;

  gap: 10px;

  align-items: center;

  transition: 0.4s;
}

.view-btn:hover {
  gap: 18px;
}

/*==========================
        CARDS
===========================*/

.testimonial-grid {
  display: grid;

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

  gap: 30px;
}

.testimonial-card {
  background: var(--color-white);

  border: 1px solid #e8e4ff;

  border-radius: 20px;

  padding: 35px;

  position: relative;

  overflow: hidden;

  transition: 0.4s;

  box-shadow: 13px 10px #68abf633;
}

.quote-icon {
  font-size: 28px;

  color: var(--color-primary);

  margin-bottom: 25px;
}

.testimonial-card p {
  color: var(--color-text-soft);

  line-height: 34px;

  font-size: 19px;

  margin-bottom: 30px;
}

.client-info {
  display: flex;

  align-items: center;

  gap: 15px;
}

.client-info img {
  width: 55px;

  height: 55px;

  border-radius: 50%;

  object-fit: cover;
}

.client-info h4 {
  color: var(--color-text);

  margin-bottom: 5px;
}

.client-info span {
  color: var(--color-text-stat-label);

  font-size: 14px;
}

/*==========================
        CTA + FOOTER ZONE
        (CTA overlaps dark footer)
===========================*/

.footer-cta-zone {


  overflow: visible;
  margin-top: 0;
  padding-top: 0px;
}

/* Pre-footer band — zone background matches the section directly above (see theme.css) */
.page-home .footer-cta-zone {
  /*background: var(--color-band-home);*/
}

.page-about:not(.page-terms):not(.page-privacy) .footer-cta-zone {
  background: var(--color-band-about);
}

.page-terms .footer-cta-zone,
.page-privacy .footer-cta-zone {
  background: var(--color-band-legal);
}

.page-404 .footer-cta-zone {
  background: var(--color-band-404);
}

.cta {
  position: relative;
  z-index: 10;
  margin: 0 0 -110px;
  padding: 0;
}

.cta .container {
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  background: linear-gradient(135deg,
      var(--color-bg-dark-2) 0%,
      var(--color-primary) 55%,
      var(--color-cta-accent) 100%);
  border-radius: 28px;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  color: white;
  box-shadow: 0 20px 60px rgba(35, 73, 118, 0.15);
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.cta-icon {
  width: 72px;
  height: 72px;
  background: white;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  flex-shrink: 0;
}

.cta-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.cta-box h2,
.cta-text h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--color-white);
}

.cta-box p,
.cta-text p {
  margin-top: -10px;
  color: var(--color-white-85);
  line-height: 1.55;
  font-size: 15px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--nav-white);
  color: var(--nav-rebecca);
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 10px 22px;
  min-width: 0;
  min-height: 0;
  height: auto;
  border-radius: var(--nav-radius-pill);
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: none;
  box-sizing: border-box;
  transition:
    transform 0.12s,
    box-shadow 0.15s;
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background: var(--nav-white);
  color: var(--nav-rebecca);
}

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

.footer-cta-zone footer,
footer {
  position: relative;
  z-index: 1;
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 148px 0 32px;
  margin-top: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
  padding-bottom: 32px;
}

.footer-logo {
  display: inline-flex;
  flex-shrink: 0;
}

.footer-top img,
.footer-logo img {
  width: 160px;
  height: auto;
  display: block;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.social-links a {
  color: var(--color-footer-link);
  transition: 0.3s;
  font-size: 14px;
}

.social-links a:hover {
  color: var(--color-white);
}

.footer-cta-zone footer hr,
footer hr {
  border: none;
  height: 1px;
  background: var(--color-footer-divider);
  margin: 0 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: var(--color-footer-muted);
  margin: 0;
  font-size: 14px;
}

.footer-bottom .footer-legal,
.footer-bottom div {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--color-footer-muted);
  font-size: 14px;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

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

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

  .cta {
    margin-bottom: -88px;
  }

  .cta-box {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 32px 28px;
  }

  .cta-left {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 18px;
  }

  .cta-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .cta-box h2,
  .cta-text h2 {
    font-size: 22px;
  }

  .cta-box p,
  .cta-text p {
    font-size: 14px;
  }

  .footer-cta-zone footer,
  footer {
    padding: 120px 0 32px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/*================================
      Floating Reviews (desktop)
================================*/

@media (min-width: 769px) {
  .testimonial-card {
    animation: floatCard 5s ease-in-out infinite;
  }

  .testimonial-card:nth-child(2) {
    animation-delay: 1s;
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

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

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

/*================================
      Quote Pulse
================================*/

.quote-icon {
  animation: pulseQuote 2s infinite;
}

@keyframes pulseQuote {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);

    color: #8a63ff;
  }

  100% {
    transform: scale(1);
  }
}

/*================================
      CTA Gradient Animation
================================*/

.cta-box {
  background: linear-gradient(270deg,
      var(--color-bg-dark-2),
      var(--color-primary),
      var(--color-cta-accent),
      var(--color-bg-dark-2));

  background-size: 400% 400%;

  animation: gradientMove 8s ease infinite;
  z-index: -1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*================================
      CTA Button Shine
================================*/

.cta-btn {
  position: relative;

  overflow: hidden;
}

.cta-btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 45%;

  height: 100%;

  background: var(--color-white-45);

  transform: skewX(-25deg);

  animation: shineBtn 3s infinite;
}

@keyframes shineBtn {
  100% {
    left: 170%;
  }
}

/*================================
      Hover Card
================================*/

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.03);

  box-shadow: 0 30px 60px var(--color-brand-tint-18);
}

/*================================
      Underline Animation
================================*/

.social-links a {
  position: relative;
}

.social-links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -5px;

  width: 0;

  height: 2px;

  background: #8a63ff;

  transition: 0.35s;
}

.social-links a:hover::after {
  width: 100%;
}

/* ===========================
   About Hero Section
=========================== */

/*==========================
Navbar
==========================*/

.header1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 0;
}

.container1 {
  width: 100%;
  max-width: var(--site-container-max-width);
  padding: 0 var(--site-container-inline-padding);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 130px;
}

.navbar1 {
  display: flex;
  align-items: center;
  gap: 45px;
  background: none;
}

.navbar1 a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.35s;
  position: relative;
}

.navbar1 a:hover {
  color: #9b7bff;
}

.navbar1 .active {
  color: var(--color-white);
}

.navbar1 .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 35px;
  height: 3px;
  border-radius: 20px;
}

.talk-btn1 {
  text-decoration: none;

  color: #4d3df7;
  background: var(--color-white);

  padding: 15px 35px;

  border-radius: 50px;

  font-size: 16px;
  font-weight: 400;

  transition: 0.35s;
}

.talk-btn1:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.35);
}

.menu-btn {
  display: none;
  color: var(--color-white);
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .menu-btn {
    display: block;
  }

  .navbar1 {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: #17122f;

    display: none;

    flex-direction: column;

    padding: 35px 0;

    gap: 30px;
  }

  .navbar1.active {
    display: flex;
  }

  .talk-btn1 {
    display: none;
  }
}

/* About / Contact / Services / Web: shared #site-header (same sticky layer as home) */
.page-about,
.page-contact,
.page-services,
.page-web {
  position: relative;
}

.page-about #site-header,
.page-contact #site-header,
.page-services #site-header,
.page-web #site-header {
  /* top/padding come from shared #site-header (+ mobile overrides) — do not re-set top here */
  position: sticky;
  z-index: 100;
  background: transparent;
}

/* About + Services: float header over hero; .nav--solid applies purple pill after hero exits */
.page-about #site-header,
.page-services #site-header {
  margin-bottom: calc(-1 * var(--header-stack));
}

/* Web service page: same overlay header over lavender hero (solid purple pill) */
.page-web #site-header {
  margin-bottom: calc(-1 * var(--header-stack));
}

.page-about header.site-header,
.page-contact header.site-header,
.page-services header.site-header,
.page-web header.site-header {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  background: transparent;
}

/* page-services footer band: light muted zone — see services.css */

@media (max-width: 768px) {

  /* One mobile header chrome for every page (beats any page-specific top/padding) */
  .page-home #site-header,
  .page-about #site-header,
  .page-contact #site-header,
  .page-services #site-header,
  .page-web #site-header {
    top: 8px;
    padding: 10px 6px 0;
  }

  .page-about #site-header,
  .page-services #site-header,
  .page-web #site-header {
    margin-bottom: calc(-1 * var(--header-stack));
  }

  .page-web .footer-cta-zone {
    overflow-x: clip;
  }

  /* Service-detail CTA pen image — never bleed past the viewport */
  .page-web .cta-visual {
    display: none !important;
  }

  /* Steps / legacy .hero on services body: same text-start Y as home */
  .page-services .hero {
    min-height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding-top: var(--header-clearance) !important;
    padding-bottom: clamp(1.25rem, 3vh, 2rem) !important;
    padding-inline: var(--site-container-inline-padding) !important;
    background: radial-gradient(circle at top right,
        var(--color-celestial-shade-30) 0%,
        var(--color-celestial-shade-60) 40%,
        var(--color-celestial-shade-90) 90%) !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }

  .page-services .hero-content {
    width: 100% !important;
    max-width: var(--site-container-max-width) !important;
    margin: 0 auto !important;
  }

  /* About mobile: clear CTA over hero; solid pill restores white CTA */
  .page-about .site-header .nav:not(.nav--solid) .btn-nav {
    color: var(--color-white) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
  }

  .page-about .site-header .nav.nav--solid .btn-nav {
    color: var(--nav-rebecca) !important;
    background: var(--color-white) !important;
    border: 1px solid transparent !important;
  }
}

.about-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
  height: auto;
  overflow: hidden;
  display: flex;
  /* Top-align like home — do NOT vertically center (that shifts copy down) */
  align-items: center;
  /* Clear floating header; keep full-bleed image behind it */
  padding: var(--header-clearance) 0 clamp(2.5rem, 6vh, 4rem);
  box-sizing: border-box;
}

.about-hero .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  animation: zoomBg 8s ease-in-out infinite alternate;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-about-hero-overlay);
  z-index: 2;
}

.about-hero .container {
  width: 100%;
  max-width: var(--site-container-max-width);
  padding: 0 var(--site-container-inline-padding);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-content1 {
  max-width: 620px;
  color: var(--color-text-on-dark);
}

.about-hero .section-title {
  align-items: center;
  gap: 12px;
  color: var(--color-text-eyebrow-alt);
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  display: block;
  animation: fadeUp 1s;
}

.about-hero .section-title span {
  width: 40px;
  height: 2px;
  background: var(--gradient-text-accent);
}

.hero-content1 h1 {
  font-family: var(--font-heading);
  font-size: 68px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--color-text-on-dark);
  animation: fadeUp 1s 0.2s both;
}

/* Same accent palette as home hero h1 span */
.hero-content1 h1 span {
  font-family: var(--font-heading);
  background: var(--gradient-text-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-content1 p {
  color: var(--color-text-on-dark-muted);
  font-size: 22px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 45px;

  animation: fadeUp 1s 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;

  animation: fadeUp 1s 0.6s both;
}

.btn-primary1,
.btn-secondary1 {
  text-decoration: none;
}

/* Match home .btn-primary */
.btn-primary1 {
  background: var(--gradient-button);
  color: var(--color-white);
  box-shadow: 0 15px 35px var(--color-brand-tint-30);
}

.btn-primary1:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(58, 122, 197, 0.45);
}

.btn-secondary1 {
  background: var(--color-white);
  color: var(--color-text-body);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary1:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(109, 70, 234, 0.35);
}

/* ======================
Animations
====================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomBg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* ======================
Responsive
====================== */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content p {
    font-size: 19px;
  }
}

@media (max-width: 768px) {


  #all-services .service-card,
  .services-grid .service-card {
    gap: 4px !important;
  }

  /* About hero — mobile: text block sits mid-viewport, left-aligned copy */
  .about-hero {
    min-height: 100svh;
    height: auto;
    text-align: left;
    align-items: center;
    justify-content: center;
    padding: var(--header-clearance) 0 2.5rem;
    box-sizing: border-box;
  }

  .about-hero .overlay {
    background: var(--gradient-about-hero-overlay-mobile);
  }

  .about-hero .container {
    /* width/padding set by shared --mobile-hero-rail rules above */
    margin-bottom: 0;
    box-sizing: border-box;
  }

  .about-hero .hero-content1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    text-align: left;
    margin: 0;
    gap: 1.5rem;
  }

  .about-hero .section-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #aecdf1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin: 0;
    animation: none;
  }

  .about-hero .section-title span {
    width: 32px;
    height: 2px;
    background: var(--gradient-text-accent);
    flex-shrink: 0;
  }

  .about-hero .hero-content1 h1 {
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--color-white);
    animation: none;
  }

  .about-hero .hero-content1 h1 br {
    display: block;
  }

  .about-hero .hero-content1 h1 span {
    background: var(--gradient-text-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline;
  }

  .about-hero .hero-content1 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.65;
    max-width: 34ch;
    margin: 0;
    animation: none;
  }

  .about-hero .hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin: 0;
    animation: none;
  }

  .about-hero .btn-primary1,
  .about-hero .btn-secondary1 {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 60px;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    white-space: nowrap;
  }

  .about-hero .btn-primary1 {
    background: var(--gradient-text-accent);
    color: var(--color-white);
    box-shadow: 0 15px 35px var(--color-brand-tint-30);
  }

  .about-hero .btn-secondary1 {
    background: var(--color-white);
    color: var(--color-text-card);
    border: 1px solid #e4dff5;
  }

  .about-hero .btn-primary1 i,
  .about-hero .btn-secondary1 i {
    font-size: 14px;
  }

  .hero-content {
    margin: auto;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
    margin-bottom: 35px;
  }

  .btn-primary,
  .btn-secondary {
    width: 220px;
    min-width: 220px;
    min-height: 56px;
    height: 56px;
    padding: 0 28px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    padding: var(--header-clearance) 0 2rem;
  }

  .about-hero .container {
    /* keep shared --mobile-hero-rail */
    box-sizing: border-box;
  }

  .about-hero .hero-content1 {
    gap: 2.5rem;
  }

  .about-hero .hero-content1 h1 {
    font-size: 36px;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .about-hero .hero-content1 p {
    font-size: 15px;
    line-height: 1.65;
    max-width: 34ch;
    margin-bottom: 0;
  }

  .about-hero .hero-buttons {
    gap: 10px;
  }

  .about-hero .btn-primary1,
  .about-hero .btn-secondary1 {
    min-height: 48px;
    height: 48px;
    font-size: 12.5px;
    padding: 0 12px;
    gap: 7px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    height: 52px;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 8, 30, 0.55), rgba(10, 8, 30, 0.75)),
    linear-gradient(90deg,
      rgba(20, 10, 70, 0.85),
      rgba(40, 20, 100, 0.45),
      rgba(0, 0, 0, 0.35));
}

.circle1 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--color-primary-alt);
  filter: blur(170px);
  opacity: 0.35;
  top: -120px;
  right: -120px;
  animation: float 8s infinite ease-in-out;
}

.page-about #journey.about {
  padding: 22vh 0 12vh 0;

  background: var(--color-bg-surface);

  overflow: hidden;
}

.about-container1 {
  width: 100%;

  max-width: var(--site-container-max-width);

  padding: 0 var(--site-container-inline-padding);

  margin: 0 auto;
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 80px;
}

.about-content1 {
  width: 50%;
}

.about-tag1 {
  color: var(--color-text-eyebrow-strong);

  font-size: 20px;

  font-weight: 400;

  letter-spacing: 3px;
}

.about-content1 h2 {
  font-size: 48px;

  font-weight: 600;

  margin: 30px 0;

  color: var(--color-text);
}

.about-content1 h2 span {
  color: var(--color-text-headline-accent);
}

.about-content1 p {
  color: var(--color-text-paragraph-subtle);

  line-height: 34px;

  font-size: 20px;

  max-width: 520px;
}

/*=========================
      IMAGE
==========================*/

.about-image1 {
  width: 50%;

  position: relative;

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

.about-image1 img {
  width: 100%;

  transition: 0.5s;
}

.about-image1 img:hover {
  transform: rotate(5deg) scale(1.03);
}

.shape {
  position: absolute;

  width: 180px;
  height: 180px;

  background: var(--color-bg-decor-shape);

  border-radius: 20px;

  top: -20px;
  right: 30px;

  transform: rotate(18deg);

  z-index: 0;
}

.dots {
  position: absolute;

  width: 110px;
  height: 110px;

  right: -20px;
  top: 30px;

  background-image: radial-gradient(#8b5cf6 2px, transparent 2px);

  background-size: 14px 14px;

  opacity: 0.35;
}

/*================================
        Animation
================================*/

.about-content1 {
  animation: fadeLeft 1s ease;
}

.about-image1 {
  animation: fadeRight 1s ease;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(80px) rotate(5deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(8deg);
  }
}

.about-image1 img {
  width: 80%;
  border-radius: 18px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: rotate(8deg) translateY(0);
  }

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

  100% {
    transform: rotate(8deg) translateY(0);
  }
}

/*==========================
       Responsive
===========================*/

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }

  /* Mobile/tablet order: text first, image second (matches design; desktop stays row) */
  .about-container1 {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .about-content1 {
    width: 100%;
    order: 1;
  }

  .about-image1 {
    width: 100%;
    order: 2;
  }

  .about-content1 p {
    max-width: 650px;
    margin: auto;
  }

  .about-image1 img {
    width: 58%;
    max-width: 600px;
  }

  .shape {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 56px 20px;
    background: var(--color-bg-muted-alt);
  }

  .about-container1 {
    width: 100%;
    gap: 36px;
  }

  .about-tag1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-eyebrow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
  }

  .about-tag1::before,
  .about-tag1::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--color-text-eyebrow);
    border-radius: 2px;
    flex-shrink: 0;
  }

  .about-content1 h2 {
    font-size: clamp(28px, 7vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 28px;
    color: var(--color-text-dark);
  }

  .about-content1 h2 span {
    color: var(--color-text-headline-accent);
  }

  .about-content1 p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-paragraph-subtle);
    max-width: 45ch;
    margin: 0 auto;
  }

  .about-image1 img {
    width: 77%;
    max-width: 420px;
    border-radius: 24px;
    margin-top: 20px;
  }

  .shape {
    width: 120px;
    height: 120px;
    top: -15px;
    right: 10px;
  }

  .dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-content1 h2 {
    font-size: 28px;
  }

  .about-tag1 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .about-content1 p {
    font-size: 14px;
  }
}

/* =====================================================
   CORE VALUES SECTION
===================================================== */

.core-values {
  padding: 100px var(--site-container-inline-padding);
  background: var(--color-white);
  text-align: center;

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* =====================================================
   BACKGROUND GLOW
===================================================== */

.core-values::before {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: -260px;
  left: -180px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(48, 125, 220, 0.12),
      rgba(111, 78, 255, 0.07),
      transparent 70%);

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

  animation: coreGlowLeft 8s ease-in-out infinite alternate;
}

.core-values::after {
  content: "";
  position: absolute;

  width: 430px;
  height: 430px;

  right: -200px;
  bottom: -260px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(105, 70, 255, 0.10),
      transparent 70%);

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

  animation: coreGlowRight 10s ease-in-out infinite alternate;
}


/* =====================================================
   CONTAINER
===================================================== */

.core-values .container {
  width: 100%;
  max-width: var(--site-container-max-width);
  padding: 0 var(--site-container-inline-padding);
  margin: 0 auto;

  position: relative;
  z-index: 2;
}


/* =====================================================
   SUBTITLE
===================================================== */

.core-values .section-subtitle {
  color: var(--color-text-section-label);

  font-size: 20px;
  font-weight: 400;

  letter-spacing: 3px;

  text-transform: uppercase;

  display: inline-block;

  margin-bottom: 20px;



  animation:
    coreSubtitleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}


/* =====================================================
   TITLE
===================================================== */

.core-values .section-title2 {
  font-size: 45px;
  font-weight: 600;

  color: var(--color-text);

  margin-bottom: 70px;


  transform: translateY(35px);

  animation:
    coreTitleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.core-values .section-title2 span {
  color: var(--color-text-headline-accent);

  display: inline-block;

  animation:
    accentTitleFloat 4s ease-in-out 1.3s infinite;
}


/* =====================================================
   GRID
===================================================== */

.core-values .values-grid {
  display: grid;

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

  gap: 32px;
}


/* =====================================================
   VALUE CARD
===================================================== */

.core-values .value-card {
  text-align: center;

  position: relative;


  transform:
    translateY(55px) scale(0.92);

  animation:
    valueReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;

  will-change: transform;
}


/* =====================================================
   STAGGER
===================================================== */

.core-values .value-card:nth-child(1) {
  animation-delay: 0.3s;
}

.core-values .value-card:nth-child(2) {
  animation-delay: 0.42s;
}

.core-values .value-card:nth-child(3) {
  animation-delay: 0.54s;
}

.core-values .value-card:nth-child(4) {
  animation-delay: 0.66s;
}

.core-values .value-card:nth-child(5) {
  animation-delay: 0.78s;
}

.core-values .value-card:nth-child(6) {
  animation-delay: 0.9s;
}


/* =====================================================
   ICON BOX
===================================================== */

.core-values .icon-box1 {
  width: 100px;
  height: 100px;

  border-radius: 50%;

  border: 2px solid #6a4dff;

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

  margin: 0 auto 25px;

  position: relative;

  background: transparent;

  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;

  animation:
    iconIdle 4s ease-in-out infinite;
}


/* icon delays */

.core-values .value-card:nth-child(2) .icon-box1 {
  animation-delay: 0.4s;
}

.core-values .value-card:nth-child(3) .icon-box1 {
  animation-delay: 0.8s;
}

.core-values .value-card:nth-child(4) .icon-box1 {
  animation-delay: 1.2s;
}

.core-values .value-card:nth-child(5) .icon-box1 {
  animation-delay: 1.6s;
}

.core-values .value-card:nth-child(6) .icon-box1 {
  animation-delay: 2s;
}


/* Outer circle */

.core-values .icon-box1::before {
  content: "";

  position: absolute;

  inset: -7px;

  border-radius: 50%;

  border:
    1px solid rgba(106, 77, 255, 0.25);

  transition:
    transform 0.5s ease,
    opacity 0.4s ease,
    border-color 0.4s ease;
}


/* Pulse circle */

.core-values .icon-box1::after {
  content: "";

  position: absolute;

  inset: -14px;

  border-radius: 50%;

  border:
    1px solid rgba(70, 120, 255, 0.15);

  opacity: 0;

  transform: scale(0.7);

  pointer-events: none;
}


/* =====================================================
   ICON IMAGE
===================================================== */

.core-values .icon-box1 img {
  max-width: 70%;
  max-height: 70%;

  object-fit: contain;

  position: relative;

  z-index: 2;

  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}


/* =====================================================
   NUMBER
===================================================== */

.core-values .number {
  display: block;

  font-size: 15px;

  font-weight: 700;

  color: var(--color-text-dark);

  margin-bottom: 10px;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}


/* =====================================================
   CARD TITLE
===================================================== */

.core-values .value-card h3 {
  font-size: 16px;

  color: var(--color-text-dark);

  margin-bottom: 15px;

  position: relative;

  transition:
    transform 0.4s ease,
    color 0.4s ease;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.core-values .value-card p {
  color: var(--color-text-value-desc);

  line-height: 1.8;

  font-weight: 400;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


/* =====================================================
   DESKTOP HOVER
===================================================== */


@media (min-width: 769px) {

  .all-services-container.mobile-services {
    padding-top: 12vh !important;
  }

  .core-values .value-card:hover {
    transform:
      translateY(-14px) scale(1.035);

    filter:
      drop-shadow(0 20px 25px rgba(60, 100, 180, 0.12));
  }


  .core-values .value-card:hover .icon-box1 {
    transform:
      translateY(-7px) scale(1.12) rotateY(360deg);

    background:
      linear-gradient(135deg,
        rgba(40, 125, 255, 0.16),
        rgba(105, 70, 255, 0.13));

    border-color: #4d87ff;

    box-shadow:
      0 15px 35px rgba(75, 105, 255, 0.20),

      0 0 0 8px rgba(75, 105, 255, 0.05);
  }


  .core-values .value-card:hover .icon-box1::before {
    transform: scale(1.12);

    border-color:
      rgba(70, 120, 255, 0.4);
  }


  .core-values .value-card:hover .icon-box1::after {
    animation:
      iconPulseRing 0.8s ease-out;
  }


  .core-values .value-card:hover .icon-box1 img {
    transform:
      scale(1.12) rotate(-6deg);

    filter:
      drop-shadow(0 8px 10px rgba(45, 100, 220, 0.20));
  }


  .core-values .value-card:hover .number {
    transform:
      translateY(-2px);

    color: var(--color-primary);
  }


  .core-values .value-card:hover h3 {
    transform:
      translateY(-3px);

    color:
      var(--color-text-headline-accent);
  }


  .core-values .value-card:hover p {
    transform:
      translateY(-2px);

    opacity: 0.88;
  }


  .core-values .value-card::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -18px;

    width: 0;
    height: 2px;

    transform:
      translateX(-50%);

    background:
      linear-gradient(90deg,
        transparent,
        #327ed7,
        #744dff,
        transparent);

    border-radius: 20px;

    transition:
      width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }


  .core-values .value-card:hover::after {
    width: 70%;
  }

}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes coreSubtitleReveal {

  0% {
    opacity: 0;

    transform:
      translateY(-18px);

    letter-spacing: 7px;
  }

  100% {
    opacity: 1;

    transform:
      translateY(0);

    letter-spacing: 3px;
  }

}


@keyframes coreTitleReveal {

  0% {
    opacity: 0;

    transform:
      translateY(35px);

    filter: blur(4px);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0);

    filter: blur(0);
  }

}


@keyframes valueReveal {

  0% {
    opacity: 0;

    transform:
      translateY(55px) scale(0.92);

    filter: blur(5px);
  }

  65% {
    opacity: 1;

    filter: blur(0);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0) scale(1);

    filter: blur(0);
  }

}


@keyframes iconIdle {

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

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

}


@keyframes iconPulseRing {

  0% {
    opacity: 0.8;

    transform:
      scale(0.75);
  }

  100% {
    opacity: 0;

    transform:
      scale(1.35);
  }

}


@keyframes accentTitleFloat {

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

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

}


@keyframes coreGlowLeft {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.4;
  }

  100% {
    transform:
      translate(70px, 50px) scale(1.2);

    opacity: 0.85;
  }

}


@keyframes coreGlowRight {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.3;
  }

  100% {
    transform:
      translate(-60px, -45px) scale(1.15);

    opacity: 0.7;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

  .core-values .values-grid {
    grid-template-columns:
      repeat(3, 1fr);

    row-gap: 50px;

    margin-right: 0;
  }

  .core-values .value-card {
    width: 100%;
  }

}


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

/* =====================================================
   CORE VALUES — MOBILE 3D VERSION
===================================================== */
/* =====================================================
   CORE VALUES — MOBILE ONLY
   الـ WEB / DESKTOP يفضل زي ما هو بدون أي تعديل
===================================================== */

@media (max-width: 768px) {

  .core-values {
    position: relative;
    overflow: hidden;
    perspective: 1200px;
  }

  .core-values .container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }


  /* =====================================================
     SUBTITLE
  ===================================================== */

  .core-values .section-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: var(--color-text-eyebrow);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.2px;

    margin-bottom: 14px;

    animation: coreSubtitleFloat 4s ease-in-out infinite;
  }

  .core-values .section-subtitle::before,
  .core-values .section-subtitle::after {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--color-text-eyebrow);

    border-radius: 2px;

    flex-shrink: 0;
  }


  /* =====================================================
     TITLE
  ===================================================== */

  .core-values .section-title2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;

    color: var(--color-text-dark);

    margin: 0 0 28px;

    transform-style: preserve-3d;

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

  .core-values .section-title2 span {
    display: block;

    color: var(--color-text-headline-accent);
  }


  /* =====================================================
     CARDS GRID
  ===================================================== */

  .core-values .values-grid {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin: 0;
    padding: 0;

    perspective: 1200px;
  }


  /* =====================================================
     CARD
  ===================================================== */

  .core-values .value-card {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;

    column-gap: 14px;
    row-gap: 4px;

    align-items: start;

    text-align: left;

    background:
      linear-gradient(135deg,
        rgba(255, 255, 255, 1),
        rgba(249, 247, 255, 0.96));

    border-radius: 16px;

    padding: 18px 16px 18px 18px;

    border: 1px solid rgba(99, 54, 228, 0.08);

    border-left: 4px solid var(--color-primary);

    box-shadow:
      0 12px 28px rgba(35, 73, 118, 0.10),
      0 4px 10px rgba(99, 54, 228, 0.04);

    box-sizing: border-box;

    overflow: hidden;

    transform-style: preserve-3d;

    backface-visibility: hidden;

    /*
      الحركة هنا للكارت نفسها
      ولكن بسيطة جدًا عشان الـUI يفضل ثابت
    */

    animation:
      coreCardFloat 5.5s ease-in-out infinite;

    transition:
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }


  /* =====================================================
     DIFFERENT CARD TIMING
  ===================================================== */

  .core-values .value-card:nth-child(1) {
    animation-delay: -1s;
  }

  .core-values .value-card:nth-child(2) {
    animation-delay: -2.2s;
  }

  .core-values .value-card:nth-child(3) {
    animation-delay: -3.4s;
  }

  .core-values .value-card:nth-child(4) {
    animation-delay: -4.6s;
  }

  .core-values .value-card:nth-child(5) {
    animation-delay: -1.7s;
  }

  .core-values .value-card:nth-child(6) {
    animation-delay: -2.8s;
  }


  /* =====================================================
     CARD LIGHT
  ===================================================== */

  .core-values .value-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
      radial-gradient(circle,
        rgba(148, 85, 183, 0.16) 0%,
        rgba(148, 85, 183, 0.06) 45%,
        transparent 72%);

    pointer-events: none;

    transform: translateZ(5px);

    animation:
      coreCardGlow 4s ease-in-out infinite;
  }


  /* =====================================================
     SECOND LIGHT
  ===================================================== */

  .core-values .value-card::after {
    content: "";

    position: absolute;

    bottom: -60px;
    left: -45px;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
      radial-gradient(circle,
        rgba(83, 58, 156, 0.10),
        transparent 70%);

    pointer-events: none;

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


  /* =====================================================
     ICON BOX
  ===================================================== */

  .core-values .icon-box1 {
    position: relative;

    grid-column: 1;
    grid-row: 1 / span 2;

    width: 48px;
    height: 48px;

    margin: 2px 0 0;

    border-radius: 12px;

    background: var(--color-bg-icon-box);

    border: 1px solid rgba(99, 54, 228, 0.25);

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

    transform-style: preserve-3d;

    box-shadow:
      0 8px 18px rgba(83, 58, 156, 0.12);

    animation:
      coreIconFloat 3.8s ease-in-out infinite;
  }


  /* =====================================================
     ICON GLOW
  ===================================================== */

  .core-values .icon-box1::before {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 15px;

    background:
      radial-gradient(circle,
        rgba(148, 85, 183, 0.18),
        transparent 70%);

    filter: blur(5px);

    opacity: 0.65;

    z-index: -1;

    animation:
      coreIconGlow 3s ease-in-out infinite;
  }


  /* =====================================================
     ICON IMAGE
  ===================================================== */

  .core-values .icon-box1 img {
    position: relative;

    z-index: 2;

    width: auto;
    height: 30px;

    max-width: 30px;

    object-fit: contain;

    transform: translateZ(18px);

    animation:
      coreIconImage 3.8s ease-in-out infinite;
  }


  /* =====================================================
     NUMBER
     نخليه زي نسخة الموبايل الأصلية
  ===================================================== */

  .core-values .number {
    display: none;
  }


  /* =====================================================
     TITLE INSIDE CARD
  ===================================================== */

  .core-values .value-card h3 {
    position: relative;

    z-index: 3;

    grid-column: 2;
    grid-row: 1;

    font-size: 16px;
    font-weight: 700;

    color: var(--color-text-dark);

    margin: 0;

    line-height: 1.3;

    transform: translateZ(14px);
  }


  /* =====================================================
     DESCRIPTION INSIDE CARD
  ===================================================== */

  .core-values .value-card p {
    position: relative;

    z-index: 3;

    grid-column: 2;
    grid-row: 2;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.55;

    color: var(--color-text-value-desc);

    margin: 0;

    transform: translateZ(8px);
  }


  /* =====================================================
     3D CARD ANIMATION
  ===================================================== */

  @keyframes coreCardFloat {

    0%,
    100% {
      transform:
        translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    }

    25% {
      transform:
        translate3d(-2px, -3px, 5px) rotateX(0.5deg) rotateY(-0.8deg);
    }

    50% {
      transform:
        translate3d(2px, -6px, 10px) rotateX(-0.7deg) rotateY(1deg);
    }

    75% {
      transform:
        translate3d(-1px, -3px, 5px) rotateX(0.4deg) rotateY(-0.6deg);
    }
  }


  /* =====================================================
     ICON 3D
  ===================================================== */

  @keyframes coreIconFloat {

    0%,
    100% {
      transform:
        translateZ(15px) rotateX(0deg) rotateY(0deg);
    }

    50% {
      transform:
        translateZ(30px) rotateX(-3deg) rotateY(4deg);
    }
  }


  /* =====================================================
     ICON IMAGE
  ===================================================== */

  @keyframes coreIconImage {

    0%,
    100% {
      transform:
        translateZ(18px) scale(1) rotate(0deg);
    }

    50% {
      transform:
        translateZ(28px) scale(1.05) rotate(3deg);
    }
  }


  /* =====================================================
     ICON GLOW
  ===================================================== */

  @keyframes coreIconGlow {

    0%,
    100% {
      opacity: 0.4;
      transform: scale(0.95);
    }

    50% {
      opacity: 0.9;
      transform: scale(1.08);
    }
  }


  /* =====================================================
     CARD GLOW
  ===================================================== */

  @keyframes coreCardGlow {

    0%,
    100% {
      opacity: 0.4;
      transform:
        translateZ(5px) scale(0.9);
    }

    50% {
      opacity: 1;
      transform:
        translateZ(12px) scale(1.12);
    }
  }


  /* =====================================================
     BOTTOM GLOW
  ===================================================== */

  @keyframes coreBottomGlow {

    0%,
    100% {
      opacity: 0.35;
      transform: scale(0.9);
    }

    50% {
      opacity: 0.7;
      transform: scale(1.12);
    }
  }


  /* =====================================================
     SUBTITLE
  ===================================================== */

  @keyframes coreSubtitleFloat {

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

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


  /* =====================================================
     TITLE
  ===================================================== */

  @keyframes coreTitleFloat {

    0%,
    100% {
      transform:
        translateY(0) rotateX(0deg);
    }

    50% {
      transform:
        translateY(-3px) rotateX(2deg);
    }
  }


  /* =====================================================
     REDUCED MOTION
  ===================================================== */

  @media (prefers-reduced-motion: reduce) {

    .core-values .section-subtitle,
    .core-values .section-title2,
    .core-values .value-card,
    .core-values .value-card::before,
    .core-values .value-card::after,
    .core-values .icon-box1,
    .core-values .icon-box1::before,
    .core-values .icon-box1 img {
      animation: none !important;
    }

    .core-values .value-card,
    .core-values .icon-box1 {
      transform: none !important;
    }
  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 360px) {

    .core-values {
      padding: 48px 0 56px;
    }

    .core-values .container {
      padding: 0 13px;
    }

    .core-values .section-title2 {
      font-size: 25px;
    }

    .core-values .value-card {
      grid-template-columns: 48px 1fr;
      column-gap: 12px;

      padding:
        16px 14px 16px 15px;
    }

    .core-values .icon-box1 {
      width: 44px;
      height: 44px;
    }

    .core-values .icon-box1 img {
      width: 27px;
      height: 27px;
    }

    .core-values .value-card h3 {
      font-size: 15px;
    }

    .core-values .value-card p {
      font-size: 12px;
    }
  }
}





/* =====================================================
   OUR PROCESS SECTION
   CSS ONLY - NO JAVASCRIPT
===================================================== */

.our-process {
  background: var(--color-white);
  padding: 100px var(--site-container-inline-padding);

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* =====================================================
   BACKGROUND DECORATION
===================================================== */

.our-process::before {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  top: -260px;
  right: -180px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(101, 111, 232, 0.14),
      rgba(121, 174, 228, 0.08),
      transparent 70%);

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

  animation: processGlowOne 8s ease-in-out infinite alternate;
}

.our-process::after {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  bottom: -230px;
  left: -160px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(121, 174, 228, 0.10),
      transparent 70%);

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

  animation: processGlowTwo 10s ease-in-out infinite alternate;
}


/* =====================================================
   MAIN PROCESS BOX
===================================================== */

.process-section {
  max-width: var(--site-container-max-width);
  width: 100%;

  margin: 0 auto;

  padding: 60px 50px;

  background:
    linear-gradient(110deg,
      #7478D1 0%,
      #79AEE4 100%);

  border-radius: 24px;

  text-align: center;

  color: var(--color-white);

  position: relative;
  overflow: hidden;
  z-index: 2;

  box-shadow:
    0 30px 70px rgba(78, 91, 180, 0.20);

  opacity: 0;

  transform:
    translateY(45px) scale(0.97);

  animation:
    processBoxReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}


/* moving inner light */
.process-section::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -220px;
  left: -120px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.04),
      transparent 70%);

  pointer-events: none;

  animation:
    processInnerGlow 7s ease-in-out infinite alternate;
}


/* soft moving shine */
.process-section::after {
  content: "";
  position: absolute;

  top: -40%;
  left: -30%;

  width: 26%;
  height: 180%;

  background: linear-gradient(110deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.08),
      transparent);

  transform: rotate(12deg);

  pointer-events: none;

  animation:
    processShine 8s ease-in-out infinite;
}


/* =====================================================
   EYEBROW
===================================================== */

.our-process .eyebrow {
  font-size: 20px;

  font-weight: 400;

  letter-spacing: 3px;

  text-transform: uppercase;

  opacity: 0;

  margin-bottom: 16px;

  color: inherit;

  position: relative;
  z-index: 3;

  animation:
    processEyebrowReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}


/* =====================================================
   HEADING
===================================================== */

.our-process .heading {
  font-size: 32px;

  font-weight: 700;

  margin: 0 0 50px;

  color: inherit;

  position: relative;
  z-index: 3;

  opacity: 0;

  transform: translateY(28px);

  animation:
    processHeadingReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}


.our-process .heading span {
  color: inherit;

  display: inline-block;

  animation:
    headingFloat 4s ease-in-out 1.5s infinite;
}


/* =====================================================
   STEPS WRAPPER
===================================================== */

.steps {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 8px;

  position: relative;
  z-index: 3;
}


/* =====================================================
   STEP
===================================================== */

.step {
  display: flex;

  flex-direction: column;

  align-items: center;

  flex: 1;

  min-width: 0;

  position: relative;

  opacity: 0;

  transform:
    translateY(55px) scale(0.92);

  animation:
    processStepReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}


/* step delays */

.step:nth-of-type(1) {
  animation-delay: 0.6s;
}

.step:nth-of-type(2) {
  animation-delay: 0.75s;
}

.step:nth-of-type(3) {
  animation-delay: 0.9s;
}

.step:nth-of-type(4) {
  animation-delay: 1.05s;
}

.step:nth-of-type(5) {
  animation-delay: 1.2s;
}

.step:nth-of-type(6) {
  animation-delay: 1.35s;
}


/* =====================================================
   STEP BODY
===================================================== */

.step-body {
  display: contents;
}


/* =====================================================
   CONNECTORS
===================================================== */

.connector {
  flex: 0 0 40px;

  height: 2px;

  margin-top: 40px;

  position: relative;

  overflow: hidden;

  background:
    repeating-linear-gradient(to right,
      rgba(255, 255, 255, 0.55) 0,
      rgba(255, 255, 255, 0.55) 6px,
      transparent 6px,
      transparent 12px);

  opacity: 0;

  animation:
    connectorReveal 0.7s ease forwards;
}


/* connector delays */

.connector:nth-of-type(2) {
  animation-delay: 0.72s;
}

.connector:nth-of-type(4) {
  animation-delay: 0.87s;
}

.connector:nth-of-type(6) {
  animation-delay: 1.02s;
}

.connector:nth-of-type(8) {
  animation-delay: 1.17s;
}

.connector:nth-of-type(10) {
  animation-delay: 1.32s;
}


/* moving energy through connector */

.connector::after {
  content: "";

  position: absolute;

  top: -2px;
  left: -25px;

  width: 25px;
  height: 6px;

  border-radius: 20px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.95),
      transparent);

  filter: blur(1px);

  animation:
    connectorFlow 2.4s linear infinite;
}


/* =====================================================
   ICON CIRCLE
===================================================== */

.icon-circle {
  width: 80px;
  height: 80px;

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

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  flex-shrink: 0;

  position: relative;

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    background 0.45s ease;

  animation:
    processIconFloat 4s ease-in-out infinite;
}


/* different timings */

.step:nth-of-type(2) .icon-circle {
  animation-delay: 0.35s;
}

.step:nth-of-type(3) .icon-circle {
  animation-delay: 0.7s;
}

.step:nth-of-type(4) .icon-circle {
  animation-delay: 1.05s;
}

.step:nth-of-type(5) .icon-circle {
  animation-delay: 1.4s;
}

.step:nth-of-type(6) .icon-circle {
  animation-delay: 1.75s;
}


/* outer pulse ring */

.icon-circle::before {
  content: "";

  position: absolute;

  inset: -7px;

  border-radius: 50%;

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

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}


/* animated halo */

.icon-circle::after {
  content: "";

  position: absolute;

  inset: -13px;

  border-radius: 50%;

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

  opacity: 0;

  transform: scale(0.7);

  pointer-events: none;
}


/* =====================================================
   ICON SVG
===================================================== */

.icon-circle svg {
  width: 32px;
  height: 32px;

  stroke: #3978D4;

  position: relative;
  z-index: 2;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    stroke 0.4s ease,
    filter 0.4s ease;
}


/* =====================================================
   STEP NUMBER
===================================================== */

.step-number {
  font-size: 15px;

  font-weight: 600;

  margin-bottom: 6px;

  color: var(--color-text-step-label);

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}


/* =====================================================
   STEP TITLE
===================================================== */

.step-title {
  font-size: 16px;

  font-weight: 600;

  margin-bottom: 30px;

  color: var(--color-text-step-title);

  transition:
    transform 0.35s ease,
    text-shadow 0.35s ease;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.step-desc {
  font-size: 14px;

  line-height: 1.6;

  opacity: 0.9;

  max-width: 170px;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


/* =====================================================
   DESKTOP HOVER
===================================================== */

@media (min-width: 769px) {

  .step:hover {
    transform:
      translateY(-14px) scale(1.045);

    filter:
      drop-shadow(0 18px 24px rgba(39, 68, 140, 0.20));
  }


  .step:hover .icon-circle {
    transform:
      translateY(-7px) scale(1.13) rotate(8deg);

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

    box-shadow:
      0 18px 38px rgba(42, 91, 180, 0.26),

      0 0 0 8px rgba(255, 255, 255, 0.08);
  }


  .step:hover .icon-circle::before {
    transform:
      scale(1.12);

    opacity: 0.8;
  }


  .step:hover .icon-circle::after {
    animation:
      processPulseRing 0.9s ease-out;
  }


  .step:hover .icon-circle svg {
    transform:
      scale(1.15) rotate(-8deg);

    stroke:
      #5d55e8;

    filter:
      drop-shadow(0 6px 8px rgba(60, 105, 210, 0.24));
  }


  .step:hover .step-number {
    transform:
      translateY(-2px) scale(1.08);

    color:
      #ffffff;
  }


  .step:hover .step-title {
    transform:
      translateY(-3px);

    text-shadow:
      0 5px 12px rgba(20, 40, 100, 0.20);
  }


  .step:hover .step-desc {
    transform:
      translateY(-3px);

    opacity: 1;
  }

}


/* =====================================================
   KEYFRAMES
===================================================== */

@keyframes processBoxReveal {

  0% {
    opacity: 0;

    transform:
      translateY(45px) scale(0.97);

    filter: blur(7px);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0) scale(1);

    filter: blur(0);
  }

}


@keyframes processEyebrowReveal {

  0% {
    opacity: 0;

    transform:
      translateY(-15px);

    letter-spacing: 7px;
  }

  100% {
    opacity: 0.9;

    transform:
      translateY(0);

    letter-spacing: 3px;
  }

}


@keyframes processHeadingReveal {

  0% {
    opacity: 0;

    transform:
      translateY(28px);

    filter: blur(4px);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0);

    filter: blur(0);
  }

}


@keyframes processStepReveal {

  0% {
    opacity: 0;

    transform:
      translateY(55px) scale(0.92);

    filter: blur(5px);
  }

  65% {
    opacity: 1;

    filter: blur(0);
  }

  100% {
    opacity: 1;

    transform:
      translateY(0) scale(1);

    filter: blur(0);
  }

}


@keyframes connectorReveal {

  from {
    opacity: 0;

    transform:
      scaleX(0);

    transform-origin:
      left center;
  }

  to {
    opacity: 1;

    transform:
      scaleX(1);
  }

}


@keyframes connectorFlow {

  0% {
    left: -25px;
  }

  100% {
    left: 100%;
  }

}


@keyframes processIconFloat {

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

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

}


@keyframes processPulseRing {

  0% {
    opacity: 0.75;

    transform:
      scale(0.72);
  }

  100% {
    opacity: 0;

    transform:
      scale(1.45);
  }

}


@keyframes headingFloat {

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

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

}


@keyframes processGlowOne {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.35;
  }

  100% {
    transform:
      translate(-55px, 45px) scale(1.15);

    opacity: 0.75;
  }

}


@keyframes processGlowTwo {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.25;
  }

  100% {
    transform:
      translate(60px, -45px) scale(1.2);

    opacity: 0.65;
  }

}


@keyframes processInnerGlow {

  0% {
    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.35;
  }

  100% {
    transform:
      translate(80px, 55px) scale(1.2);

    opacity: 0.85;
  }

}


@keyframes processShine {

  0%,
  15% {
    left: -35%;
  }

  55% {
    left: 120%;
  }

  100% {
    left: 120%;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) and (min-width: 769px) {

  .our-process .steps {
    flex-wrap: wrap;

    gap: 30px 10px;
  }

  .our-process .step {
    flex: 0 0 45%;

    margin-bottom: 30px;
  }

  .our-process .connector {
    display: none;
  }

}


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

@media (max-width: 768px) {

  /* =====================================================
     OUR PROCESS — MOBILE
     ORIGINAL LAYOUT + PREMIUM ANIMATION
  ===================================================== */

  .our-process {
    padding: 56px 20px 64px;
    background: var(--color-bg-soft) !important;
  }

  .our-process .process-section {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;

    background: transparent;
    border-radius: 0;
    padding: 0;

    color: var(--color-text-dark);

    box-shadow: none;
    overflow: visible;
  }

  .our-process .process-section::before,
  .our-process .process-section::after {
    display: none;
  }


  /* =====================================================
     EYEBROW
  ===================================================== */

  .our-process .eyebrow {
    display: inline-flex;

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

    gap: 12px;
    width: 100%;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.2px;

    margin-bottom: 14px;

    opacity: 1;

    animation: processEyebrowGlow 3s ease-in-out infinite;
  }

  .our-process .eyebrow::before,
  .our-process .eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--color-primary);

    border-radius: 2px;

    flex-shrink: 0;

    animation: processLineGlow 3s ease-in-out infinite;
  }


  /* =====================================================
     HEADING
  ===================================================== */

  .our-process .heading {
    font-size: 28px;
    font-weight: 800;

    line-height: 1.2;

    color: var(--color-text-dark);

    margin: 0 0 32px;

    opacity: 1;
  }

  .our-process .heading span {
    display: block;

    color: var(--color-primary);
  }


  /* =====================================================
     STEPS
  ===================================================== */

  .our-process .steps {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    position: relative;

    margin: 0;

    padding: 0 0 0 52px;
  }


  /* =====================================================
     TIMELINE
  ===================================================== */

  .our-process .steps::before {
    content: "";

    position: absolute;

    left: 19px;

    top: 28px;
    bottom: 28px;

    width: 2px;

    background:
      linear-gradient(to bottom,
        #7478D1,
        #79AEE4);

    border-radius: 2px;

    z-index: 0;

    transform: none;

    animation: timelinePulse 3s ease-in-out infinite;
  }


  /* =====================================================
     CONNECTOR
  ===================================================== */

  .our-process .connector {
    display: none;
  }


  /* =====================================================
     STEP
  ===================================================== */

  .our-process .step {
    position: relative;

    z-index: 1;

    display: block;

    flex: none;

    width: 100%;

    align-items: stretch;

    margin: 0 0 14px;

    opacity: 1;

    transform: none;
  }

  .our-process .step:last-child {
    margin-bottom: 0;
  }


  /* =====================================================
     ICON
  ===================================================== */

  .our-process .icon-circle {
    position: absolute;

    left: -54px;

    top: 50%;

    transform: translateY(-50%);

    width: 44px;
    height: 44px;

    margin: 0;

    background: var(--color-border-neutral);

    border: none;

    border-radius: 30px;

    box-shadow:
      0 6px 18px rgba(69, 100, 180, 0.16);

    z-index: 2;

    animation:
      processIcon3D 3.5s ease-in-out infinite;
  }


  /* =====================================================
     ICON RING
  ===================================================== */

  .our-process .icon-circle::before {
    content: "";

    position: absolute;

    inset: -4px;

    border-radius: 50%;

    border: 1px solid rgba(116, 120, 209, 0.28);

    animation:
      processIconRing 3s ease-out infinite;
  }


  .our-process .icon-circle::after {
    display: none;
  }


  .our-process .icon-circle svg {
    width: 26px;
    height: 26px;

    stroke: var(--color-primary);

    stroke-width: 1.8;

    animation:
      processIconRotate 4s ease-in-out infinite;
  }


  /* =====================================================
     STEP BODY
  ===================================================== */

  .our-process .step-body {
    position: relative;

    display: block;

    text-align: left;

    background:
      linear-gradient(110deg,
        #7478D1 0%,
        #79AEE4 100%);

    border-radius: 18px;

    padding: 18px 20px;

    box-shadow:
      0 12px 28px rgba(35, 73, 118, 0.22);

    color: var(--color-white);

    overflow: hidden;

    transform: translateZ(0);

    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }


  /* =====================================================
     LIGHT SWEEP
  ===================================================== */

  .our-process .step-body::before {
    content: "";

    position: absolute;

    top: -50%;
    left: -80%;

    width: 45%;
    height: 200%;

    background:
      linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent);

    transform: rotate(18deg);

    pointer-events: none;

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


  /* =====================================================
     SMALL AMBIENT GLOW
  ===================================================== */

  .our-process .step-body::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -45px;
    top: -45px;

    border-radius: 50%;

    background:
      radial-gradient(circle,
        rgba(255, 255, 255, 0.16),
        transparent 70%);

    pointer-events: none;

    animation:
      processGlow 4s ease-in-out infinite;
  }


  /* =====================================================
     NUMBER
  ===================================================== */

  .our-process .step-number {
    display: none;
  }


  /* =====================================================
     TITLE
  ===================================================== */

  .our-process .step-title {
    position: relative;

    z-index: 2;

    font-size: 16px;

    font-weight: 700;

    margin: 0 0 6px;

    color: var(--color-white);
  }


  /* =====================================================
     DESCRIPTION
  ===================================================== */

  .our-process .step-desc {
    position: relative;

    z-index: 2;

    font-size: 13px;

    line-height: 1.55;

    color: var(--color-white-92);

    opacity: 1;

    max-width: none;

    margin: 0;
  }


  /* =====================================================
     HOVER
  ===================================================== */

  .our-process .step:hover .step-body {
    transform:
      translateX(4px);

    box-shadow:
      0 16px 32px rgba(35, 73, 118, 0.28);
  }

  .our-process .step:hover .icon-circle {
    transform:
      translateY(-50%) scale(1.06);
  }


  /* =====================================================
     TOUCH / PRESS
  ===================================================== */

  .our-process .step:active .step-body {
    transform:
      scale(0.985) translateY(2px);

    box-shadow:
      inset 0 3px 8px rgba(35, 73, 118, 0.18),

      0 7px 16px rgba(35, 73, 118, 0.18);
  }

  .our-process .step:active .icon-circle {
    transform:
      translateY(-50%) scale(1.1);
  }


  /* =====================================================
     ANIMATIONS
  ===================================================== */

  @keyframes processEyebrowGlow {

    0%,
    100% {
      text-shadow:
        0 0 0 transparent;
    }

    50% {
      text-shadow:
        0 0 10px rgba(116, 120, 209, 0.25);
    }
  }


  @keyframes processLineGlow {

    0%,
    100% {
      transform: scaleX(0.8);
      opacity: 0.55;
    }

    50% {
      transform: scaleX(1.15);
      opacity: 1;
    }
  }


  @keyframes timelinePulse {

    0%,
    100% {
      opacity: 0.35;
    }

    50% {
      opacity: 0.75;
      box-shadow:
        0 0 8px rgba(121, 174, 228, 0.35);
    }
  }


  @keyframes processIcon3D {

    0%,
    100% {
      transform:
        translateY(-50%) rotateX(0deg) rotateY(0deg) scale(1);
    }

    50% {
      transform:
        translateY(-50%) rotateX(4deg) rotateY(-5deg) scale(1.035);
    }
  }


  @keyframes processIconRotate {

    0%,
    100% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(3deg);
    }
  }


  @keyframes processIconRing {

    0% {
      transform: scale(0.85);
      opacity: 0.6;
    }

    70% {
      transform: scale(1.18);
      opacity: 0;
    }

    100% {
      transform: scale(1.18);
      opacity: 0;
    }
  }


  @keyframes processCardShine {

    0% {
      left: -80%;
      opacity: 0;
    }

    15% {
      opacity: 0;
    }

    35% {
      opacity: 0.8;
    }

    55% {
      left: 130%;
      opacity: 0;
    }

    100% {
      left: 130%;
      opacity: 0;
    }
  }


  @keyframes processGlow {

    0%,
    100% {
      transform: scale(0.8);
      opacity: 0.35;
    }

    50% {
      transform: scale(1.15);
      opacity: 0.75;
    }
  }


  /* =====================================================
     SMALL MOBILE
  ===================================================== */

  @media (max-width: 360px) {

    .our-process {
      padding: 48px 13px 56px;
    }

    .our-process .heading {
      font-size: 25px;
    }

    .our-process .steps {
      padding-left: 48px;
    }

    .our-process .steps::before {
      left: 17px;
    }

    .our-process .icon-circle {
      left: -51px;

      width: 42px;
      height: 42px;
    }

    .our-process .icon-circle svg {
      width: 25px;
      height: 25px;
    }

    .our-process .step-body {
      padding: 16px;
    }

    .our-process .step-title {
      font-size: 15px;
    }

    .our-process .step-desc {
      font-size: 12px;
    }
  }


  /* =====================================================
     REDUCED MOTION
  ===================================================== */

  @media (prefers-reduced-motion: reduce) {

    .our-process *,
    .our-process *::before,
    .our-process *::after {
      animation: none !important;
      transition: none !important;
    }
  }
}


/* =====================================================
   MOBILE KEYFRAMES
===================================================== */

@keyframes mobileProcessReveal {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

}


@keyframes processEyebrowRevealMobile {

  from {
    opacity: 0;

    transform:
      translateY(-12px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


@keyframes mobileHeadingReveal {

  from {
    opacity: 0;

    transform:
      translateY(25px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


@keyframes timelineReveal {

  from {
    transform:
      scaleY(0);
  }

  to {
    transform:
      scaleY(1);
  }

}


@keyframes mobileStepReveal {

  from {
    opacity: 0;

    transform:
      translateX(35px);
  }

  to {
    opacity: 1;

    transform:
      translateX(0);
  }

}


@keyframes mobileIconPulse {

  0%,
  100% {
    box-shadow:
      0 6px 18px rgba(69, 100, 180, 0.16);
  }

  50% {
    box-shadow:
      0 8px 24px rgba(69, 100, 180, 0.28),

      0 0 0 5px rgba(90, 100, 225, 0.06);
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .our-process::before,
  .our-process::after,
  .process-section,
  .process-section::before,
  .process-section::after,
  .our-process .eyebrow,
  .our-process .heading,
  .our-process .heading span,
  .step,
  .connector,
  .connector::after,
  .icon-circle,
  .our-process .steps::before {
    animation: none !important;
  }


  .process-section,
  .our-process .eyebrow,
  .our-process .heading,
  .step,
  .connector {
    opacity: 1;

    transform: none;

    filter: none;
  }

}



.page {
  position: relative;
  max-width: var(--site-container-max-width);
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 10px 0 0;
  margin: 0 auto;
}

/* decorative shape */
.blob {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 95%;
  height: 276px;
  background: var(--color-celestial-tint-30);
  opacity: 0.4;
  border-radius: 18px;
  z-index: 0;
  filter: blur(10px);
  bottom: 12px;
}

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

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

.eyebrow {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--color-violet);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: var(--color-text-section-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 0 30px;
}

.card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-left: 4px solid #436fa4;
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
  position: relative;
  overflow: hidden;
}

.why-choose .icon-box {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--color-bg-icon-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose .icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-violet);
}

.card-text {
  flex: 1;
}

.card-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-bg-dark-2);
  margin: 0 0 6px;
}

.card-text p {
  font-size: 12.5px;
  color: var(--color-text-section-body);
  line-height: 1.5;
  margin: 0;
}

.card-number {
  font-size: 30px;
  font-weight: 800;
  color: #25569096;
  flex-shrink: 0;
}

.comparison {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 50px;
  margin: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.compare-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-bg-dark-2);
  margin: 0 0 18px;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-text-section-muted);
  margin-bottom: 14px;
}

.mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mark svg {
  width: 11px;
  height: 11px;
  stroke: var(--color-white);
  stroke-width: 3;
}

.mark.bad {
  background: #e0785a;
}

.mark.good {
  background: var(--color-primary-strong);
}

.vs-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      var(--color-celestial-tint-30),
      var(--color-primary-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(58, 122, 197, 0.35);
}

.why-choose {
  padding: 100px var(--site-container-inline-padding);
}

/* Why Choose — mobile stacked cards (matches design) */
/* =====================================================
   WHY CHOOSE — MOBILE
   PREMIUM 3D / CSS ONLY
===================================================== */

@media (max-width: 768px) {

  .why-choose {
    padding: 56px 20px 64px;
    background: #f7f6fb;
    perspective: 1000px;
  }


  /* =====================================================
     PAGE
  ===================================================== */

  .why-choose .page {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
    border-radius: 0;
    padding: 0;
  }


  .why-choose .blob {
    display: none;
  }


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

  .why-choose .header {
    text-align: center;
    margin-bottom: 28px;

    animation:
      whyHeaderFloat 4s ease-in-out infinite;
  }


  .why-choose .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;

    color: var(--color-text-section-label);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 12px;

    animation:
      eyebrowPulse 3s ease-in-out infinite;
  }


  .why-choose .eyebrow::before,
  .why-choose .eyebrow::after {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--color-text-section-label);

    border-radius: 2px;

    flex-shrink: 0;

    /* ثابتين — مفيش animation */
  }


  .why-choose .subtitle {
    font-size: 14px;
    line-height: 1.55;

    color: var(--color-text-section-muted);

    max-width: 320px;
    margin: 0 auto;

    animation:
      subtitleFloat 4.5s ease-in-out infinite;
  }


  /* =====================================================
     CARDS GRID
  ===================================================== */

  .why-choose .cards-grid {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin: 0 0 28px;
    padding: 0;

    grid-template-columns: none;

    perspective: 1000px;
  }


  /* =====================================================
     CARD
  ===================================================== */

  .why-choose .card {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;

    background: var(--color-white);

    border: none;

    border-radius: 16px;

    padding: 18px 16px 18px 18px;

    box-shadow:
      0 10px 28px rgba(35, 73, 118, 0.08);

    position: relative;

    overflow: hidden;

    transform-style: preserve-3d;

    /*
       الحركة الأساسية للكارت
       واضحة لكن بدون ما الكارت
       يتحرك من مكانه بشكل مبالغ
    */

    animation:
      cardLevitate 4.8s ease-in-out infinite;

    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }


  /* =====================================================
     DIFFERENT CARD TIMING
  ===================================================== */

  .why-choose .card:nth-child(1) {
    animation-delay: 0s;
  }

  .why-choose .card:nth-child(2) {
    animation-delay: -0.8s;
  }

  .why-choose .card:nth-child(3) {
    animation-delay: -1.6s;
  }

  .why-choose .card:nth-child(4) {
    animation-delay: -2.4s;
  }

  .why-choose .card:nth-child(5) {
    animation-delay: -3.2s;
  }

  .why-choose .card:nth-child(6) {
    animation-delay: -4s;
  }


  /* =====================================================
     SIDE LINE
     ثابتة تماما — NO ANIMATION
  ===================================================== */

  .why-choose .card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
      linear-gradient(180deg,
        var(--color-primary) 0%,
        var(--color-link-light) 100%);

    border-radius: 16px 0 0 16px;

    /* مفيش transform ولا animation */
  }


  /* =====================================================
     CARD LIGHT
  ===================================================== */

  .why-choose .card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    top: -90px;

    border-radius: 50%;

    background:
      radial-gradient(circle,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.3) 35%,
        transparent 70%);

    pointer-events: none;

    opacity: 0;

    transform: translate3d(30px, -20px, 0);

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


  .why-choose .card:nth-child(2)::after {
    animation-delay: -1s;
  }

  .why-choose .card:nth-child(3)::after {
    animation-delay: -2s;
  }

  .why-choose .card:nth-child(4)::after {
    animation-delay: -3s;
  }

  .why-choose .card:nth-child(5)::after {
    animation-delay: -4s;
  }


  /* =====================================================
     ICON
     ثابتة — NO ANIMATION
  ===================================================== */

  .why-choose .icon-box {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    background: var(--color-bg-icon-box);

    border: 1.5px solid var(--color-border-process);

    border-radius: 12px;

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

    position: relative;

    z-index: 1;

    transform: translateZ(20px);

    transition:
      box-shadow 0.3s ease;
  }


  .why-choose .icon-box svg {
    width: 22px;
    height: 22px;

    stroke: var(--color-primary);

    /* ثابت */
  }


  /* =====================================================
     CARD TEXT
  ===================================================== */

  .why-choose .card-text {
    flex: 1;

    min-width: 0;

    padding-right: 36px;

    position: relative;

    z-index: 1;

    text-align: left;

    transform: translateZ(18px);

    transform-style: preserve-3d;
  }


  .why-choose .card-text h3 {
    font-size: 15px;

    font-weight: 700;

    color: var(--color-bg-dark-2);

    margin: 0 0 4px;

    line-height: 1.3;

    transform: translateZ(12px);

    transition:
      transform 0.3s ease;
  }


  .why-choose .card-text p {
    font-size: 13px;

    line-height: 1.5;

    color: var(--color-text-section-body);

    margin: 0;

    transform: translateZ(7px);

    transition:
      transform 0.3s ease;
  }


  /* =====================================================
     NUMBER
  ===================================================== */

  .why-choose .card-number {
    position: absolute;

    right: 14px;
    top: 10px;

    font-weight: 800;

    line-height: 1;

    color: rgba(37, 86, 144, 0.59);

    z-index: 0;

    pointer-events: none;

    transform:
      translateZ(8px);

    animation:
      numberFloat 4s ease-in-out infinite;
  }


  .why-choose .card:nth-child(2) .card-number {
    animation-delay: -1s;
  }

  .why-choose .card:nth-child(3) .card-number {
    animation-delay: -2s;
  }

  .why-choose .card:nth-child(4) .card-number {
    animation-delay: -3s;
  }


  /* =====================================================
     CARD HOVER
  ===================================================== */

  .why-choose .card:hover {
    transform:
      translateY(-5px) translateZ(10px);

    box-shadow:
      0 18px 36px rgba(35, 73, 118, 0.13);
  }


  .why-choose .card:hover .card-text h3 {
    transform:
      translateZ(20px);
  }


  .why-choose .card:hover .card-text p {
    transform:
      translateZ(12px);
  }


  /* =====================================================
     PRESS
  ===================================================== */

  .why-choose .card:active {
    transform:
      translateY(2px) scale(0.985);

    box-shadow:
      0 6px 18px rgba(35, 73, 118, 0.10);
  }


  /* =====================================================
     COMPARISON
  ===================================================== */

  .why-choose .comparison {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 1rem;

    background: transparent;

    border-radius: 0;

    padding: 0;

    margin: 8px 0 0;

    box-shadow: none;

    grid-template-columns: none;

    perspective: 1000px;
  }


  .why-choose .compare-col--falcon {
    order: 1;
  }


  .why-choose .vs-badge {
    order: 2;
  }


  .why-choose .compare-col--traditional {
    order: 3;
  }


  /* =====================================================
     COMPARISON COLUMNS
  ===================================================== */

  .why-choose .compare-col {
    width: 100%;

    background: var(--color-white);

    border-radius: 18px;

    padding: 24px 22px 22px;

    box-shadow:
      0 12px 32px rgb(132 119 167 / 52%);

    text-align: left;

    transform-style: preserve-3d;

    animation:
      comparisonFloat 5s ease-in-out infinite;

    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }


  .why-choose .compare-col--traditional {
    animation-delay: -2.5s;
  }


  .why-choose .compare-col:hover {
    transform:
      translateY(-6px) rotateX(1deg);

    box-shadow:
      0 20px 40px rgb(132 119 167 / 58%);
  }


  .why-choose .compare-col h4 {
    font-size: 16px;

    font-weight: 700;

    color: var(--color-text-dark);

    margin: 0 0 18px;

    transform: translateZ(15px);
  }


  .why-choose .compare-col ul {
    list-style: none;

    margin: 0;

    padding: 0;
  }


  .why-choose .compare-col li {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    color: var(--color-text-section-body);

    margin: 0 0 14px;

    line-height: 1.4;

    transform: translateX(0);

    transition:
      transform 0.3s ease;
  }


  .why-choose .compare-col li:last-child {
    margin-bottom: 0;
  }


  .why-choose .compare-col li:hover {
    transform:
      translateX(5px);
  }


  /* =====================================================
     MARK
  ===================================================== */

  .why-choose .mark {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    transition:
      transform 0.3s ease;
  }


  .why-choose .compare-col li:hover .mark {
    transform:
      scale(1.12);
  }


  .why-choose .mark svg {
    width: 11px;
    height: 11px;
  }


  .why-choose .mark.good {
    background: var(--color-primary);
  }


  .why-choose .mark.bad {
    background: #e0785a;
  }


  /* =====================================================
     VS BADGE
     أهم حركة في المقارنة
  ===================================================== */

  .why-choose .vs-badge {
    width: 64px;

    height: 64px;

    margin: -32px auto;

    z-index: 3;

    position: relative;

    font-size: 15px;

    letter-spacing: 1px;

    box-shadow:
      0 10px 28px rgba(58, 122, 197, 0.4);

    flex-shrink: 0;

    transform-style: preserve-3d;

    animation:
      vsMagnetic 2.8s ease-in-out infinite;

    transition:
      transform 0.25s ease;
  }


  .why-choose .vs-badge:hover {
    transform:
      scale(1.1) rotate(8deg);
  }


  /* =====================================================
     PADDING — ORIGINAL
  ===================================================== */

  .why-choose .compare-col--falcon {
    padding-bottom: 36px;
  }


  .why-choose .compare-col--traditional {
    padding-top: 36px;
  }


  /* =====================================================
     ANIMATIONS
  ===================================================== */


  /* Header subtle 3D motion */

  @keyframes whyHeaderFloat {

    0%,
    100% {
      transform:
        translateY(0) rotateX(0deg);
    }

    50% {
      transform:
        translateY(-3px) rotateX(1deg);
    }

  }


  /* Eyebrow */

  @keyframes eyebrowPulse {

    0%,
    100% {
      transform:
        scale(1);
    }

    50% {
      transform:
        scale(1.025);
    }

  }


  /* Subtitle */

  @keyframes subtitleFloat {

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

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

  }


  /* Main cards */

  @keyframes cardLevitate {

    0%,
    100% {
      transform:
        translateY(0) rotateX(0deg) rotateY(0deg);
    }

    25% {
      transform:
        translateY(-3px) rotateX(0.6deg) rotateY(-0.4deg);
    }

    50% {
      transform:
        translateY(-6px) rotateX(-0.5deg) rotateY(0.5deg);
    }

    75% {
      transform:
        translateY(-3px) rotateX(0.5deg) rotateY(-0.3deg);
    }

  }


  /* Light moves inside cards */

  @keyframes cardLight {

    0% {
      opacity: 0;

      transform:
        translate3d(30px, -20px, 0) scale(0.8);
    }

    35% {
      opacity: 0.35;
    }

    65% {
      opacity: 0.12;

      transform:
        translate3d(-130px, 80px, 0) scale(1.15);
    }

    100% {
      opacity: 0;

      transform:
        translate3d(-170px, 110px, 0) scale(1.2);
    }

  }


  /* Number */

  @keyframes numberFloat {

    0%,
    100% {
      transform:
        translateZ(8px) translateY(0);
    }

    50% {
      transform:
        translateZ(18px) translateY(-4px);
    }

  }


  /* Comparison */

  @keyframes comparisonFloat {

    0%,
    100% {
      transform:
        translateY(0) rotateX(0deg);
    }

    50% {
      transform:
        translateY(-5px) rotateX(0.7deg);
    }

  }


  /* VS */

  @keyframes vsMagnetic {

    0%,
    100% {
      transform:
        translateY(0) rotateZ(0deg) scale(1);
    }

    25% {
      transform:
        translateY(-5px) rotateZ(-3deg) scale(1.04);
    }

    50% {
      transform:
        translateY(0) rotateZ(0deg) scale(1.08);
    }

    75% {
      transform:
        translateY(5px) rotateZ(3deg) scale(1.04);
    }

  }


  /* =====================================================
     REDUCED MOTION
  ===================================================== */

  @media (prefers-reduced-motion: reduce) {

    .why-choose .header,
    .why-choose .eyebrow,
    .why-choose .subtitle,
    .why-choose .card,
    .why-choose .card::after,
    .why-choose .card-number,
    .why-choose .compare-col,
    .why-choose .vs-badge {
      animation: none !important;
    }

    .why-choose .card,
    .why-choose .compare-col,
    .why-choose .vs-badge {
      transform: none !important;
    }
  }

}

/*=========================================
Technologies Section
=========================================*/

.technologies {
  position: relative;
  padding: 100px 0;
  background: var(--color-band-about);
  overflow: hidden;
}

.technologies .container {
  width: 100%;
  max-width: var(--site-container-max-width);
  padding: 0 var(--site-container-inline-padding);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/*==========================
Section Header
==========================*/

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

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: var(--color-text-eyebrow-alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  opacity: 1;
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-header h2 {
  font-size: 48px;

  font-weight: 600;

  color: var(--color-dark);

  margin-bottom: 20px;

  line-height: 1.2;
}

.section-header h2 span {
  color: var(--color-primary-alt);
}

.page-about .cta1 {
  /* inherits .cta overlap styles from home */
  padding: 0;
}

@media (max-width: 768px) {
  .page-about:not(.page-terms):not(.page-privacy) .footer-cta-zone {
    background: var(--color-band-about) !important;
  }
}

.section-header p {
  max-width: 520px;

  margin: auto;

  color: var(--color-text-subtle);

  font-size: 20px;

  line-height: 1.8;
}

/*==========================
Grid
==========================*/

.tech-grid {
  display: grid;

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

  gap: 28px;
}

/*==========================
Card
==========================*/

.tech-card {
  background: var(--color-white);

  border-radius: 22px;

  padding: 24px;

  display: flex;

  align-items: center;

  gap: 18px;

  border: 1px solid rgba(108, 77, 255, 0.08);

  transition: 0.45s;

  position: relative;

  overflow: hidden;

  box-shadow: 0 8px 30px rgba(108, 77, 255, 0.08);
}

.tech-card .icon-box {
  width: 72px;
  height: 72px;

  border-radius: 18px;

  background: var(--color-bg-icon-tech);

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;
}

.tech-card .icon-box img {
  width: 44px;
}

.tech-info h3 {
  font-size: 24px;

  color: var(--color-text-tech-title);

  margin-bottom: 10px;
}

.tech-info p {
  color: var(--color-text-tech-body);

  font-size: 15px;
}

.tech-info span {
  display: block;

  width: 40px;

  height: 3px;

  border-radius: 20px;

  margin-top: 14px;

  background: var(--color-accent-light);
}

/*==================================
Background Glow
==================================*/

.left-circle {
  position: absolute;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: #b98cff;

  opacity: 0.18;

  filter: blur(90px);

  left: -120px;
  top: 80px;

  z-index: 0;
}

.right-circle {
  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: #8b5cf6;

  opacity: 0.18;

  filter: blur(90px);

  right: -80px;
  bottom: 60px;

  z-index: 0;
}

/*==================================
Dots
==================================*/

.dots {
  position: absolute;

  width: 110px;
  height: 110px;

  background-image: radial-gradient(#a97dff 2px, transparent 2px);

  background-size: 16px 16px;

  opacity: 0.45;
}

.dots-left {
  top: 40px;
  left: 20px;
}

.dots-right {
  top: 30px;
  right: 20px;
}

/*==================================
Hover Effect
==================================*/

.tech-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg,
      rgba(124, 84, 255, 0.08),
      transparent 70%);

  opacity: 0;

  transition: 0.4s;
}

.tech-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 45px rgba(124, 84, 255, 0.2);

  border-color: #a67dff;
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-card:hover .icon-box {
  background: var(--color-primary-alt);
}

.tech-card:hover .icon-box img {
  transform: scale(1.12);

  transition: 0.4s;
}

.tech-card:hover .tech-info h3 {
  color: var(--color-primary-alt);
}

.tech-card:hover span {
  width: 65px;
}

/*==================================
Floating Animation
==================================*/

.tech-card {
  animation: floatCard 5s ease-in-out infinite;
}

.tech-card:nth-child(2) {
  animation-delay: 0.3s;
}

.tech-card:nth-child(3) {
  animation-delay: 0.6s;
}

.tech-card:nth-child(4) {
  animation-delay: 0.9s;
}

.tech-card:nth-child(5) {
  animation-delay: 1.2s;
}

.tech-card:nth-child(6) {
  animation-delay: 1.5s;
}

.tech-card:nth-child(7) {
  animation-delay: 1.8s;
}

.tech-card:nth-child(8) {
  animation-delay: 2.1s;
}

.tech-card:nth-child(9) {
  animation-delay: 2.4s;
}

.tech-card:nth-child(10) {
  animation-delay: 2.7s;
}

.tech-card:nth-child(11) {
  animation-delay: 3s;
}

.tech-card:nth-child(12) {
  animation-delay: 3.3s;
}

/*==================================
Keyframes
==================================*/

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

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

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

/*==============================
Responsive
==============================*/

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .technologies {
    padding: 55px 0;
  }

  .section-header h2 {
    font-size: 44px;
  }

  .section-header p {
    font-size: 18px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .section-header p {
    font-size: 16px;
    max-width: 95%;
  }

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

  .tech-card {
    padding: 20px;
  }

  .tech-card .icon-box {
    width: 60px;
    height: 60px;
  }

  .tech-card .icon-box img {
    width: 36px;
  }

  .tech-info h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .technologies .container {
    width: 100%;
    padding: 0 var(--site-container-inline-padding);
  }

  .section-tag {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* Final home-mobile reinforces (win over later section rules) */
@media (max-width: 768px) {
  .loader {
    overflow-x: clip;
  }

  .projects {
    overflow: visible !important;
  }

  .projects .container {
    overflow: visible !important;
    width: 100%;
    padding: 0 var(--site-container-inline-padding);
  }

  .projects-grid {
    --projects-gutter: calc(50vw - 50%);
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    /* Full-bleed while the projects slider is scrolled */
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    scroll-padding-left: var(--projects-gutter) !important;
    scroll-snap-type: x mandatory !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y pinch-zoom;
  }

  /* Inset only at the first slide of THIS slider (not page scroll) */
  .projects-grid.is-at-start {
    margin-left: calc(50% - 45vw) !important;
    margin-right: calc(50% - 45vw) !important;
  }

  .testimonial-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .project-card {
    flex: 0 0 min(300px, calc(100vw - var(--projects-gutter) - 36px)) !important;
    width: min(300px, calc(100vw - var(--projects-gutter) - 36px)) !important;
    max-width: none !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }

  .projects-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    position: relative;
    z-index: 2;
  }

  .projects-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: var(--color-celestial-tint-60);
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
  }

  .projects-dots button.is-active {
    background: var(--color-primary);
  }

  .project-image {
    height: 190px;
  }

  .testimonial-card {
    flex: 0 0 78% !important;
    width: 78% !important;
    max-width: 320px;
    scroll-snap-align: center;
    flex-shrink: 0 !important;
    animation: none !important;
  }

  .about-image {
    display: none !important;
  }

  .cta-btn {
    display: none !important;
  }

  .page-home .footer-cta-zone {
    overflow: visible !important;
    margin-top: 0 !important;

  }

  .cta {
    margin: 0 0 -40px !important;
    padding: 0 !important;
    background: transparent !important;
    z-index: 2 !important;
  }

  .footer-cta-zone footer,
  footer {
    padding: 72px 0 calc(96px + env(safe-area-inset-bottom, 0px)) !important;
    background: var(--color-footer-bg) !important;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .social-links {
    justify-content: flex-start !important;
  }

  .about {
    background: var(--color-bg-soft) !important;
    padding: 22vh 0 !important;
  }

  .about-image {
    display: none !important;
  }

  .about-content {
    align-items: center !important;
    text-align: center !important;
  }

  .about-btn {
    align-items: center !important;
  }

  .about-btn a {
    border-radius: 999px !important;
    width: auto !important;
    max-width: none !important;
  }

  .grow {
    position: absolute !important;
    top: -46px !important;
    transform: rotate(-14deg) !important;
    margin: 0 !important;
  }

  .grow span {
    font-family: "Caveat", cursive !important;
    font-size: 24px !important;
    color: var(--color-text-headline-accent) !important;
  }

  .stats {
    background: var(--color-bg-soft) !important;
  }

  .stats-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    background: linear-gradient(165deg,
        #ede6ff 0%,
        var(--color-bg-lavender) 48%,
        #d9cef5 100%) !important;
    border: 0 !important;
    border-radius: 28px !important;
  }

  .stats,
  .stats-container {
    overflow: visible !important;
  }

  .stat-box {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    background: var(--color-white) !important;
    border-radius: 20px !important;
    animation: none !important;
    overflow: visible !important;
  }

  .stat-box .text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .stats .icon {
    animation: none !important;
    box-shadow: none !important;
  }

  /*
      Home mobile eyebrow/label scale only.
      Do NOT target bare `.section-title` — on services that class is an h2 (~28px).
    */
  .page-home .tag,
  .page-home .about-tag,
  .page-home .section-tag,
  .page-home .services .section-tag,
  .page-home .projects .section-title,
  .page-home .testimonials .section-title,
  .page-home .projects-header .section-title,
  .page-home .testimonial-header .section-title {
    font-size: var(--eyebrow-font-size-mobile) !important;
    letter-spacing: var(--eyebrow-letter-spacing-mobile) !important;
    font-weight: var(--eyebrow-font-weight) !important;
    color: var(--eyebrow-color) !important;
  }

  .page-home .about-tag::before,
  .page-home .about-tag::after,
  .page-home .tag::before,
  .page-home .tag::after,
  .page-home .section-tag::before,
  .page-home .section-tag::after,
  .page-home .projects-header .section-title::before,
  .page-home .projects-header .section-title::after,
  .page-home .testimonial-header .section-title::before,
  .page-home .testimonial-header .section-title::after {
    width: var(--eyebrow-line-width-mobile) !important;
    background: var(--eyebrow-color) !important;
  }

  .projects-header,
  .testimonial-header {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .projects-header>div,
  .testimonial-header>div {
    text-align: left !important;
    width: 100% !important;
  }

  .projects-header .section-title,
  .projects .section-title,
  .testimonial-header .section-title,
  .testimonials .section-title {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .projects-header h2,
  .testimonial-header h2 {
    text-align: left !important;
  }

  .hero-content {
    text-align: left !important;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content .tag {
    text-align: left !important;
  }

  .hero-content p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-buttons,
  .reviews {
    justify-content: flex-start !important;
    margin-top: 16px;
  }

  .hero-content h1 {
    font-size: 32px !important;
    line-height: 1.25 !important;
  }

  .about-content h2,
  .page-home .services-header h2,
  .page-home .projects-header h2,
  .page-home .testimonial-header h2 {
    font-size: 25px !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
  }

  .hero-content p,
  .about-content p,
  .page-home .services-lede,
  .page-home .services .service-card p,
  .project-content p,
  .testimonial-card p {
    font-size: 18px !important;
    line-height: 1.65 !important;
  }

  .page-home .services .service-card h3,
  .project-content h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .project-content h3 {
    font-size: 20px !important;
  }

  .stats .text h2,
  .stat-box h2 {
    display: block !important;
    font-size: 28px !important;
    color: var(--color-text-heading) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .stats .text p,
  .stat-box p {
    display: block !important;
    font-size: 12px !important;
    color: var(--color-text-client-role) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .project-tag {
    font-size: 11px !important;
  }

  .project-content strong {
    font-size: 15px !important;
  }

  .client-info h4 {
    font-size: 15px !important;
  }

  .client-info span {
    font-size: 12px !important;
  }

  .cta-box {
    text-align: left !important;
    align-items: flex-start !important;
    flex-direction: row !important;
  }

  .cta-left {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 14px !important;
  }

  .cta-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 24px !important;
    display: none;
  }

  .cta-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .cta-box h2,
  .cta-text h2 {
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
    margin: 0 0 8px !important;
    text-align: left !important;
    color: var(--color-white) !important;
  }

  html[dir="rtl"] .cta-box h2,
  html[dir="rtl"] .cta-text h2 {
    text-align: right !important;
  }

  .cta-box p,
  .cta-text p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    text-align: left;
    color: var(--color-white-85) !important;
  }

  /* Home footer CTA only — do not pull service-template grid cells out of named areas */
  .page-home .cta-box p,
  .page-home .cta-text p {
    grid-column: 2 / span 3;
  }

  .btn-primary,
  .btn-secondary,
  .about-btn a,
  .page-home .services .service-card a,
  .services-btn a,
  .site-header .btn-nav {
    font-size: 14px !important;
  }

  .services-btn a {
    font-size: 15px !important;
  }

  .social-links a {
    font-size: 13px !important;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 12px !important;
  }

  .info-card small,
  .info-card span {
    font-size: 10px !important;
  }

  .info-card h3 {
    font-size: 18px !important;
  }

  .reviews small {
    font-size: 13px !important;
  }

  .grow span {
    font-size: 22px !important;
  }

  .custom-cta-button {
    margin-top: 30px !important;
  }
}