/* =============================================================
   INDEX.CSS  —  Animaze Graphic  (Homepage)
   ---------------------------------------------------------------
   index.html loads THREE stylesheets:
     - menu.css    (header/nav, loaded from menu.html)
     - footer.css  (footer + floating WhatsApp button)
     - index.css   (this file — everything else)
   base.css and inner.css are NOT loaded any more — everything
   they contributed here (tokens, reset, buttons, etc.) now lives
   in this file.

   Structure of this file:
     1. TOKENS            – colors, fonts, and the unified type
                             scale (--u-heading / --u-subheading /
                             --u-copy) used by every section below.
     2. RESET              – base html/body/heading/paragraph rules.
     3. SHARED HELPERS      – .wrap, .sect, .lead, .eyebrow,
                              .sect-head, .reveal.
     4. HOMEPAGE SECTIONS   – hero, about, why-sync, services,
                              clients, testimonials, faq (unchanged
                              structure, now using the tokens above
                              for consistent heading / subheading /
                              paragraph sizing and tighter padding).
     5. MOBILE APP POLISH   – tighter phone spacing + native-app
                              feel (safe-area, no bounce, no tap
                              flash, bigger tap targets).
============================================================= */

/* -------------------------------------------------------------
   1. TOKENS
------------------------------------------------------------- */
:root {
  /* Fonts (used across every section below) */
  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --body:    "Inter Tight", Inter, system-ui, -apple-system, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  /* Layout rhythm */
  --gutter: 24px;
  --max: 1280px;

  /* --- Unified type scale — the SAME size is used for every
     section heading, every card/item subheading, and every
     paragraph, no matter which section it's in. Change the
     values here and the whole page updates together. --- */
  --u-heading:    clamp(1.9rem, 1.4rem + 1.9vw, 2.6rem);   /* every section title (h1/h2) */
  --u-subheading: clamp(1.05rem, 1rem + .3vw, 1.15rem);    /* every card / item title (h3/h4) */
  --u-copy:       0.975rem;                                 /* ~15.6px — every paragraph / lead */
  --u-copy-lh:    1.7;

  /* Tighter, consistent section rhythm (used by sections below) */
  --u-sect-y:     clamp(24px, 4vw, 40px);
  --u-gutter:     20px;   /* mobile side gutter */
}

/* -------------------------------------------------------------
   2. RESET
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background: #ffffff;
  color: #4A4A52;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  color: #101012;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: #FF6752; color: #fff; }

:focus-visible {
  outline: 3px solid #FF6752;
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100010;
  padding: 12px 18px;
  background: #101012;
  color: #fff;
}
.skip:focus { left: 12px; top: 12px; }

/* -------------------------------------------------------------
   3. SHARED HELPERS
------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sect { padding: var(--u-sect-y) 0; }

.lead {
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
  color: #4A4A52;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FF6752;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #FF6752;
}

.sect-head { max-width: 780px; margin-bottom: clamp(28px, 4vw, 48px); }
.sect-head--wide { max-width: 940px; }
.sect-head h2 { margin-bottom: .35em; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------
   4. HOMEPAGE SECTIONS
------------------------------------------------------------- */
/* =========================================================
   HOME / INDEX CSS  -  Animaze Graphic
========================================================= */

/* ---------------------------------------------------------
   HERO 
--------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(88px, 9vw, 108px) 0 clamp(40px, 5vw, 56px);
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}

/* Curved Background Shape */
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15%;
  width: 80%;
  height: 100%;
  background: #FFF7F3;
  border-top-right-radius: 100% 70%;
  z-index: -1;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; 
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

/* Heading */
.hero h1 {
  font-family: var(--display);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;
  color: #283044;
  margin-bottom: 24px;
}

/* Typing Effect */
.typed-text {
  color: #FF6752; 
}
.cursor {
  display: inline-block;
  width: 3px;
  background-color: #FF6752;
  margin-left: 4px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Paragraph */
.hero__lead {
  max-width: 54ch;
  margin-bottom: 40px;
  color: #6C758F;
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
}

/* Buttons */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px; /* Sleek, smaller button padding */
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px; /* Rectangular corners */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn-rect--primary {
  background: #FF6752;
  color: #fff;
  border: 2px solid #FF6752;
}
.btn-rect--primary:hover {
  background: #E55A46;
  border-color: #E55A46;
  color: #fff;
  transform: translateY(-3px);
}
.btn-rect--secondary {
  background: transparent;
  color: #283044;
  border: 2px solid #283044;
}
.btn-rect--secondary:hover {
  background: #283044;
  color: #fff;
  transform: translateY(-3px);
}

/* Right Side Image */
.hero__image {
  position: relative;
  width: 100%;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ---------------------------------------------------------
   SOCIAL MEDIA ICONS (With Hover Movement)
--------------------------------------------------------- */
.hero__social {
  position: absolute;
  right: 0; /* Perfectly aligned to the right edge */
  top: 10%; 
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10; 
}

ul.banner_media {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner_media li.media_banner {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50px;
  margin-bottom: 20px;
  color: #343E61;
  cursor: pointer;
  /* Smooth transition for the movement */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Make the link fill the circle and center the icon */
.banner_media li.media_banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.banner_media li.media_banner i {
  transition: transform 0.3s ease;
}

/* Hover Effect: Moves up, changes color, adds shadow */
.banner_media li.media_banner:hover {
  background: #FF6752;
  border-color: #FF6752;
  color: #fff;
  transform: translateY(-5px); /* Jump effect */
  box-shadow: 0 5px 12px rgba(255, 103, 82, 0.3);
}

/* Icon pop effect on hover */
.banner_media li.media_banner:hover i {
  transform: scale(1.1);
}

/* Vertical Text & Line */
.banner_social_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #7A8494;
  font-size: 12px; 
  font-family: var(--mono);
}
.banner_social_text::before {
  content: "";
  width: 1px;
  height: 30px; 
  background: rgba(0, 0, 0, 0.15); 
}
.banner_social_text span {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* ---------------------------------------------------------
   RESPONSIVE RULES
--------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero { padding: 90px 0 50px; }
  .hero__inner { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  .hero::before {
    width: 150%;
    height: 70%;
    bottom: -20%;
    left: -25%;
    border-top-right-radius: 50% 100%;
    border-top-left-radius: 50% 100%;
  }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__image { max-width: 500px; margin: 0 auto; }
  
  .hero__social { display: none; } 
}

@media (max-width: 560px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-rect {
    width: 100%;
  }
}


/* =========================================================
   DUAL CROSSED MARQUEE
========================================================= */
.marquee-section {
  position: relative;
  width: 100%;
  height: clamp(96px, 8vw, 124px);
  background: #ffffff;
  overflow: hidden;
}

.marquee-wrapper {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  transform: translateY(-50%) translateY(-20px);   /* the -20px lifts it */
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;                     /* slimmer strip */
}

.track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  cursor: default;
  will-change: transform;
}

.track span {
  flex: 0 0 auto;
  margin-right: 45px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.track span.star {
  color: rgba(255, 255, 255, 0.45);
  font-size: 22px;
  font-weight: 400;
  transform: translateY(3px);
}

/* ---------------------------------------------------------
   RIBBONS — gradient, shallower tilt
--------------------------------------------------------- */
.marquee-left {
  background: linear-gradient(90deg, #ff7a00, #ff2d55);
  transform: rotate(-2deg);
  position: relative;
  z-index: 1;
}

.marquee-right {
  background: linear-gradient(90deg, #ff2d55, #ff7a00);
  transform: rotate(2deg);
  margin-top: -48px;                   /* controls how hard they cross */
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   SCROLLING
--------------------------------------------------------- */
.track-left  { animation: scrollLeft  30s linear infinite; }
.track-right { animation: scrollRight 30s linear infinite; }

.marquee:hover .track { animation-play-state: paused; }

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .marquee-section { height: 120px; }
  .marquee { padding: 11px 0; }
  .track span { font-size: 14px; margin-right: 28px; }
  .marquee-right { margin-top: -38px; }
}

@media (prefers-reduced-motion: reduce) {
  .track-left, .track-right { animation: none; }
}








/* =========================================================
   ABOUT US  —  Animaze Graphic
   Light theme. Signature: a contents-page "index" of
   capabilities — name → leader dots → deliverable.
   Section opens with a rail so a new chapter is obvious.
   All classes are `about-` / `about__` scoped.
========================================================= */

/* visually hidden */
.vh {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Section shell ---------- */
.sect.about {
  position: relative;
  padding: clamp(20px, 3vw, 30px) 0; /* Reduced padding */
  background: #ffffff;
  color: #6C758F;
  overflow: hidden;
}

/* tinted ruled panel that sits under the capability index */
.sect.about::before {
  content: "";
  position: absolute;
  top: clamp(96px, 10vw, 132px);
  bottom: clamp(26px, 3vw, 44px);
  right: -4%;
  width: 54%;
  background-color: #FFF7F3;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 103, 82, .085) 0 1px,
    transparent 1px 34px
  );
  border-radius: 240px 0 0 240px;
  z-index: 0;
}

/* dot grid bleeding in from the left margin */
.sect.about::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: clamp(40px, 5vw, 78px);
  width: 186px;
  height: 124px;
  background-image: radial-gradient(circle, rgba(40, 48, 68, .18) 1.4px, transparent 1.5px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(72deg, #000, transparent 76%);
          mask-image: linear-gradient(72deg, #000, transparent 76%);
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(40px, 5vw, 76px);
  row-gap: clamp(26px, 3vw, 42px);
  align-items: start;
}

/* ---------- Section-start rail ---------- */
.about__rail {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 10px 18px;
  background: #FF6752;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 103, 82, .22);
}

.about__tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
}

.about__rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 103, 82, .55), rgba(40, 48, 68, .12));
}

.about__note {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9AA1B4;
}

/* ---------- Left: the statement ---------- */
.about__title {
  font-family: var(--display);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #283044;
  max-width: 23ch;
  margin: 0 0 22px;
}

.about__title em {
  display: inline;
  font-style: normal;
  color: #FF6752;
}

.about__kicker {
  font-family: var(--display);
  font-size: var(--u-copy);
  font-weight: 600;
  line-height: var(--u-copy-lh);
  color: #283044;
  max-width: 42ch;
  padding-left: 18px;
  border-left: 2px solid #FF6752;
  margin-bottom: 22px;
}

.about__body {
  max-width: 54ch;
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
  color: #6C758F;
}

.about__body + .about__body { margin-top: 14px; }

.about__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* Forces buttons onto a single line */
  white-space: nowrap; /* Prevents button text wrapping */
  gap: 16px 26px;
  margin-top: 15px; /* Removed huge gap */
}

.about__link {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #283044;
  text-decoration: none;
  border-bottom: 1px solid rgba(40, 48, 68, .22);
  padding-bottom: 4px;
  transition: color .25s ease, border-color .25s ease;
}

.about__link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform .25s ease;
}

.about__link:hover,
.about__link:focus-visible {
  color: #FF6752;
  border-color: #FF6752;
}
.about__link:hover span,
.about__link:focus-visible span { transform: translateX(4px); }

/* ---------- Stats row (fills the space below the CTA buttons
   so the left column doesn't run out of content before the
   right-hand capability index does) ---------- */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid rgba(40, 48, 68, .10);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__stat-num {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FF6752;
  line-height: 1;
}

.about__stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: #8A93A8;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
    margin-top: 28px;
    padding-top: 22px;
  }
  .about__stat-num { font-size: 1.35rem; }
}

/* ---------- Right: the capability index ---------- */
.about-index__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 4px;
}

.about-index__head b {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9AA1B4;
}

.about-index__head i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #FF6752, rgba(255, 103, 82, 0));
}

.about-index {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-cap {
  padding: 14px 16px 13px;
  margin-inline: -16px;
  border-bottom: 1px solid rgba(40, 48, 68, .10);
  border-radius: 6px;
  transition: background .3s ease, box-shadow .3s ease;
}

.about-cap:last-child { border-bottom: 0; }

/* the contents-page line: name … dots … deliverable */
.about-cap__line {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.about-cap__name {
  font-family: var(--display);
  font-size: var(--u-subheading);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #283044;
  margin: 0;
  transition: color .3s ease;
}

.about-cap__dots {
  flex: 1 1 auto;
  min-width: 24px;
  align-self: end;
  height: 3px;
  margin-bottom: .4em;
  color: rgba(40, 48, 68, .26);
  background-image: radial-gradient(circle, currentColor 1.2px, transparent 1.4px);
  background-size: 7px 3px;
  background-repeat: repeat-x;
  transition: color .3s ease;
}

.about-cap__out {
  flex: 0 1 auto;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-align: right;
  color: #8A93A8;
  transition: color .3s ease;
}

.about-cap__desc {
  max-width: 52ch;
  margin: 7px 0 0;
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
  color: #6C758F;
}

/* hover / keyboard — the row lifts off the tint */
.about-cap:hover,
.about-cap:focus-within {
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(40, 48, 68, .08);
}

.about-cap:hover .about-cap__name,
.about-cap:focus-within .about-cap__name { color: #FF6752; }

.about-cap:hover .about-cap__dots,
.about-cap:focus-within .about-cap__dots { color: rgba(255, 103, 82, .7); }

.about-cap:hover .about-cap__out,
.about-cap:focus-within .about-cap__out { color: #283044; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .about__inner { grid-template-columns: 1fr; row-gap: 34px; }
  .about__title { max-width: 20ch; }
  .about__body  { max-width: 62ch; }

  .sect.about::before {
    top: auto;
    bottom: 0;
    right: -20%;
    width: 140%;
    height: 58%;
    border-radius: 50% 50% 0 0 / 90px 90px 0 0;
  }
  .sect.about::after { display: none; }
}

@media (max-width: 640px) {
  .about__note { display: none; }
  .about__title em { display: inline; }
  .about__kicker { max-width: none; }

  .about-cap { padding: 16px 12px 15px; margin-inline: -12px; }
  .about-cap__line { display: block; }
  .about-cap__dots { display: none; }
  .about-cap__out {
    display: block;
    text-align: left;
    margin-top: 5px;
    font-size: 11.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #FF6752;
  }
  .about-cap__desc { font-size: 14px; }
  
  .about__actions { flex-wrap: wrap; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .about-cap, .about-cap__name, .about-cap__dots, .about-cap__out,
  .about__link, .about__link span { transition: none; }
}






/* =========================================================
   WHY ANIMAZE — Dynamic Auto-Scroll Showcase
   Replaces the existing "WHY ANIMAZE" block in css/index.css
   (from `.sect.why-sync {` down to the old
   `@media (max-width: 860px)` that closed it).
========================================================= */
.sect.why-sync {
  --bg-color: #FFF7F3;
  --card-bg: #FFFFFF;
  --text-dark: #283044;
  --text-muted: #6C758F;
  --accent: #FF6752;
  --border-light: rgba(40, 48, 68, 0.1);

  position: relative;
  padding: clamp(30px, 4vw, 45px) 0; /* Reduced padding */
  background-color: var(--bg-color);
}

.why-sync > .wrap {
  position: relative;
  z-index: 1;
}

/* ---------- Rail Header ---------- */
.why-sync__rail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.why-sync__tag {
  padding: 8px 16px;
  background: var(--accent);
  border-radius: 4px;
  font-family: var(--display, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
}
.why-sync__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 103, 82, 0.4), rgba(40, 48, 68, 0.1));
}
.why-sync__note {
  font-family: var(--mono, monospace);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9AA1B4;
}

/* ---------- Side-by-Side Layout ---------- */
.why-sync__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

/* ---------- Left Sticky Section ---------- */
.why-sync__left {
  position: sticky;
  top: 40px;
}

.why-sync__title {
  font-family: var(--display, sans-serif);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 0 24px;
}
.why-sync__title em {
  font-style: normal;
  color: var(--accent);
}

/* ---------- Active Display Box ---------- */
.why-sync__display {
  background: var(--card-bg);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(40, 48, 68, 0.08);
  border: 1px solid rgba(255, 103, 82, 0.15);
  margin-bottom: 30px;
}

.why-sync__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.why-sync__meta-lead {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-sync__active-no {
  font-family: var(--display, sans-serif);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.why-sync__active-code {
  font-family: var(--mono, monospace);
  font-size: 11px;
  color: #9AA1B4;
  letter-spacing: 0.14em;
}

/* Play/Pause Control Button */
.why-sync__toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(40, 48, 68, 0.15);
  background: transparent;
  border-radius: 50%;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.why-sync__toggle-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.why-sync__toggle-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.why-sync__active-title {
  font-family: var(--display, sans-serif);
  font-size: var(--u-subheading);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  transition: opacity 0.25s ease;
}

.why-sync__active-desc {
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
  color: var(--text-muted);
  margin: 0 0 24px;
  transition: opacity 0.25s ease;
}

.why-sync__progress {
  width: 100%;
  height: 4px;
  background: rgba(40, 48, 68, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.why-sync__progress-bar {
  width: 0%;
  height: 100%;
  background: var(--accent);
  transition: width 0.1s linear;
}

.why-sync__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.why-sync__link {
  font-family: var(--display, sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
}

/* ---------------------------------------------------------
   Right Scrollable Track
   overscroll-behavior: contain stops the scroll chaining into
   the page when the list hits its top or bottom edge.
--------------------------------------------------------- */
.why-sync__right {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 103, 82, 0.3) transparent;
}

.why-sync__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Right Side Small Cards ---------- */
.sync-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 15px 18px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sync-card:hover {
  transform: translateX(4px);
  border-color: rgba(255, 103, 82, 0.4);
}

.sync-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sync-card.active {
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 103, 82, 0.12);
}

.sync-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.sync-card__badge {
  font-family: var(--mono, monospace);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}
.sync-card__brand {
  font-family: var(--mono, monospace);
  font-size: 10px;
  color: #9AA1B4;
  text-transform: uppercase;
}

.sync-card__name {
  font-family: var(--display, sans-serif);
  font-size: var(--u-subheading);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.sync-card__status {
  font-size: 12px;
  color: var(--text-muted);
}
.sync-card.active .sync-card__status {
  color: var(--accent);
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE — matches the breakpoints already used
   elsewhere in this stylesheet (1100 / 860 / 640 / 560 / 420)
========================================================= */

/* --- Small laptops / large tablets --- */
@media (max-width: 1100px) {
  .sect.why-sync { padding: clamp(25px, 4vw, 40px) 0; }
  .why-sync__layout { gap: 28px; }
  .why-sync__display { padding: 26px; margin-bottom: 24px; }
  .why-sync__right { height: 420px; }
}

/* --- Tablets and below: single column, cards go horizontal ---
   A 480px inner vertical scroller inside a vertically scrolling
   page is a scroll trap on touch. Turning the track sideways
   removes the axis conflict entirely. --- */
@media (max-width: 860px) {
  .why-sync__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-sync__left {
    position: static;
    top: auto;
  }

  .why-sync__right {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 14px;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
  }

  .why-sync__track {
    flex-direction: row;
    gap: 12px;
  }

  .sync-card {
    flex: 0 0 74%;
    max-width: 320px;
  }

  /* the sideways nudge reads as a glitch on touch */
  .sync-card:hover { transform: none; }
}

/* --- Phones (large) --- */
@media (max-width: 640px) {
  .sect.why-sync { padding: 30px 0; }

  .why-sync__rail { gap: 12px; margin-bottom: 20px; }
  .why-sync__note { display: none; }

  .why-sync__title { font-size: clamp(1.8rem, 1.3rem + 2.4vw, 2.2rem); margin-bottom: 18px; }

  .why-sync__display {
    padding: 22px 20px;
    border-radius: 12px;
    margin-bottom: 22px;
  }
  .why-sync__active-title { font-size: 1.28rem; }
  .why-sync__active-desc  { font-size: 14.5px; margin-bottom: 18px; }

  .why-sync__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .why-sync__actions .btn-rect { width: 100%; }
  .why-sync__link { text-align: center; }

  .sync-card { flex: 0 0 80%; padding: 17px 19px; }
}

/* --- Phones (standard) --- */
@media (max-width: 560px) {
  .why-sync__rule { flex: 0 1 48px; }
  .why-sync__tag  { padding: 7px 13px; font-size: 10.5px; letter-spacing: .13em; }

  .why-sync__display { padding: 20px 18px; }
  .why-sync__active-desc { font-size: 14px; line-height: 1.65; }

  .sync-card { flex: 0 0 84%; }
  .sync-card__name { font-size: 1.02rem; }
}

/* --- Phones (small / 360-390px class) --- */
@media (max-width: 420px) {
  .sect.why-sync { padding: 25px 0; }

  .why-sync__title { font-size: 1.7rem; line-height: 1.2; }

  .why-sync__display { padding: 18px 16px; }
  .why-sync__meta { flex-wrap: wrap; gap: 8px 10px; }
  .why-sync__active-title { font-size: 1.18rem; }

  .sync-card { flex: 0 0 88%; padding: 15px 17px; }
  .sync-card__name { font-size: 0.98rem; }
  .sync-card__status { font-size: 11.5px; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .why-sync__right { scroll-behavior: auto; }
  .sync-card,
  .why-sync__toggle-btn,
  .why-sync__progress-bar,
  .why-sync__active-title,
  .why-sync__active-desc { transition: none; }
  .sync-card:hover { transform: none; }
}



/* =========================================================
   OUR SERVICES GRID — Compact Top Spacing & Clean Cards
========================================================= */
.sect.services-grid {
  --bg-color: #FFFFFF;
  --card-bg: #FFFBF9;
  --text-dark: #283044;
  --text-muted: #6C758F;
  --accent: #FF6752;
  --border-color: rgba(40, 48, 68, 0.08);

  position: relative;
  padding: clamp(20px, 3vw, 30px) 0; /* Reduced padding */
  background-color: var(--bg-color);
}

.services-grid > .wrap {
  position: relative;
  z-index: 1;
}

/* Centered Header Tag */
.services-grid__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.services-grid__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent);
  border-radius: 4px;
  font-family: var(--display, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 103, 82, 0.2);
}

.services-grid__tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

/* Centered Section Headings */
.services-grid__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.services-grid__title {
  font-family: var(--display, sans-serif);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  max-width: 24ch;
  margin: 0 auto 12px;
}

.services-grid__title em {
  display: block;
  font-style: normal;
  color: var(--accent);
}

.services-grid__lead {
  max-width: 58ch;
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
  color: var(--text-muted);
  margin: 0 auto;
}

/* Services 4-Column Grid */
.services-grid__wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

/* Clean Card Layout */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: clamp(18px, 2vw, 24px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: rgba(255, 103, 82, 0.4);
  box-shadow: 0 16px 32px rgba(40, 48, 68, 0.06), 0 0 0 1px rgba(255, 103, 82, 0.1);
}

/* Icon Styling */
.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(40, 48, 68, 0.08);
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.service-card__name {
  font-family: var(--display, sans-serif);
  font-size: var(--u-subheading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.service-card__desc {
  margin: 0;
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);
  color: var(--text-muted);
}

/* Centered Call to Action */
.services-grid__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: clamp(40px, 4vw, 60px);
}

.services-grid__link {
  font-family: var(--display, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(40, 48, 68, 0.22);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.services-grid__link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.services-grid__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.services-grid__link:hover span {
  transform: translateX(4px);
}

/* Responsive Rules */
@media (max-width: 1100px) {
  .services-grid__wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .services-grid__wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-grid__wall {
    grid-template-columns: 1fr;
  }
  .services-grid__cta .btn-rect {
    width: 100%;
  }
}



/* =========================================================
   CLIENTS MARQUEE — Interactive Logos / Borderless
========================================================= */

.sect.clients-marquee {
  --bg-color: #FFF7F3;
  --text-dark: #283044;
  --text-muted: #6C758F;
  --accent: #FF6752;

  position: relative;
  padding: clamp(20px, 3vw, 30px) 0; /* Reduced padding */
  background-color: var(--bg-color);
  overflow: hidden;
  border-top: 1px solid rgba(40, 48, 68, 0.08);
}

.clients-marquee > .wrap {
  position: relative;
  z-index: 1;
}

/* =========================
   HEADER
========================= */

.clients-marquee__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.clients-marquee__title {
  font-family: var(--display, sans-serif);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0 auto;
  cursor: default;

  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease;

  will-change: transform;
}

.clients-marquee__title em {
  font-style: normal;
  color: var(--accent);
}

/* =========================
   MARQUEE CONTAINER
========================= */

.client-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 12px 0;
  overflow: hidden;
  position: relative;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

/* =========================
   TRACK
========================= */

.client-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;

  cursor: pointer;
  will-change: transform;
  user-select: none;
}

/* Continuous movement */
.track-left {
  animation: marqueeLeft 42s linear infinite;
}

.track-right {
  animation: marqueeRight 42s linear infinite;
}

/* UPDATE: Pause marquee on Hover AND Click */
.client-marquee-track:hover,
.client-marquee-track.paused-marquee {
  animation-play-state: paused;
}

/* =========================
   LOGO ITEM
========================= */

.at-client3-item {
  flex: 0 0 auto;
  width: 200px;
  height: 110px;

  background: transparent;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
}

.item-logo {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

/* =========================
   INDIVIDUAL LOGO HOVER
========================= */

.item-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;

  /* Smooth transform and filter transition */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  will-change: transform;
}

/* UPDATE: Added drop shadow for realistic 3D lift effect */
.at-client3-item:hover .item-logo img {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0px 10px 15px rgba(40, 48, 68, 0.15)); 
}

/* =========================
   MARQUEE KEYFRAMES
========================= */

@keyframes marqueeLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* =========================
   MEDIA QUERIES
========================= */

@media (max-width: 992px) {
  .sect.clients-marquee {
    padding: clamp(20px, 4vw, 35px) 0;
  }
  .client-marquee-container,
  .client-marquee-track {
    gap: 20px;
  }
  .at-client3-item {
    width: 160px;
    height: 90px;
  }
}

@media (max-width: 640px) {
  .track-left,
  .track-right {
    animation-duration: 30s;
  }
  .at-client3-item {
    width: 140px;
    height: 80px;
  }
  .item-logo {
    padding: 12px;
  }
  .at-client3-item:hover .item-logo img {
    transform: translateY(-7px) scale(1.04);
    filter: drop-shadow(0px 6px 10px rgba(40, 48, 68, 0.1));
  }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  .track-left,
  .track-right {
    animation: none;
  }
  .clients-marquee__title,
  .item-logo img {
    transition: none;
  }
  .clients-marquee__title:hover,
  .at-client3-item:hover .item-logo img {
    transform: none;
    filter: none;
  }
}


/* =========================================================
   TESTIMONIALS SECTION
========================================================= */

.sect.testimonials {
  --bg-color: #ffffff;
  --card-bg: #FFF7F3;
  --text-dark: #283044;
  --text-muted: #6C758F;
  --accent: #FF6752;

  background-color: var(--bg-color);
  padding: clamp(30px, 4vw, 45px) 0; /* Reduced padding */
}

.testimonials .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* =========================================================
   HEADER — MATCH OTHER SECTIONS
========================================================= */

.testimonials .sect-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(28px, 3.5vw, 40px);
}

/* Small section label */
.testimonials .eyebrow {
  display: inline-block;

  font-family: var(--display, sans-serif);
  font-size: 11.5px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .18em;

  color: var(--accent);

  margin-bottom: 14px;
}


/* Main Section Heading */
.testimonials .sect-title {
  font-family: var(--display, sans-serif);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;

  letter-spacing: -0.02em;

  color: var(--text-dark);

  max-width: 24ch;

  margin: 0 auto 12px;
}


/* Description */
.testimonials .lead {
  font-family: var(--body, sans-serif);
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);

  color: var(--text-muted);

  max-width: 65ch;

  margin: 0 auto;
}


/* =========================================================
   GRID LAYOUT
========================================================= */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(320px, 1fr)
  );

  gap: 32px;
}


/* =========================================================
   QUOTE CARDS
========================================================= */

.quote-card {
  background-color: var(--card-bg);

  border-radius: 16px;

  padding: 28px 24px;

  margin: 0;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  border: 1px solid rgba(40, 48, 68, 0.04);
}

.quote-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 12px 24px rgba(40, 48, 68, 0.08);
}


/* Quote Icon */

.quote-card__icon {
  margin-bottom: 24px;
  opacity: 0.8;
}


/* Quote Text */

.quote-card__text {
  margin: 0;
  flex-grow: 1;
}

.quote-card__text p {
  font-family: var(--body, sans-serif);
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);

  color: var(--text-dark);

  font-style: italic;

  margin-bottom: 32px;
}


/* =========================================================
   AUTHOR INFO
========================================================= */

.quote-card__author {
  display: flex;
  align-items: center;

  gap: 16px;

  border-top:
    1px solid rgba(40, 48, 68, 0.1);

  padding-top: 24px;
}

.author-info {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.author-name {
  font-family: var(--display, sans-serif);
  font-weight: 700;
  color: var(--text-dark);
  font-size: var(--u-subheading);
}

.author-role {
  font-family: var(--body, sans-serif);

  font-size: 0.875rem;

  color: var(--text-muted);

  line-height: 1.4;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .testimonials {
    padding: clamp(30px, 8vw, 50px) 0;
  }

  .testimonials .wrap {
    padding: 0 20px;
  }

  .testimonials .sect-head {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .testimonials .eyebrow {
    font-size: 10.5px;
    letter-spacing: .16em;
    margin-bottom: 12px;
  }

  .testimonials .sect-title {
    font-size: clamp(
      1.8rem,
      7vw,
      2.35rem
    );

    line-height: 1.15;

    max-width: 20ch;
  }

  .testimonials .lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .quote-card {
    padding: 32px 24px;
  }

  .quote-card__text p {
    font-size: 1.05rem;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .quote-card {
    transition: none;
  }

  .quote-card:hover {
    transform: none;
  }
}






/* =========================================================
   FAQ SECTION — ANIMAZE GRAPHIC
========================================================= */

.sect.faq-section {
  --faq-bg: #ffffff;
  --faq-dark: #283044;
  --faq-muted: #6C758F;
  --faq-accent: #FF6752;
  --faq-border: rgba(40, 48, 68, 0.10);

  position: relative;
  background: var(--faq-bg);
  padding: clamp(30px, 4vw, 45px) 0; /* Reduced padding */

  overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.faq-section > .wrap {
  position: relative;
  z-index: 1;

  max-width: 1000px;
  margin: 0 auto;

  padding: 0 24px;
}


/* =========================================================
   HEADER
========================================================= */

.faq-section__head {
  margin-bottom: clamp(35px, 5vw, 55px);
}


/* Top rail */

.faq-section__rail {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: clamp(28px, 3vw, 40px);
}


/* Questions label */

.faq-section__tag {
  display: inline-flex;
  align-items: center;

  padding: 10px 18px;

  background: var(--faq-accent);

  border-radius: 4px;

  font-family: var(--display, sans-serif);

  font-size: 11.5px;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;

  color: #ffffff;

  white-space: nowrap;

  box-shadow:
    0 6px 18px rgba(255, 103, 82, .18);
}


/* Small dot */

.faq-section__tag::before {
  content: "";

  width: 6px;
  height: 6px;

  margin-right: 9px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .9);
}


/* Horizontal line */

.faq-section__line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(255, 103, 82, .55),
      rgba(40, 48, 68, .12)
    );
}


/* FAQ number */

.faq-section__note {
  flex: 0 0 auto;

  font-family: var(--mono, monospace);

  font-size: 11.5px;

  letter-spacing: .14em;

  text-transform: uppercase;

  color: #9AA1B4;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.faq-section__title {
  font-family: var(--display, sans-serif);
  font-size: var(--u-heading);
  font-weight: 800;
  line-height: 1.15;

  line-height: 1.15;

  letter-spacing: -0.02em;

  color: var(--faq-dark);

  max-width: 22ch;

  margin: 0 0 16px;
}


/* Orange second line */

.faq-section__title em {
  display: block;

  font-style: normal;

  color: var(--faq-accent);
}


/* Description */

.faq-section__lead {
  max-width: 62ch;
  margin: 0;
  font-family: var(--body, sans-serif);
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);

  color: var(--faq-muted);
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq {
  width: 100%;

  border-top:
    1px solid var(--faq-border);
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq__item {
  border-bottom:
    1px solid var(--faq-border);

  transition:
    background-color .3s ease,
    padding .3s ease;
}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.faq__q {
  position: relative;

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 18px 4px;

  border: 0;

  background: transparent;

  color: var(--faq-dark);

  font-family: var(--display, sans-serif);

  font-size: var(--u-subheading);

  font-weight: 700;

  line-height: 1.3;

  text-align: left;

  cursor: pointer;

  transition:
    color .25s ease,
    padding .25s ease;
}


/* Question hover */

.faq__q:hover {
  color: var(--faq-accent);
}


/* Question icon */

.faq__q i {
  flex: 0 0 auto;

  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid
    rgba(40, 48, 68, .15);

  border-radius: 50%;

  font-size: 12px;

  color: var(--faq-dark);

  transition:
    transform .3s ease,
    background-color .3s ease,
    color .3s ease,
    border-color .3s ease;
}


/* =========================================================
   ANSWER
========================================================= */

.faq__a {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows .35s ease;
}


/* Inner content */

.faq__a p {
  overflow: hidden;
  margin: 0;
  max-width: 72ch;
  padding: 0 45px 0 4px;
  font-family: var(--body, sans-serif);
  font-size: var(--u-copy);
  line-height: var(--u-copy-lh);

  color: var(--faq-muted);

  opacity: 0;

  transform: translateY(-5px);

  transition:
    opacity .25s ease,
    transform .35s ease,
    padding .35s ease;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.faq__item.active {
  background:
    linear-gradient(
      90deg,
      rgba(255, 247, 243, .75),
      transparent
    );
}


.faq__item.active .faq__q {
  color: var(--faq-accent);

  padding-bottom: 14px;
}


.faq__item.active .faq__q i {
  background: var(--faq-accent);

  border-color: var(--faq-accent);

  color: #ffffff;

  transform: rotate(45deg);
}


.faq__item.active .faq__a {
  grid-template-rows: 1fr;
}


.faq__item.active .faq__a p {
  opacity: 1;

  transform: translateY(0);

  padding-top: 0;
  padding-bottom: 25px;
}


/* =========================================================
   FOCUS ACCESSIBILITY
========================================================= */

.faq__q:focus-visible {
  outline: 2px solid var(--faq-accent);

  outline-offset: 4px;

  border-radius: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

  .sect.faq-section {
    padding: 40px 0 50px;
  }

  .faq-section > .wrap {
    padding: 0 20px;
  }

  .faq-section__rail {
    margin-bottom: 28px;
  }

  .faq-section__note {
    display: none;
  }

  .faq-section__title {
    font-size: clamp(
      2rem,
      7vw,
      2.5rem
    );

    max-width: 20ch;
  }

  .faq-section__lead {
    font-size: 14px;
  }

  .faq__q {
    padding: 22px 2px;

    font-size: 15.5px;

    gap: 18px;
  }

  .faq__q i {
    width: 29px;
    height: 29px;

    font-size: 11px;
  }

  .faq__a p {
    padding-left: 2px;
    padding-right: 35px;

    font-size: 14px;

    line-height: 1.7;
  }

  .faq__item.active .faq__a p {
    padding-bottom: 22px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

  .faq-section__rail {
    gap: 10px;
  }

  .faq-section__tag {
    padding: 9px 14px;

    font-size: 10px;
  }

  .faq-section__title {
    font-size: 1.9rem;

    line-height: 1.15;
  }

  .faq__q {
    padding: 20px 0;

    font-size: 15px;
  }

  .faq__q i {
    width: 27px;
    height: 27px;

    font-size: 10px;
  }

  .faq__a p {
    font-size: 13.5px;

    padding-right: 20px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .faq__a,
  .faq__a p,
  .faq__q,
  .faq__q i {
    transition: none;
  }
}
/* =============================================================
   5. MOBILE APP POLISH
   Tighter phone spacing site-wide + a native-app feel: no
   rubber-band bounce, no blue tap flash, safe-area aware, and
   bigger, easier-to-hit tap targets.
============================================================= */
@media (max-width: 640px) {
  :root {
    --u-heading: clamp(1.5rem, 1.25rem + 2.6vw, 1.95rem);
  }

  .wrap { padding: 0 var(--u-gutter); }

  body { font-size: 15.5px; }

  .hero                 { padding: 84px 0 32px; }
  .sect                 { padding: 28px 0; }
  .sect.about           { padding: 18px 0; }
  .sect.why-sync        { padding: 24px 0; }
  .sect.services-grid   { padding: 18px 0; }
  .sect.clients-marquee { padding: 18px 0; }
  .sect.testimonials    { padding: 24px 0; }
  .sect.faq-section     { padding: 24px 0; }

  .sect-head { margin-bottom: 24px; }

  .service-card       { padding: 16px; }
  .quote-card         { padding: 22px 18px; }
  .why-sync__display  { padding: 18px; }
  .sync-card          { padding: 13px 15px; }
  .about-cap          { padding: 13px 0; margin-inline: 0; }
  .faq__q              { padding: 15px 4px; }
}

a, button, .btn-rect {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}