/* ==========================================================================
   PWA Dubai Landing Page — section-scoped styles
   Palette (defined as custom properties on the page wrapper, not :root):
     --pwad-ink        #0B1220  near-black
     --pwad-ink-soft   #37415a  muted black-blue for body copy
     --pwad-white      #FFFFFF
     --pwad-off        #F5F7FB  light section background
     --pwad-blue       #1E5FFF  primary blue
     --pwad-blue-deep  #0A1B3D  deep navy for dark sections
     --pwad-blue-sky   #5B8CFF  lighter accent / glow
   ========================================================================== */

.pwad-page {
  --pwad-ink: #123680;
  --pwad-ink-soft: #3E5590;
  --pwad-white: #FFFFFF;
  --pwad-off: #F5F7FB;
  --pwad-blue: #1E5FFF;
  --pwad-blue-deep: #081B44;
  --pwad-blue-sky: #5B8CFF;
  color: var(--pwad-ink);
  overflow-x: hidden;
}

.pwad-page *,
.pwad-page *::before,
.pwad-page *::after {
  box-sizing: border-box;
}

.pwad-page img {
  max-width: 100%;
  height: auto;
}

.pwad-page a {
  text-decoration: none;
}

.pwad-page ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pwad-page * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Buttons ---------------------------------------------------------------- */
.pwad-btn {
  cursor: pointer;
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  margin: 6px 10px 6px 0;
}
.pwad-btn--primary {
  background: linear-gradient(135deg, var(--pwad-blue), var(--pwad-blue-sky));
  color: var(--pwad-white);
  box-shadow: 0 10px 24px rgba(30, 95, 255, 0.35);
}
.pwad-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(30, 95, 255, 0.45);
}
.pwad-btn--ghost {
  background: transparent;
  color: var(--pwad-ink);
  border-color: var(--pwad-ink);
}
.pwad-btn--ghost:hover {
  background: var(--pwad-ink);
  color: var(--pwad-white);
  transform: translateY(-3px);
}
.pwad-btn--outline-light {
  background: transparent;
  color: var(--pwad-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.pwad-btn--outline-light:hover {
  background: var(--pwad-white);
  color: var(--pwad-blue-deep);
  transform: translateY(-3px);
}

/* Gradient title treatment — applied across every section heading -------- */
.pwad-hero__title,
.pwad-why__title,
.pwad-services__title,
.pwad-compare__title,
.pwad-industries__title,
.pwad-features__title,
.pwad-benefits__title,
.pwad-vsnative__title,
.pwad-testimonials__title,
.pwad-calculator__title,
.pwad-faq__title {
  background: linear-gradient(100deg, var(--pwad-ink) 0%, var(--pwad-blue) 55%, var(--pwad-blue-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pwad-process__title,
.pwad-tech__title,
.pwad-cta__title,
.pwad-why__stats-title {
  background: linear-gradient(100deg, #cfe0ff 0%, var(--pwad-blue-sky) 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* =========================================================================
   HERO
   ========================================================================= */
.pwad-hero {
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(30, 95, 255, 0.12), transparent 60%),
    var(--pwad-white);
}
.pwad-hero__title {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 20px 0 18px;
  letter-spacing: -0.5px;
}
.pwad-hero__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--pwad-ink-soft);
  max-width: 560px;
  margin-bottom: 24px;
}
.pwad-hero__cta {
  margin-bottom: 10px;
}

.pwad-hero__visual {
  position: relative;
  min-height: 480px;
  padding: 20px 0;
}
.pwad-hero__phones {
  position: relative;
  width: 400px;
  max-width: 100%;
  height: 460px;
  margin: 0 auto;
  transform-origin: top center;
}

/* Phone bezel base ------------------------------------------------------- */
.pwad-phone {
  position: absolute;
  background: var(--pwad-ink);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 24px 46px rgba(18, 54, 128, 0.3);
}
.pwad-phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 16px;
  background: var(--pwad-ink);
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.pwad-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--pwad-off);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pwad-phone__screen--dark {
  background: var(--pwad-blue-deep);
  color: var(--pwad-white);
}
.pwad-phone__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 2px;
  font-size: 10px;
  font-weight: 700;
  color: var(--pwad-ink);
}
.pwad-phone__statusbar--dark {
  color: var(--pwad-white);
}
.pwad-phone__statusicons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: currentColor;
}
.pwad-phone__appbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--pwad-ink);
}
.pwad-phone__logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pwad-blue);
  flex: 0 0 auto;
}
.pwad-phone__online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ECC71;
  margin-left: auto;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

/* Left phone — services list --------------------------------------------- */
.pwad-phone--left {
  width: 148px;
  height: 320px;
  left: 4px;
  top: 100px;
  transform: rotate(-11deg);
  z-index: 1;
  opacity: 0.96;
  animation: pwad-float-left 6.4s ease-in-out infinite;
}
.pwad-phone__list {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pwad-phone__list-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--pwad-white);
  border: 1px solid rgba(18, 54, 128, 0.08);
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 8.2px;
  font-weight: 700;
  color: var(--pwad-ink);
  line-height: 1.2;
}
.pwad-phone__list-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(30, 95, 255, 0.12);
  color: var(--pwad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pwad-phone__list-icon svg {
  width: 9px;
  height: 9px;
}

/* Right phone — offline mode ---------------------------------------------- */
.pwad-phone--right {
  width: 148px;
  height: 320px;
  right: 4px;
  top: 40px;
  transform: rotate(11deg);
  z-index: 2;
  animation: pwad-float-right 5.8s ease-in-out infinite reverse;
}
.pwad-phone__offline-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 14px;
  gap: 6px;
}
.pwad-phone__offline-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(91, 140, 255, 0.16);
  color: var(--pwad-blue-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.pwad-phone__offline-icon svg {
  width: 16px;
  height: 16px;
}
.pwad-phone__offline-body strong {
  font-size: 11px;
  font-weight: 800;
}
.pwad-phone__offline-body p {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.pwad-phone__sync-pill {
  margin-top: 8px;
  font-size: 7.5px;
  font-weight: 700;
  color: var(--pwad-white);
  background: rgba(91, 140, 255, 0.2);
  border: 1px solid rgba(91, 140, 255, 0.4);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Center phone — home dashboard -------------------------------------------- */
.pwad-phone--center {
  width: 200px;
  height: 410px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 3;
  animation: pwad-float-center 6s ease-in-out infinite;
}
.pwad-phone__hero-copy {
  padding: 4px 16px 8px;
}
.pwad-phone__hero-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--pwad-ink);
}
.pwad-phone__hero-copy p {
  font-size: 9.5px;
  color: var(--pwad-ink-soft);
  margin: 2px 0 0;
}
.pwad-phone__stat-row {
  display: flex;
  gap: 8px;
  padding: 0 16px 10px;
}
.pwad-phone__stat-card {
  flex: 1;
  background: var(--pwad-white);
  border: 1px solid rgba(18, 54, 128, 0.08);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 14px rgba(18, 54, 128, 0.06);
}
.pwad-phone__stat-card svg {
  width: 14px;
  height: 14px;
  color: var(--pwad-blue);
  flex: 0 0 auto;
}
.pwad-phone__stat-card span {
  font-size: 8px;
  font-weight: 800;
  color: var(--pwad-ink);
  line-height: 1.2;
}
.pwad-phone__install-banner {
  margin: 0 16px 10px;
  background: linear-gradient(120deg, var(--pwad-blue), var(--pwad-blue-sky));
  color: var(--pwad-white);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 800;
}
.pwad-phone__install-icon svg {
  width: 14px;
  height: 14px;
}
.pwad-phone__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 16px;
  margin-top: auto;
  margin-bottom: 16px;
}
.pwad-phone__grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 6.8px;
  font-weight: 700;
  color: var(--pwad-ink-soft);
}
.pwad-phone__grid-item svg {
  width: 16px;
  height: 16px;
  color: var(--pwad-blue);
}
.pwad-phone__home-indicator {
  width: 34%;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 54, 128, 0.25);
  margin: 0 auto 8px;
}

/* Location badge ----------------------------------------------------------- */
.pwad-hero__location-badge {
  position: absolute;
  left: 2%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 54, 128, 0.08);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  box-shadow: 0 14px 28px rgba(18, 54, 128, 0.16);
  z-index: 4;
  animation: pwad-float 5.2s ease-in-out infinite reverse;
}
.pwad-hero__location-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(18, 54, 128, 0.1);
}
.pwad-hero__location-badge span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--pwad-ink);
  white-space: nowrap;
}

@keyframes pwad-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pwad-float-left {
  0%, 100% { transform: rotate(-11deg) translateY(0); }
  50% { transform: rotate(-11deg) translateY(-12px); }
}
@keyframes pwad-float-right {
  0%, 100% { transform: rotate(11deg) translateY(0); }
  50% { transform: rotate(11deg) translateY(-12px); }
}
@keyframes pwad-float-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.pwad-trust {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-ink);
}
.pwad-trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
}
.pwad-trust__list li {
  color: var(--pwad-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  position: relative;
  padding-left: 16px;
}
.pwad-trust__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pwad-blue-sky);
  box-shadow: 0 0 8px var(--pwad-blue-sky);
}

/* =========================================================================
   WHY CHOOSE PWA
   ========================================================================= */
.pwad-why {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-off);
}
.pwad-why__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  max-width: 900px;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}
.pwad-why__intro {
  color: var(--pwad-ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 880px;
  margin-bottom: 34px;
}
.pwad-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}
.pwad-why__card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(18, 54, 128, 0.06);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pwad-why__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 95, 255, 0.14);
  border-color: rgba(30, 95, 255, 0.3);
}
.pwad-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.12), rgba(91, 140, 255, 0.05));
  color: var(--pwad-blue);
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.pwad-why__card:hover .pwad-why__icon {
  transform: rotate(-8deg) scale(1.08);
}
.pwad-why__icon svg {
  width: 24px;
  height: 24px;
}
.pwad-why__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pwad-why__card p {
  color: var(--pwad-ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.pwad-why__stats {
  background: var(--pwad-blue-deep);
  border-radius: 22px;
  padding: 40px 30px;
}
.pwad-why__stats-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.pwad-why__stat {
  text-align: center;
  margin-bottom: 20px;
}
.pwad-why__stat-num {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: var(--pwad-blue-sky);
  line-height: 1;
  margin-bottom: 10px;
}
.pwad-why__stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.55;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.pwad-services {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-white);
}
.pwad-services__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.pwad-services__intro {
  color: var(--pwad-ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 880px;
  margin-bottom: 36px;
}
.pwad-services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pwad-services__item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(18, 54, 128, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pwad-services__item:nth-child(odd) {
  transform: rotate(-0.3deg);
}
.pwad-services__item:nth-child(even) {
  transform: rotate(0.3deg);
}
.pwad-services__item:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 18px 36px rgba(18, 54, 128, 0.1);
  border-color: rgba(30, 95, 255, 0.35);
}
.pwad-services__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pwad-ink);
  color: var(--pwad-blue-sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pwad-services__icon svg {
  width: 22px;
  height: 22px;
}
.pwad-services__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pwad-services__body p {
  color: var(--pwad-ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */
.pwad-compare {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-off);
}
.pwad-compare__title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}
.pwad-compare__table {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 54, 128, 0.08);
}
.pwad-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pwad-compare__row > div {
  padding: 16px 22px;
  font-size: 14.5px;
  line-height: 1.55;
}
.pwad-compare__row:nth-child(odd):not(.pwad-compare__row--head) {
  background: var(--pwad-white);
}
.pwad-compare__row:nth-child(even):not(.pwad-compare__row--head) {
  background: #FBFCFE;
}
.pwad-compare__row > div:first-child {
  color: var(--pwad-ink-soft);
}
.pwad-compare__row--head {
  background: var(--pwad-ink);
}
.pwad-compare__row--head div {
  color: var(--pwad-white);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pwad-compare__yes {
  font-weight: 700;
  color: var(--pwad-ink);
  position: relative;
  padding-left: 40px !important;
}
.pwad-compare__yes::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pwad-blue);
  box-shadow: 0 0 0 4px rgba(30, 95, 255, 0.14);
}
.pwad-compare__yes::after {
  content: "";
  position: absolute;
  left: 20.5px;
  top: 45%;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* =========================================================================
   INDUSTRIES
   ========================================================================= */
.pwad-industries {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-white);
}
.pwad-industries__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 26px;
}
.pwad-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pwad-industries__card {
  display: block;
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--pwad-off);
  color: var(--pwad-ink);
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.pwad-industries__card:hover {
  background: var(--pwad-blue);
  color: var(--pwad-white);
  transform: translateY(-4px);
  border-color: var(--pwad-blue);
}
.pwad-industries__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--pwad-ink-soft);
  font-style: italic;
}

/* =========================================================================
   PROCESS TIMELINE
   ========================================================================= */
.pwad-process {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-blue-deep);
}
.pwad-process__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 40px;
}
.pwad-process__timeline {
  position: relative;
  padding-left: 60px;
}
.pwad-process__timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--pwad-blue-sky), rgba(91, 140, 255, 0.1));
}
.pwad-process__step {
  position: relative;
  padding-bottom: 34px;
}
.pwad-process__step:last-child {
  padding-bottom: 0;
}
.pwad-process__num {
  position: absolute;
  left: -60px;
  top: -4px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pwad-blue);
  color: var(--pwad-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 0 0 6px rgba(30, 95, 255, 0.18);
}
.pwad-process__content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.pwad-process__content:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.08);
}
.pwad-process__content h3 {
  color: var(--pwad-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pwad-process__content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================================
   FEATURES
   ========================================================================= */
.pwad-features {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-off);
}
.pwad-features__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 26px;
}
.pwad-features__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pwad-features__pills span {
  background: var(--pwad-white);
  border: 1px solid rgba(18, 54, 128, 0.08);
  color: var(--pwad-ink);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.pwad-features__pills span:hover {
  background: var(--pwad-blue);
  color: var(--pwad-white);
  transform: translateY(-3px);
}

/* =========================================================================
   TECHNOLOGIES MARQUEE
   ========================================================================= */
.pwad-tech {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-ink);
  overflow: hidden;
}
.pwad-tech__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 26px;
}
.pwad-tech__marquee-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.pwad-tech__marquee {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: pwad-marquee 28s linear infinite;
}
.pwad-tech__marquee span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pwad-white);
  border: 1px solid rgba(91, 140, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.pwad-tech__marquee span:hover {
  transform: translateY(-3px);
  background: rgba(91, 140, 255, 0.14);
  border-color: var(--pwad-blue-sky);
}
.pwad-tech__marquee img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--pwad-white);
  border-radius: 50%;
  padding: 4px;
}
@keyframes pwad-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================================
   BUSINESS BENEFITS
   ========================================================================= */
.pwad-benefits {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-white);
}
.pwad-benefits__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.pwad-benefits__intro {
  color: var(--pwad-ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 860px;
  margin-bottom: 28px;
}
.pwad-benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 30px;
}
.pwad-benefits__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--pwad-ink);
  line-height: 1.5;
}
.pwad-benefits__list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--pwad-white);
  background: var(--pwad-blue);
  border-radius: 50%;
  padding: 4px;
  margin-top: 1px;
}

/* =========================================================================
   PWA VS NATIVE
   ========================================================================= */
.pwad-vsnative {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-off);
}
.pwad-vsnative__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 24px;
}
.pwad-vsnative__table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(18, 54, 128, 0.08);
}
.pwad-vsnative__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--pwad-white);
}
.pwad-vsnative__table th {
  background: var(--pwad-ink);
  color: var(--pwad-white);
  text-align: left;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 16px 20px;
}
.pwad-vsnative__table td {
  padding: 14px 20px;
  font-size: 14.5px;
  color: var(--pwad-ink-soft);
  border-top: 1px solid rgba(18, 54, 128, 0.06);
}
.pwad-vsnative__table td:first-child {
  font-weight: 700;
  color: var(--pwad-ink);
}
.pwad-vsnative__table th:nth-child(2),
.pwad-vsnative__table td:nth-child(2) {
  color: var(--pwad-blue);
  font-weight: 600;
}
.pwad-vsnative__table tbody tr:hover {
  background: rgba(30, 95, 255, 0.04);
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.pwad-testimonials {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-white);
}
.pwad-testimonials__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 6px;
}
.pwad-testimonials__eyebrow {
  color: var(--pwad-blue);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.pwad-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pwad-testimonials__card {
  background: var(--pwad-off);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pwad-testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(18, 54, 128, 0.1);
}
.pwad-testimonials__stars {
  color: var(--pwad-blue);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.pwad-testimonials__card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pwad-ink-soft);
  flex: 1;
  margin-bottom: 20px;
}
.pwad-testimonials__person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pwad-testimonials__person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pwad-white);
  box-shadow: 0 0 0 2px var(--pwad-blue);
  transition: transform 0.3s ease;
}
.pwad-testimonials__person img:hover {
  transform: scale(1.08) rotate(-3deg);
}
.pwad-testimonials__person strong {
  display: block;
  font-size: 14px;
  color: var(--pwad-ink);
}
.pwad-testimonials__person span {
  font-size: 12.5px;
  color: var(--pwad-ink-soft);
}
.pwad-testimonials__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.pwad-testimonials__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(18, 54, 128, 0.2);
  cursor: pointer;
  padding: 0;
}
.pwad-testimonials__dots button.is-active {
  background: var(--pwad-blue);
}

/* =========================================================================
   ROI CALCULATOR
   ========================================================================= */
.pwad-calculator {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-off);
}
.pwad-calculator__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}
.pwad-calculator__intro {
  color: var(--pwad-ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 30px;
}
.pwad-calculator__group-title {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--pwad-blue);
  margin: 22px 0 14px;
}
.pwad-calculator__group-title:first-child {
  margin-top: 0;
}
.pwad-calculator__group-title span {
  color: var(--pwad-ink-soft);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}
.pwad-calculator__field {
  margin-bottom: 22px;
}
.pwad-calculator__field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pwad-ink);
}
.pwad-calculator__select,
.pwad-calculator__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(18, 54, 128, 0.15);
  background: var(--pwad-white);
  color: var(--pwad-ink);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pwad-calculator__input {
  cursor: text;
}
.pwad-calculator__select:focus,
.pwad-calculator__input:focus {
  outline: none;
  border-color: var(--pwad-blue);
  box-shadow: 0 0 0 3px rgba(30, 95, 255, 0.15);
}
.pwad-calculator__range {
  width: 100%;
  accent-color: var(--pwad-blue);
  cursor: pointer;
}
.pwad-calculator__reset {
  cursor: pointer;
  background: none;
  border: 2px solid var(--pwad-ink);
  color: var(--pwad-ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.pwad-calculator__reset:hover {
  background: var(--pwad-ink);
  color: var(--pwad-white);
  transform: translateY(-2px);
}
.pwad-calculator__result {
  height: 100%;
  background: var(--pwad-blue-deep);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pwad-calculator__result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.pwad-calculator__result-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
}
.pwad-calculator__result-row strong {
  color: var(--pwad-white);
  font-size: 17px;
  font-weight: 800;
  text-align: right;
}
.pwad-calculator__result-row--main strong {
  font-size: 28px;
  background: linear-gradient(100deg, #cfe0ff 0%, var(--pwad-blue-sky) 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.pwad-calculator__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 8px 0 14px;
}
.pwad-calculator__breakdown {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  margin: 14px 0 0;
}
.pwad-calculator__disclaimer {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
  line-height: 1.6;
  margin: 10px 0 0;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.pwad-faq {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--pwad-white);
}
.pwad-faq__title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 26px;
}
.pwad-faq__item {
  border-bottom: 1px solid rgba(18, 54, 128, 0.1);
}
.pwad-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 4px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pwad-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pwad-faq__toggle {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pwad-off);
  color: var(--pwad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.pwad-faq__item.is-open .pwad-faq__toggle {
  transform: rotate(135deg);
  background: var(--pwad-blue);
  color: var(--pwad-white);
}
.pwad-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pwad-faq__answer p {
  color: var(--pwad-ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  padding: 0 4px 18px;
  margin: 0;
}

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.pwad-cta {
  padding-top: 30px;
  padding-bottom: 30px;
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(91, 140, 255, 0.25), transparent 60%),
    var(--pwad-ink);
  text-align: center;
}
.pwad-cta__title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto 16px;
}
.pwad-cta__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 26px;
}

/* =========================================================================
   SCROLL REVEAL (generic, applied via JS)
   ========================================================================= */
.pwad-page .pwad-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pwad-page .pwad-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 991.98px) {
  .pwad-why__grid { grid-template-columns: repeat(2, 1fr); }
  .pwad-services__list { grid-template-columns: 1fr; }
  .pwad-industries__grid { grid-template-columns: repeat(3, 1fr); }
  .pwad-testimonials__track { grid-template-columns: 1fr; }
  .pwad-hero__visual { min-height: 420px; margin-top: 10px; }
  .pwad-hero__phones { transform: scale(0.88); height: 405px; }
}

@media (max-width: 767.98px) {
  .pwad-why__grid { grid-template-columns: 1fr; }
  .pwad-industries__grid { grid-template-columns: repeat(2, 1fr); }
  .pwad-benefits__list { grid-template-columns: 1fr; }
  .pwad-compare__row { grid-template-columns: 1fr; }
  .pwad-compare__row > div:first-child { display: none; }
  .pwad-compare__row--head div:first-child { display: none; }
  .pwad-process__timeline { padding-left: 46px; }
  .pwad-process__num { left: -46px; width: 38px; height: 38px; font-size: 12px; }
  .pwad-process__timeline::before { left: 18px; }
  .pwad-hero__visual { min-height: 360px; }
  .pwad-hero__phones { transform: scale(0.74); height: 340px; }
  .pwad-hero__location-badge { left: 0; bottom: -2%; }
}

@media (max-width: 575.98px) {
  .pwad-hero__visual { min-height: 300px; }
  .pwad-hero__phones { transform: scale(0.6); height: 280px; }
  .pwad-industries__grid { grid-template-columns: 1fr; }
  .pwad-trust__list { gap: 10px 18px; }
  .pwad-btn { width: 100%; text-align: center; margin-right: 0; }
}
/* ===== SCOPED TO #CaseStudies SECTION ONLY ===== */
  #CaseStudies {
    background: #07080B;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    color: #F3F4F6;
  }

  #CaseStudies::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, rgba(139,92,246,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  #CaseStudies::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  #CaseStudies .cs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  #CaseStudies .client-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px 0;
    color: #F3F4F6;
  }



  #CaseStudies .cs-subtext {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: #8A8F9B;
  }

  /* ===== VIEWPORT (shows exactly one card) ===== */
  #CaseStudies .cs-viewport {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
  }

  #CaseStudies .casestudies_slider {
    position: relative;
    overflow: hidden;
  }

  #CaseStudies .slider-casestudies {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  #CaseStudies .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 6px;
  }

  /* ===== CARD ===== */
  #CaseStudies .case_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    background: #0F1219;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
  }

  /* static border */
  #CaseStudies .case_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: rgba(255,255,255,0.07);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  /* animated gradient border on hover */
  #CaseStudies .case_box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #22D3EE, #8B5CF6, #5EE6E0, #22D3EE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: cs-rotate 3s linear infinite;
    z-index: 2;
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes cs-rotate {
    to { --angle: 360deg; }
  }

  #CaseStudies .case_box:hover {
    transform: translateY(-6px);
    background: rgba(15, 18, 25, 0.92);
    box-shadow: 0 24px 60px -20px rgba(56,189,248,0.25), 0 0 40px rgba(56,189,248,0.08);
  }

  #CaseStudies .case_box:hover::before { opacity: 0; }
  #CaseStudies .case_box:hover::after { opacity: 1; }

  #CaseStudies .case_box__image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* background: #0C0E14; */
    /* border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #CaseStudies .case_box__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  #CaseStudies .case_box__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  #CaseStudies .case_box__content h4 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    color: #F3F4F6;
  }

  #CaseStudies .case_box__content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #C7CAD1;
    margin: 0 0 20px 0;
  }

  #CaseStudies .case_box__points {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #CaseStudies .case_box__points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 400;
    color: #8A8F9B;
    line-height: 1.4;
  }

  #CaseStudies .case_box__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
  }

  #CaseStudies .viewCaseStudies {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #07080B;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, gap 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    font-style: normal;
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies::after {
    content: "\2192";
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    display: none; /* font-awesome glyph not loaded, use unicode arrow above */
  }

  #CaseStudies .viewCaseStudies:hover {
    transform: translateY(-3px);
    background: #22D3EE;
  }

  #CaseStudies .viewCaseStudies:hover::after {
    transform: translateX(4px);
  }

  /* ===== DOTS / PROGRESS ===== */
  #CaseStudies .cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #CaseStudies .cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    padding: 0;
  }

  #CaseStudies .cs-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #22D3EE, #8B5CF6);
  }

  /* ===== ARROWS ===== */
  #CaseStudies .caseStudiesBottomArrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }

  #CaseStudies .caseStudiesBottomArrows button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #F3F4F6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  #CaseStudies .caseStudiesBottomArrows button:hover {
    border-color: rgba(56,189,248,0.55);
    background: rgba(56,189,248,0.08);
    transform: translateY(-2px);
  }

  #CaseStudies .caseStudiesBottomArrows i {
    font-style: normal;
  }

  #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    #CaseStudies { padding: 90px 0; }
    #CaseStudies .client-title { font-size: 40px; }
    #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
    #CaseStudies .case_box__content { align-items: center; text-align: center; }
    #CaseStudies .case_box__content h4 { font-size: 24px; }
    #CaseStudies .case_box__points { align-items: flex-start; }
  }

  @media (max-width: 575px) {
    #CaseStudies { padding: 30px 0; }
    #CaseStudies .cs-container { padding: 0 20px; }
    #CaseStudies .client-title { font-size: 30px; }
    #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
    #CaseStudies .case_box { padding: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
    #CaseStudies .case_box__content h4 { font-size: 21px; }
    #CaseStudies .case_box__points li { font-size: 12px; }
    #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }
  }
.tr-gradient-text{
    background: linear-gradient(90deg, #22D3EE, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   display:inline-block;
    padding-bottom:6px;
    line-height:inherit;
}