/* Globals & Fonts */
:root {
  --bg: #000000;
  --panel: #080808;
  --panel-2: #0d0d0d;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.62);
  --muted-2: rgba(255,255,255,0.42);
  --border: rgba(255,255,255,0.34);
  --border-strong: rgba(255,255,255,0.72);
  --pink: #b122bd;
  --pink-2: #d51eb2;
  --purple: #8b22ff;
  --blue: #005bff;
  --cyan: #00c8ff;
  --teal: #00c6a7;
  --green: #2cff7a;
  --yellow: #ffcc3d;
  --radius-frame: 38px;
  --radius-card: 24px;
  --container: 1340px;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-Light.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-Regular.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bastia";
  src: url("./assets/fonts/Bastia-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Montserrat", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display-font, .display-heading {
  font-family: "Bastia", Georgia, serif;
}

.text-bold { font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* Shell Structure */
.site-frame {
  width: min(1540px, calc(100vw - 160px));
  margin: 70px auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-frame);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

@media (max-width: 900px) {
  .site-frame {
    width: calc(100vw - 24px);
    margin: 20px auto;
  }
}

.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

@media (max-width: 900px) {
  .container {
    width: calc(100% - 32px);
  }
}

.section {
  padding: 80px 0;
}

/* Header */
.site-header {
  padding: 40px 0;
  text-align: center;
}
.brand-logo { display: inline-block; }
.brand-logo__img {
  height: 40px;
  width: auto;
  display: block;
}

/* Typography Utils */
.section__title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3rem, 3.8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0.009em;
  font-weight: 200;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.section__title .title-light {
  font-weight: 100;
}

.section__title .title-bold {
  font-weight: 500;
}
.section__eyebrow {
  font-family: "Montserrat", Arial, sans-serif;
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}


.section__subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* UI Components */
.cg-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.cg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 20px 28px;
  border-radius: 999px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1;

  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.cg-arrow { transition: transform 0.3s ease; }
.cg-btn:hover .cg-arrow { transform: translateX(4px); }

.cg-btn--primary {
  background: linear-gradient(135deg, var(--pink-2), var(--pink));
  color: var(--white);

}
.cg-btn--primary:hover {
  transform: translateY(-2px) scale(1.02);

}

.cg-btn--dark,
.cg-btn--outline {
  color: var(--white);

  border: 1px solid transparent;
  border-radius: 999px;

  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(0, 0, 0, 0.9) 55%,
      rgba(255, 255, 255, 0.65) 100%
    ) border-box;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 255, 255, 0.06);
}

.cg-btn--dark,
.cg-btn--outline {
  color: var(--white);
  border: 1px solid transparent;
  border-radius: 999px;

  background:
    linear-gradient(180deg, #090909 0%, #000000 100%) padding-box,
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.16) 35%,
      rgba(0, 0, 0, 1) 58%,
      rgba(255, 255, 255, 0.55) 100%
    ) border-box;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.45);
}

.cg-btn--dark:hover,
.cg-btn--outline:hover {
  background:
    linear-gradient(180deg, #111111 0%, #050505 100%) padding-box,
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.28) 35%,
      rgba(0, 0, 0, 1) 58%,
      rgba(255, 255, 255, 0.8) 100%
    ) border-box;

  transform: translateY(-2px) scale(1.02);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(255, 255, 255, 0.08);
}

.cg-btn--small { padding: 12px 24px; }

.cg-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
.cg-pill--hero { background: var(--panel); color: var(--white); margin-bottom: 30px; font-weight: 500;}

.cg-status-pill {
  font-weight: 300;
  font-family: 'Montserrat';
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 1.5rem;
}
.cg-status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(44, 255, 122, 0.7); }
  70% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(44, 255, 122, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(44, 255, 122, 0); }
}

.cg-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cg-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 1rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}

.cg-checklist { list-style: none; padding: 0; margin-bottom: 30px; }
.cg-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.cg-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: bold;
}
.cg-checklist--pink li::before { color: var(--pink); }

/* Hero */
.hero {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}

.hero .cg-pill {
  position: relative;
  z-index: 10;
  margin-bottom: 18px;
}

/* This wrapper controls the full hero composition */
.hero__visual-wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: clamp(460px, 39vw, 690px);
  margin: 0 auto;
}

/* Big title behind the image */
.hero__title {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;

  width: 112%;
  margin: 0;

  translate: -50% 0;

  font-size: clamp(78px, 12.4vw, 190px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  white-space: nowrap;

  pointer-events: none;
}

/* Image goes above the title */
.hero__visual {
  position: absolute;
  top: clamp(35px, 5.8vw, 82px);
  left: 50%;
  z-index: 2;

  width: clamp(580px, 80vw, 2000px);
  max-width: none;

  translate: -50% 0;


  animation: heroFloat 10.5s ease-in-out infinite alternate;
}

/* Text + buttons over the lower part of the image */
.hero__overlay {
  position: absolute;
  top: clamp(380px, 30vw, 460px);
  left: 50%;
 
  z-index: 5;

  width: min(980px, 100% );
  translate: -50% 0;

  

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__copy {
  max-width: 900px;
  margin: 0 auto 22px;

  color: rgba(255, 255, 255, 0.8);

  font-size: clamp(15px, 1.5vw, 30px);
  line-height: 1.32;
  font-weight: 300;
  letter-spacing: -0.035em;


}

.hero__actions {
  position: relative;
  z-index: 6;
}

/* Better floating animation because image uses translate */
@keyframes heroFloat {
  from {
    translate: -50% 0;
  }

  to {
    translate: -50% -14px;
  }
}

/* Tablet / mobile */
@media (max-width: 900px) {
  .hero {
    padding-top: 5px;
    padding-bottom: 80px;
  }

  .hero__visual-wrap {
    height: 530px;
  }

  .hero__title {
    width: 100%;
    font-size: clamp(58px, 18vw, 112px);
    line-height: 0.88;
    white-space: normal;
  }

  .hero__visual {
    top: 105px;
    width: min(720px, 116vw);
  }

  .hero__overlay {
    top: 335px;
    width: calc(100% - 30px);
  }

  .hero__copy {
    font-size: 14px;
    line-height: 1.35;
    max-width: 520px;
    margin-bottom: 16px;
  }
}

@media (max-width: 520px) {
  .hero__visual-wrap {
    height: 430px;
  }

  .hero__title {
    font-size: clamp(48px, 19vw, 82px);
  }

  .hero__visual {
    top: 88px;
    width: 128vw;
  }

  .hero__overlay {
    top: 260px;
  }

  .hero__copy {
    font-size: 12px;
  }
}

/* Services */
.services {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}

/* هذا هو الإطار اللي يقص الكروت ويدير fade من الجوانب */
.services__viewport {
  position: relative;
  width: calc(100% + 180px);
  margin-left: -90px;
  margin-right: -90px;
  margin-top: 42px;

  overflow: hidden;
}

/* ظل ثابت على اليسار */
.services__viewport::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;

  width: 190px;
  height: 100%;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.96) 22%,
    rgba(0, 0, 0, 0.72) 48%,
    rgba(0, 0, 0, 0.28) 76%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* ظل ثابت على اليمين */
.services__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;

  width: 190px;
  height: 100%;

  pointer-events: none;

  background: linear-gradient(
    270deg,
    #000 0%,
    rgba(0, 0, 0, 0.96) 22%,
    rgba(0, 0, 0, 0.72) 48%,
    rgba(0, 0, 0, 0.28) 76%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* هذا هو اللي يتحرك */
.services__track {
  display: flex;
  gap: 18px;

  width: 100%;
  margin: 0;
  padding: 0 170px 20px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  cursor: grab;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;

  will-change: scroll-position;
}

.services__track::-webkit-scrollbar {
  display: none;
}

.services__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* Service card */
.service-card {
  flex: 0 0 420px;
  width: 420px;
  height: 470px;

  padding: 8px;

  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 43px;

  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 45%),
    linear-gradient(180deg, #090909 0%, #050505 100%);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: left;
  scroll-snap-align: center;
  user-select: none;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.035),
    0 18px 50px rgba(0,0,0,0.55);
}
.service-card img {
  pointer-events: none;
  user-select: none;
}
/* المربع الداخلي الفارغ */
.service-card__preview {
  height: 350px;

  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.38);

  background:
    linear-gradient(180deg, #1f1f1f 0%, #030303 100%);
}

/* Text area */
.service-card__body {
  padding: 12px 20px 10px 20px;
}

.service-card__title {
  margin: 0 0 6px;

  font-family: "Montserrat";
  font-size: 1.85rem;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.01em;

  color: #ffffff;
}

.service-card__meta {
  margin: 0;

  font-family: "Montserrat";
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.01em;

  color: rgba(255, 255, 255, 0.48);
}

/* status pill */
.services__status {
  text-align: center;
  margin-top: 26px;
}

/* Mobile */
@media (max-width: 900px) {
  .services {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .services__viewport {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .services__viewport::-webkit-scrollbar {
    display: none;
  }

  .services__viewport::before,
  .services__viewport::after {
    width: 70px;
  }

  .services__track {
    transform: none;
    padding-inline: 16px;
    gap: 14px;
  }

  .service-card {
    flex: 0 0 300px;
    width: 300px;
    height: 350px;
  }

  .service-card__preview {
    height: 250px;
  }

  .service-card__title {
    font-size: 1.15rem;
  }

  .service-card__meta {
    font-size: 0.85rem;
  }
}
/* =========================
   PROCESS SECTION
========================= */

.process {
  padding-top: 82px;
  padding-bottom: 72px;
}

.process .section__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 12px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

.process .section__title {
  text-align: center;
  margin-bottom: 46px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3.1rem, 4.8vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #fff;
}

.process .section__title .title-light {
  font-weight: 300;
}

.process .section__title .title-bold {
  font-weight: 600;
}

/* Grid نفس تنظيم PDF */
.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "brief execute"
    "brief launch";

  gap: 22px;

  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

/* Card base */
.process-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);

  padding: 30px 32px;

  display: flex;
  flex-direction: column;

  background: #080808;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.48);
}

/* glossy light */
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%);
}

/* dark depth */
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 58%),
    radial-gradient(circle at 100% 100%, transparent 0%, rgba(0, 0, 0, 0.24) 78%);
}

.process-card__content {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Titles داخل الكروت */
.process-card__title {
  margin: 0 0 14px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 2.1vw, 2.75rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0.01em;

  color: #fff;
}

/* Text داخل الكروت */
.process-card__text {
  margin: 0 0 24px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.0vw, 1.18rem);
  line-height: 1.13;
  font-weight: 300;
  letter-spacing: 0.01em;

  color: rgba(255, 255, 255, 0.82);
}

/* Tags */
.process-card .cg-tags {
  margin-top: auto;
  position: relative;
  z-index: 5;
}

.process-card .cg-tag {
  height: 30px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);

  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.9rem;
  
  font-weight: 500;
  letter-spacing: 0.01em;

  
}
/* Tags general inside process cards */
.process-card .cg-tags {
  margin-top: auto;
  position: relative;
  z-index: 5;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;

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

/* شكل tag نفسه */
.process-card .cg-tag {
  height: 28px;
  padding: 0 14px;

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

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);

  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;

  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* =========================
   BRIEF CARD - LEFT BIG
========================= */

.process-card--brief {
  grid-area: brief;
  min-height: 390px;

  background:
    radial-gradient(circle at 92% 82%, rgba(0, 91, 255, 0.96) 0%, rgba(0, 91, 255, 0.62) 27%, transparent 62%),
    linear-gradient(135deg, #06070c 0%, #081130 42%, #123fba 100%);
}

/* نخلي النص ياخذ تقريب نصف الكارد */
.process-card--brief .process-card__content {
  width: 50%;
}

.process-card--brief .process-card__title {
  max-width: 100%;
  white-space: nowrap;
}

.process-card--brief .process-card__text {
  max-width: 100%;
}

/* أيقونة السهم تاخذ النصف الثاني */
.process-card--brief .process-card__visual--cursor {
  position: absolute;
  z-index: 2;

  right: -2%;
  bottom: 4%;

  width: 80%;
  max-width: 380px;

  transform: rotate(5deg);
  transform-origin: center;

  filter:
    drop-shadow(0 20px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 18px rgba(0, 183, 255, 0.2));
}

/* Tags تاع brief: وحدة فوق، زوج تحت */
.process-card--brief .cg-tags {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 8px 8px;
  justify-content: start;
  align-content: end;
  max-width: 310px;
}

.process-card--brief .cg-tag:nth-child(1) {
  grid-column: 1 / span 2;
  justify-self: start;
}

/* =========================
   EXECUTE CARD - RIGHT TOP
========================= */

.process-card--execute {
  grid-area: execute;
  min-height: 184px;

  background:
    radial-gradient(circle at 98% 50%, rgba(213, 30, 178, 0.94) 0%, rgba(177, 34, 189, 0.64) 33%, transparent 74%),
    linear-gradient(135deg, #09090b 0%, #2b0f27 42%, #9f168d 100%);
}

.process-card--execute .process-card__content {
  width: 67%;
}

.process-card--execute .process-card__text {
  max-width: 100%;
  padding-right: 0;
}

.process-card--execute .process-card__visual--hourglass {
  position: absolute;
  z-index: 1;

  right: -5%;
  top: -5px;

  width: 220px;

  transform: rotate(8deg);
  transform-origin: center;

  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 16px rgba(0, 220, 255, 0.16));
}

.process-card--execute .cg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* =========================
   LAUNCH CARD - RIGHT BOTTOM
========================= */

.process-card--launch {
  grid-area: launch;
  min-height: 184px;

  background:
    radial-gradient(circle at 98% 94%, rgba(0, 220, 194, 0.92) 0%, rgba(0, 168, 150, 0.62) 30%, transparent 74%),
    linear-gradient(135deg, #080a09 0%, #082d29 44%, #07aa9c 100%);
}

.process-card--launch .process-card__content {
  width: 62%;
}

.process-card--launch .process-card__text {
  max-width: 100%;
  padding-right: 0;
}

.process-card--launch .process-card__visual--rocket {
  position: absolute;
  z-index: 2;

  right: 8px;
  bottom: -10px;

  width: 198px;

  transform: rotate(1deg);
  transform-origin: center;

  filter:
    drop-shadow(0 20px 26px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 16px rgba(236, 45, 216, 0.18));
}

.process-card--launch .cg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-card__visual {
  pointer-events: none;
  user-select: none;
}

/* =========================
   TOOLS ICONS MARQUEE
========================= */

.tools-strip {
  position: relative;

  max-width: 1120px;
  margin: 42px auto 0;
  padding: 18px 0;

  overflow: hidden;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* fade black left/right مثل PDF */
.tools-strip::before,
.tools-strip::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 5;

  width: 130px;
  height: 100%;

  pointer-events: none;
}

.tools-strip::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.82) 38%,
    rgba(0, 0, 0, 0) 100%
  );
}

.tools-strip::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #000 0%,
    rgba(0, 0, 0, 0.82) 38%,
    rgba(0, 0, 0, 0) 100%
  );
}

.tools-marquee {
  width: 100%;
  overflow: hidden;
}

.tools-track {
  display: flex;
  width: max-content;

  animation: toolsScroll 24s linear infinite;
  will-change: transform;
}

.tools-group {
  display: flex;
  align-items: center;
  gap: 78px;

  padding-right: 78px;
}

.tool-icon {
  width: 54px;
  height: 54px;

  object-fit: contain;
  display: block;

  flex: 0 0 auto;

  filter:
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 10px rgba(0, 200, 255, 0.08));

  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

.tool-icon:hover {
  transform: translateY(-4px) scale(1.08);
  filter:
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(0, 200, 255, 0.18));
}

/* الحركة */
@keyframes toolsScroll {
  from {
    transform: translateX(0);
  }

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

/* لو تحب توقف الحركة عند hover */
.tools-strip:hover .tools-track {
  animation-play-state: paused;
}

/* احترام reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tools-track {
    animation: none;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .tools-strip {
    max-width: calc(100% - 32px);
    margin-top: 30px;
    padding: 15px 0;
  }

  .tools-strip::before,
  .tools-strip::after {
    width: 70px;
  }

  .tools-group {
    gap: 42px;
    padding-right: 42px;
  }

  .tool-icon {
    width: 42px;
    height: 42px;
  }

  .tools-track {
    animation-duration: 18s;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .process__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brief"
      "execute"
      "launch";
  }

  .process-card--brief {
    min-height: 390px;
  }

  .process-card--brief .process-card__content,
  .process-card--execute .process-card__content,
  .process-card--launch .process-card__content {
    width: 58%;
  }
}

@media (max-width: 700px) {
  .process {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .process .section__title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    margin-bottom: 30px;
  }

  .process__grid {
    gap: 16px;
  }

  .process-card {
    border-radius: 28px;
    padding: 24px;
  }

  .process-card--brief,
  .process-card--execute,
  .process-card--launch {
    min-height: 340px;
  }

  .process-card--brief .process-card__content,
  .process-card--execute .process-card__content,
  .process-card--launch .process-card__content {
    width: 100%;
  }

  .process-card--brief .process-card__title {
    white-space: normal;
  }

  .process-card__text {
    max-width: 100%;
  }

  .process-card--brief .process-card__visual--cursor {
    width: 240px;
    right: -20px;
    bottom: 12px;
  }

  .process-card--execute .process-card__visual--hourglass {
    width: 110px;
    right: 18px;
    top: 18px;
  }

  .process-card--launch .process-card__visual--rocket {
    width: 165px;
    right: -16px;
    bottom: -8px;
  }
}
/* =========================
   PROCESS RESPONSIVE MOBILE
========================= */

@media (max-width: 900px) {
  .process {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .process .section__eyebrow {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }

  .process .section__title {
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
    margin-bottom: 34px;
    padding-inline: 14px;
  }

  /* الهاتف: grid عادي، كارت تحت كارت */
  .process__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brief"
      "execute"
      "launch";

    width: 100%;
    max-width: 100%;
    gap: 18px;
    padding-inline: 16px;
    margin: 0 auto;
  }

  .process-card--brief {
    grid-area: brief;
  }

  .process-card--execute {
    grid-area: execute;
  }

  .process-card--launch {
    grid-area: launch;
  }

  /* شكل الكارت في الهاتف */
  .process-card {
    min-height: 360px;
    padding: 26px;
    border-radius: 28px;
  }

  /* في الهاتف النص يأخذ العرض كامل */
  .process-card--brief .process-card__content,
  .process-card--execute .process-card__content,
  .process-card--launch .process-card__content {
    width: 100%;
    max-width: 100%;
  }

  .process-card__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    margin-bottom: 14px;
  }

  .process-card__text {
    max-width: 70%;
    font-size: 1rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    padding-right: 0 !important;
  }

  /* نخلي الأيقونات decor في اليمين/الأسفل، وما تخلطش النص */
  .process-card--brief .process-card__visual--cursor {
    width: 220px;
    max-width: 48%;
    right: 8px;
    bottom: 50px;
    transform: rotate(0deg);
    opacity: 0.95;
  }

  .process-card--execute .process-card__visual--hourglass {
    width: 150px;
    max-width: 50%;
    right: 5px;
    top: 140px;
    transform: rotate(-10deg);
    opacity: 0.95;
  }

  .process-card--launch .process-card__visual--rocket {
    width: 200px;
    max-width: 50%;
    right: 5px;
    bottom: 50px;
    transform: rotate(-8deg);
    opacity: 0.95;
  }

  /* tags */
  .process-card .cg-tags {
    margin-top: auto;
    gap: 8px;
    max-width: 40%;
  }

  .process-card .cg-tag {
    height: 28px;
    padding: 0 12px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  /* Brief tags: وحدة فوق وزوج تحت */
  .process-card--brief .cg-tags {
    display: grid;
    grid-template-columns: max-content max-content;
    max-width: 260px;
  }

  .process-card--brief .cg-tag:nth-child(1) {
    grid-column: 1 / span 2;
  }

  /* Execute / Launch tags: عاديين */
  .process-card--execute .cg-tags,
  .process-card--launch .cg-tags {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
  }

  .tools-strip {
    max-width: calc(100% - 32px);
    margin-top: 30px;
    padding: 16px 0;
  }

  .tools-strip__image {
    width: 100%;
    max-width: 620px;
  }
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding-top: 88px;
  padding-bottom: 92px;
  background: #000;
  overflow: hidden;
}

.testimonials__heading {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials .section__eyebrow {
  display: block;
  margin-bottom: 16px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.testimonials__title {
  margin: 0 auto;
  max-width: 1000px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3.2rem, 3.50vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-align: center;
  color: #fff;
}

.testimonials__title .title-light {
  font-weight: 200;
}

.testimonials__title .title-bold {
  font-weight: 500;
}

/* viewport فيه الظل فقط */
.testimonials__viewport {
  position: relative;
  width: calc(100% + 140px);
  margin-left: -70px;
  margin-right: -70px;
  overflow: hidden;
}

/* fade يمين ويسار */
.testimonials__viewport::before,
.testimonials__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 10;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.testimonials__viewport::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.82) 42%,
    rgba(0, 0, 0, 0) 100%
  );
}

.testimonials__viewport::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #000 0%,
    rgba(0, 0, 0, 0.82) 42%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* horizontal scroll */
.testimonials__grid {
  display: flex;
  gap: 22px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 0 90px 22px;

  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  cursor: grab;
}

.testimonials__grid::-webkit-scrollbar {
  display: none;
}

.testimonials__grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

/* Card */
.testimonial-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  flex: 0 0 580px;
  scroll-snap-align: center;

  min-height: 310px;
  padding: 34px 45px 30px;

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.035),
      transparent 25%,
      transparent 75%,
      rgba(255,255,255,0.025)
    ),
    linear-gradient(180deg, #070707 0%, #020202 100%);

  display: flex;
  flex-direction: column;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 48px rgba(0,0,0,0.48);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 0% 50%, rgba(255,255,255,0.045), transparent 36%),
    radial-gradient(circle at 100% 50%, rgba(255,255,255,0.035), transparent 34%);
}

.testimonial-card > * {
  position: relative;
  z-index: 2;
}

.testimonial-card__stars {
  margin-bottom: 24px;

  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #ffbd35;
}

.testimonial-card__quote {
  margin: 0 0 34px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 1.58vw, 1.82rem);
  line-height: 1.13;
  font-weight: 200;
  letter-spacing: 0.005em;
  color: rgba(198, 198, 198, 0.93);

  max-width: 96%;
}

.testimonial-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;

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

  flex: 0 0 auto;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.testimonial-card__avatar--pink {
  background: linear-gradient(135deg, #4b002f 0%, #a60071 100%);
}

.testimonial-card__avatar--blue {
  background: linear-gradient(135deg, #41f1ff 0%, #1570ff 100%);
}

.testimonial-card__avatar--magenta {
  background: linear-gradient(135deg, #8b00ff 0%, #ff1ca8 100%);
}

.testimonial-card__person {
  min-width: 0;
}

.testimonial-card__name {
  margin: 0 0 4px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #fff;
}

.testimonial-card__role {
  margin: 0;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
}

/* Tablet */
@media (max-width: 1100px) {
  .testimonials__viewport {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .testimonials__grid {
    padding: 0 38px 20px;
  }

  .testimonial-card {
    flex: 0 0 420px;
    min-height: 280px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .testimonials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .testimonials__heading {
    margin-bottom: 30px;
  }

  .testimonials .section__eyebrow {
    font-size: 0.78rem;
    margin-bottom: 12px;
  }

  .testimonials__title {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .testimonials__viewport {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .testimonials__viewport::before,
  .testimonials__viewport::after {
    width: 56px;
  }

  .testimonials__grid {
    gap: 14px;
    padding: 0 20px 18px;
  }

  .testimonial-card {
    flex: 0 0 82vw;
    min-height: 250px;
    padding: 24px 22px 22px;
    border-radius: 24px;
  }

  .testimonial-card__stars {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }

  .testimonial-card__quote {
    font-size: 1.02rem;
    line-height: 1.22;
    margin-bottom: 24px;
  }

  .testimonial-card__avatar {
    width: 56px;
    height: 56px;
    font-size: 1.28rem;
  }

  .testimonial-card__name {
    font-size: 1.05rem;
  }

  .testimonial-card__role {
    font-size: 0.86rem;
  }
}
/* =========================
   WHY CREATIVE GROUP
========================= */

.why-different {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #000;
}

.why-different__heading {
  max-width: 980px;
  margin: 0 auto 64px;
  text-align: center;
}

.why-different .section__eyebrow {
  display: block;
  margin-bottom: 18px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.92);
}

.why-different__title {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3.4rem, 5.2vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: #fff;
}

.why-different__title .title-light {
  font-weight: 300;
}

.why-different__title .title-bold {
  font-weight: 500;
}

.why-different__intro {
  max-width: 760px;
  margin: 24px auto 0;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.35vw, 1.6rem);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}

/* Grid */
.why-different__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

/* الخط العمودي */
.why-different__grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  transform: translateX(-0.5px);
  background: white;
}

/* الخط الأفقي */
.why-different__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  transform: translateY(-0.5px);
  background: white;
}

/* item */
.why-item {
  display: grid;
  grid-template-columns: 200px 4fr;
  align-items: center;
  column-gap: 26px;
  row-gap: 12px;

  min-height: 240px;
  padding: 30px 30px 110px;
}

/* number */
.why-item__number {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(5.2rem, 10vw, 10.4rem);
  line-height: 0.86;
  font-weight: 500;
  letter-spacing: 0.01em;

  background: linear-gradient(
  240deg,
  #13b0ff 0%,
  #0a5cff 25%,
  #021a7a 50%,
  #000000 85%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  align-self: center;
}

/* content */
.why-item__content {
  align-self: center;
  padding-top: 10px;
}

.why-item__title {
  margin: 0 0 10px;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}

.why-item__text {
  max-width: 320px;
  margin: 0;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 0.9vw, 1.28rem);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}

/* desktop balance */
.why-item:nth-child(1),
.why-item:nth-child(2) {
  padding-top: 44px;
  padding-bottom: 42px;
}

.why-item:nth-child(3),
.why-item:nth-child(4) {
  padding-top: 44px;
  padding-bottom: 24px;
}

/* =========================
   Tablet
========================= */
@media (max-width: 1100px) {
  .why-different {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .why-different__heading {
    margin-bottom: 50px;
  }

  .why-different__grid {
    max-width: 100%;
  }

  .why-item {
    grid-template-columns: 110px 1fr;
    min-height: 210px;
    padding: 28px 22px;
    column-gap: 20px;
  }

  .why-item__number {
    font-size: clamp(4.6rem, 8vw, 6.8rem);
  }

  .why-item__title {
    font-size: 1.8rem;
  }

  .why-item__text {
    font-size: 1.08rem;
    max-width: 280px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 760px) {
  .why-different {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .why-different__heading {
    margin-bottom: 34px;
  }

  .why-different .section__eyebrow {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .why-different__title {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 0.98;
  }

  .why-different__intro {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.3;
    max-width: 95%;
  }

  .why-different__grid {
    grid-template-columns: 2fr;
  }

  .why-different__grid::before {
    display: none;
  }

  .why-different__grid::after {
    display: none;
  }

  .why-item {
    grid-template-columns: 88px 1fr;
    min-height: auto;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .why-item:first-child {
    border-top: 0;
  }

  .why-item__number {
    font-size: 3.4rem;
    align-self: start;
  }

  .why-item__content {
    padding-top: 6px;
  }

  .why-item__title {
    font-size: 1.38rem;
    margin-bottom: 8px;
  }

  .why-item__text {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.22;
  }
}
/* Portfolio */
.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.portfolio-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.portfolio-card__preview {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  height: 400px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .portfolio-card__preview { height: 250px; }
}
.portfolio-card__footer h3 { font-size: 1.5rem; margin-bottom: 16px; }

/* Pricing */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 60px 0 30px;
}
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
}
.pricing-card {
  padding: 48px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.pricing-card--dark { background: var(--panel); }
.pricing-card--gradient {
  background: radial-gradient(circle at top right, rgba(236, 45, 216, 0.1) 0%, var(--panel) 70%);
  border-color: rgba(236, 45, 216, 0.4);
}
.pricing-card__label { margin-bottom: 24px; align-self: flex-start; }
.pricing-card__title { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-card__text { color: var(--muted); line-height: 1.6; margin-bottom: 30px; min-height: 80px; }
.pricing-card__price { font-size: 3rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card__price-prefix { font-size: 1rem; color: var(--muted); vertical-align: super; }
.pricing-card__note { color: var(--muted-2); font-size: 0.875rem; }
.pricing-card__divider { border: none; border-top: 1px solid var(--border); margin: 30px 0; }
.pricing-card__footer-note { color: var(--muted); }

/* Final CTA */
.final-cta { text-align: center; display: flex; flex-direction: column; align-items: center; padding-top: 40px;}
.final-cta__title {
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.85;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}
.final-cta__visual {
  width: 80%;
  max-width: 700px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 60px;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; padding: 30px; }
}
.contact__title { font-size: 2.5rem; margin-bottom: 20px; }
.contact__text { color: var(--muted); line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field__label { font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.form-field__input, .form-field__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 12px 0;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-field__textarea { resize: vertical; min-height: 80px; }
.form-field__input:focus, .form-field__textarea:focus { border-bottom-color: var(--blue); }

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 0;
  color: var(--muted-2);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

/* Animations & Intersection Observer setup */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[style*="--delay: 1"] { transition-delay: 0.1s; }
.reveal[style*="--delay: 2"] { transition-delay: 0.2s; }
.reveal[style*="--delay: 3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}