/* Public institute marketing website — Ethraa brand */
:root {
  --pw-teal: #005B6F;
  --pw-teal-dark: #003d4c;
  --pw-teal-mid: #0a7a94;
  --pw-gold: #C5B358;
  --pw-gold-soft: #e8ddb0;
  --pw-ink: #122028;
  --pw-muted: #5a6f7c;
  --pw-bg: #ffffff;
  --pw-card: #ffffff;
  --pw-line: rgba(0, 91, 111, 0.12);
  --pw-radius: 18px;
  --pw-font: "Alexandria", Tahoma, Arial, sans-serif;
  --pw-max: 1480px;
  --pw-gutter: clamp(16px, 2.5vw, 40px);
  --pw-section-y: clamp(48px, 6vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pw-body {
  margin: 0;
  font-family: var(--pw-font);
  color: var(--pw-ink);
  background: var(--pw-bg);
  line-height: 1.65;
  min-height: 100vh;
}
a { color: var(--pw-teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.pw-shell { min-height: 100vh; display: flex; flex-direction: column; }
.pw-wrap {
  width: min(var(--pw-max), calc(100% - (var(--pw-gutter) * 2)));
  margin-inline: auto;
}

/* Inner-page bookmark */
.pw-bookmark {
  padding: 18px 0 0;
  background: #fff;
}
.pw-bookmark__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
}
.pw-bookmark__home {
  color: var(--pw-muted);
  font-weight: 600;
  text-decoration: none !important;
}
.pw-bookmark__home:hover { color: var(--pw-teal); }
.pw-bookmark__sep {
  color: #94a3b8;
  font-weight: 600;
}
.pw-bookmark__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal-dark);
  font-weight: 700;
  line-height: 1.2;
}
.pw-bookmark__chip i {
  font-size: 11px;
  color: var(--pw-gold);
}

body.pw-body--inner {
  background: #fff;
}
body.pw-body--inner .pw-shell {
  background: #fff;
}
.pw-bookmark + .pw-section {
  padding-top: clamp(18px, 2.8vw, 34px);
}

/* Header */
.pw-admin-banner {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #7c2d12;
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.pw-admin-banner a { color: #ffedd5; text-decoration: underline; }

.pw-header {
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.pw-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.pw-body--preview .pw-header--overlay {
  top: 36px;
}
.pw-header--overlay.is-scrolled {
  position: fixed;
  background: rgba(1, 42, 52, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 20, 30, 0.25);
}
.pw-header--solid {
  position: sticky;
  top: 0;
  background: linear-gradient(145deg, #003645 0%, #005B6F 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pw-header__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px 18px;
  padding: 10px 0;
  min-height: 72px;
}
.pw-header--solid .pw-header__row {
  min-height: 84px;
}
.pw-body--preview .pw-header--solid {
  top: 36px;
}
.pw-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  max-width: min(420px, 48vw);
}
.pw-brand:hover { text-decoration: none; }
.pw-brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.22));
}
.pw-header--solid .pw-brand__logo {
  width: 64px;
  height: 64px;
}
.pw-brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--pw-teal-mid), var(--pw-teal-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.pw-header--solid .pw-brand__mark {
  width: 64px;
  height: 64px;
  font-size: 20px;
}
.pw-brand__name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pw-header--solid .pw-brand__name {
  font-size: 15.5px;
}
.pw-header--solid .pw-brand__name { text-shadow: none; }
.pw-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 12px;
  flex: 1 1 auto;
  min-width: 0;
}
.pw-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}
.pw-nav a:hover,
.pw-nav a.is-active { color: #fff; }
.pw-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pw-gold);
}
.pw-nav__soon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 2px 2px 4px;
  color: rgba(255, 255, 255, 0.55);
  cursor: default;
  user-select: none;
  white-space: nowrap;
  line-height: 1.15;
}
.pw-nav__soon-label {
  font-size: 12.5px;
  font-weight: 600;
}
.pw-nav__soon-note {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(197, 179, 88, 0.9);
}
.pw-nav-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.pw-nav-mega__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 6px 2px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.pw-nav-mega__trigger i {
  font-size: 9px;
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.pw-nav-mega.is-open .pw-nav-mega__trigger i {
  transform: rotate(180deg);
}
.pw-nav-mega__trigger:hover,
.pw-nav-mega__trigger.is-active,
.pw-nav-mega.is-open .pw-nav-mega__trigger {
  color: #fff;
}
.pw-nav-mega__trigger.is-active::after,
.pw-nav-mega.is-active .pw-nav-mega__trigger::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pw-gold);
}
.pw-nav-mega__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(720px, calc(100vw - 24px));
  z-index: 80;
  padding-top: 0;
}
.pw-nav-mega__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.15fr);
  gap: 8px 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 30, 40, 0.18);
  color: #0f172a;
}
.pw-nav-mega__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.pw-nav-mega__pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
}
.pw-nav-mega__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: min(360px, 55vh);
  overflow: auto;
  padding-inline-end: 2px;
}
.pw-nav-mega__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none !important;
  color: inherit;
  transition: background 0.15s ease;
}
.pw-nav-mega__item:hover {
  background: #f8fafc;
}
.pw-nav-mega__ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 15px;
}
.pw-nav-mega__ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pw-nav-mega__ico--teal { background: rgba(0, 91, 111, 0.12); color: #005B6F; }
.pw-nav-mega__ico--gold { background: rgba(197, 179, 88, 0.22); color: #8a7420; }
.pw-nav-mega__ico--sky { background: #e0f2fe; color: #0369a1; }
.pw-nav-mega__ico--violet { background: #ede9fe; color: #6d28d9; }
.pw-nav-mega__ico--rose { background: #ffe4e6; color: #be123c; }
.pw-nav-mega__ico--emerald { background: #d1fae5; color: #047857; }
.pw-nav-mega__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding-top: 1px;
}
.pw-nav-mega__copy strong {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}
.pw-nav-mega__copy small {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}
.pw-nav-mega__empty {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}
.pw-nav-mega__feature {
  margin-top: auto;
  padding: 14px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 91, 111, 0.06), rgba(197, 179, 88, 0.12)),
    #f8fafc;
  border: 1px solid #eef2f7;
}
.pw-nav-mega__feature-quote {
  margin: 0 0 12px;
  font-size: 13.5px;
  font-weight: 800;
  color: #0f3d48;
  line-height: 1.45;
}
.pw-nav-mega__feature-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pw-nav-mega__feature-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #003645, #005B6F);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.pw-nav-mega__feature-meta strong {
  display: block;
  font-size: 12.5px;
  color: #0f172a;
}
.pw-nav-mega__feature-meta small {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  color: #64748b;
}
.pw-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pw-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}
.pw-lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.pw-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 12px;
  white-space: nowrap;
  text-decoration: none !important;
}
.pw-nav__cta:hover {
  background: var(--pw-gold);
  color: #2a2410 !important;
  border-color: transparent;
}
.pw-nav__cta.is-active::after { display: none; }

.pw-user-menu {
  position: relative;
}
.pw-user-menu__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pw-user-menu__btn:hover,
.pw-user-menu.is-open .pw-user-menu__btn {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 18px rgba(0, 20, 30, 0.18);
}
.pw-user-menu__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #e8eef1;
  border: 2px solid rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.pw-user-menu__avatar--lg {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(0, 91, 111, 0.14);
}
.pw-user-menu__chev {
  font-size: 10px;
  opacity: 0.9;
  transition: transform 0.2s ease;
  margin-inline-end: 2px;
}
.pw-user-menu.is-open .pw-user-menu__chev {
  transform: rotate(180deg);
}
.pw-user-menu__drop {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: min(280px, calc(100vw - 24px));
  padding: 0;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.1);
  box-shadow:
    0 4px 10px rgba(0, 30, 40, 0.06),
    0 18px 40px rgba(0, 30, 40, 0.14);
  z-index: 80;
  overflow: hidden;
  animation: pwUserMenuIn 0.18s ease;
}
@keyframes pwUserMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.pw-user-menu__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 12px;
  background: linear-gradient(145deg, rgba(0, 91, 111, 0.08) 0%, rgba(197, 179, 88, 0.1) 100%);
  border-bottom: 1px solid rgba(0, 91, 111, 0.08);
}
.pw-user-menu__meta {
  min-width: 0;
  flex: 1;
}
.pw-user-menu__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--pw-teal-dark);
  line-height: 1.35;
  word-break: break-word;
}
.pw-user-menu__email {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--pw-muted);
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pw-user-menu__links {
  padding: 8px;
  display: grid;
  gap: 2px;
}
.pw-user-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--pw-ink) !important;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}
.pw-user-menu__link i {
  width: 1.15em;
  text-align: center;
  color: var(--pw-teal);
  opacity: 0.9;
}
.pw-user-menu__link:hover {
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal-dark) !important;
}
.pw-user-menu__link--danger {
  color: #b91c1c !important;
  margin-top: 2px;
  border-top: 1px solid rgba(0, 91, 111, 0.08);
  border-radius: 0 0 11px 11px;
  padding-top: 12px;
}
.pw-user-menu__link--danger i {
  color: #b91c1c;
}
.pw-user-menu__link--danger:hover {
  background: rgba(185, 28, 28, 0.08);
  color: #991b1b !important;
}
.pw-header--solid .pw-user-menu__btn {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero slider — full-bleed under transparent header */
.pw-hero-slider {
  position: relative;
  min-height: min(92vh, 820px);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, #003645 0%, #005B6F 48%, #0a6d84 100%);
}
.pw-hero-slider__slides {
  position: absolute;
  inset: 0;
}
.pw-hero-slider__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 7s ease;
  will-change: opacity, transform;
}
.pw-hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.pw-hero-slider__slide:not([style*="background-image"]),
.pw-hero-slider__slide--blank {
  background-image: none !important;
  background-color: transparent;
}
.pw-hero-slider--empty {
  background: linear-gradient(145deg, #003645 0%, #005B6F 55%, #0a6d84 100%);
}
.pw-hero-slider__shade--soft {
  background:
    linear-gradient(180deg, rgba(0, 20, 28, 0.4) 0%, rgba(0, 20, 28, 0.2) 45%, rgba(0, 20, 28, 0.5) 100%);
}
.pw-hero-slider__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* طبقة غامقة مثل ethraa.com.sa لوضوح النص فوق الصور */
  background:
    linear-gradient(
      180deg,
      rgba(0, 12, 18, 0.62) 0%,
      rgba(0, 12, 18, 0.48) 35%,
      rgba(0, 12, 18, 0.55) 65%,
      rgba(0, 12, 18, 0.72) 100%
    );
  pointer-events: none;
}
.pw-hero-slider__glow {
  display: none;
}
.pw-hero-slider__content {
  position: relative;
  z-index: 3;
  width: min(var(--pw-max), calc(100% - (var(--pw-gutter) * 2)));
  margin-inline: auto;
  max-width: none;
  padding: clamp(110px, 14vw, 140px) 0;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pw-hero-slider__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pw-gold-soft);
  text-transform: none;
}
.pw-hero-slider__title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  max-width: 18ch;
}
.pw-hero-slider__sub {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}
.pw-hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.pw-hero-slider__controls {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.pw-hero-slider__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.pw-hero-slider__arrow:hover {
  background: rgba(197, 179, 88, 0.85);
  color: #2a2410;
  transform: scale(1.05);
}
.pw-hero-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pw-hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}
.pw-hero-slider__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--pw-gold);
}

.pw-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: pw-rise 0.8s ease forwards;
}
.pw-anim--1 { animation-delay: 0.1s; }
.pw-anim--2 { animation-delay: 0.25s; }
.pw-anim--3 { animation-delay: 0.4s; }
.pw-anim--4 { animation-delay: 0.55s; }

.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pw-btn:hover { transform: translateY(-1px); }
.pw-btn--gold {
  background: linear-gradient(135deg, #d4c46a, var(--pw-gold));
  color: #2a2410 !important;
  box-shadow: 0 10px 28px rgba(197, 179, 88, 0.28);
}
.pw-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.pw-btn--teal {
  background: var(--pw-teal);
  color: #fff !important;
}
.pw-btn--teal:hover { background: var(--pw-teal-dark); }

/* Sections */
.pw-section {
  padding-top: var(--pw-section-y);
  padding-bottom: var(--pw-section-y);
  padding-inline: 0;
}
.pw-section--stats {
  padding-top: 0;
  padding-bottom: var(--pw-section-y);
  margin-top: -44px;
  position: relative;
  z-index: 5;
  background: transparent;
}
.pw-section--alt {
  background: #fff;
  border-block: 1px solid var(--pw-line);
}
.pw-section__head {
  max-width: 640px;
  margin-bottom: 28px;
  animation: pw-rise 0.6s ease both;
}
.pw-section__title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 800;
  color: var(--pw-teal-dark);
  letter-spacing: -0.02em;
}
.pw-section__intro {
  margin: 0;
  color: var(--pw-muted);
  font-size: 14px;
}

.pw-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}
.pw-stat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 132px;
  padding: 22px 14px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.08);
  box-shadow: 0 8px 22px rgba(0, 45, 55, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.pw-stat::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 20%;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--pw-gold), var(--pw-teal));
}
.pw-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 91, 111, 0.18);
  box-shadow: 0 16px 34px rgba(0, 45, 55, 0.1);
}
.pw-stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--pw-teal-mid), var(--pw-teal));
  box-shadow:
    0 10px 20px rgba(0, 91, 111, 0.28),
    0 0 0 4px rgba(0, 91, 111, 0.08);
}
.pw-stat--gold .pw-stat__icon {
  background: linear-gradient(145deg, #d8c56e, var(--pw-gold));
  color: #2a2410;
  box-shadow:
    0 10px 20px rgba(197, 179, 88, 0.32),
    0 0 0 4px rgba(197, 179, 88, 0.14);
}
.pw-stat__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pw-stat:nth-child(1) { animation: pw-rise 0.55s ease both; animation-delay: 0.05s; }
.pw-stat:nth-child(2) { animation: pw-rise 0.55s ease both; animation-delay: 0.12s; }
.pw-stat:nth-child(3) { animation: pw-rise 0.55s ease both; animation-delay: 0.19s; }
.pw-stat:nth-child(4) { animation: pw-rise 0.55s ease both; animation-delay: 0.26s; }
.pw-stat__value {
  display: block;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--pw-teal-dark);
}
.pw-stat__label {
  display: block;
  font-size: 12.5px;
  color: var(--pw-muted);
  font-weight: 700;
  line-height: 1.35;
}

.pw-grid {
  display: grid;
  gap: 14px;
}
.pw-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.pw-feature {
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 18px 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pw-feature:hover {
  border-color: rgba(0, 91, 111, 0.28);
  transform: translateY(-2px);
}
.pw-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal);
  margin-bottom: 12px;
  font-size: 16px;
}
.pw-feature__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--pw-ink);
}
.pw-feature__body {
  margin: 0;
  font-size: 13px;
  color: var(--pw-muted);
  line-height: 1.55;
}

/* Services section — image-top / content-bottom cards */
.pw-services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f3f7f9;
  padding-top: var(--pw-section-y);
  padding-bottom: var(--pw-section-y);
}
.pw-services--page {
  background: #fff;
}
.pw-services--page .pw-services__atmosphere {
  display: none;
}
.pw-services__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 55% at 90% 10%, rgba(0, 91, 111, 0.07), transparent 58%),
    radial-gradient(ellipse 45% 50% at 8% 90%, rgba(197, 179, 88, 0.08), transparent 55%);
}
.pw-services__inner {
  position: relative;
  z-index: 1;
}
.pw-services__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.pw-services__title {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.pw-services__intro {
  margin: 0 auto;
  max-width: 540px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--pw-muted);
  line-height: 1.75;
}
.pw-services__corp-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.pw-services__corp-cta .pw-btn {
  min-width: min(100%, 280px);
  justify-content: center;
  text-align: center;
}
.pw-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 880px;
  margin-inline: auto;
}
.pw-service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.1);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 45, 55, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.pw-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 91, 111, 0.18);
  box-shadow: 0 12px 28px rgba(0, 45, 55, 0.09);
}
.pw-service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 120px;
  overflow: hidden;
  background: linear-gradient(145deg, #0a7a94 0%, #005B6F 55%, #003d4c 100%);
}
.pw-service-card--gold .pw-service-card__media {
  background: linear-gradient(145deg, #d8c56e 0%, #C5B358 50%, #8a7a3a 100%);
}
.pw-service-card__media--icon {
  display: grid;
  place-items: center;
}
.pw-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.pw-service-card:hover .pw-service-card__img {
  transform: scale(1.05);
}
.pw-service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.pw-service-card--gold .pw-service-card__icon {
  color: #2a2410;
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.45);
}
.pw-service-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
  text-align: start;
  flex: 1;
}
.pw-service-card__title {
  margin: 0;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--pw-teal-dark);
  line-height: 1.35;
}
.pw-service-card__body {
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--pw-muted);
  line-height: 1.65;
}
.pw-service-card:nth-child(1) { animation: pw-rise 0.55s ease both; animation-delay: 0.05s; }
.pw-service-card:nth-child(2) { animation: pw-rise 0.55s ease both; animation-delay: 0.12s; }
.pw-service-card:nth-child(3) { animation: pw-rise 0.55s ease both; animation-delay: 0.19s; }
.pw-service-card:nth-child(4) { animation: pw-rise 0.55s ease both; animation-delay: 0.26s; }
.pw-service-card:nth-child(5) { animation: pw-rise 0.55s ease both; animation-delay: 0.33s; }
.pw-service-card:nth-child(6) { animation: pw-rise 0.55s ease both; animation-delay: 0.4s; }
.pw-cta-band {
  background: #f3f7f9;
}
@media (max-width: 980px) {
  .pw-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .pw-services__head { margin-bottom: 22px; }
  .pw-services__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
  .pw-service-card__content { padding: 16px 16px 18px; }
}

/* Corporate services page (ISO) */
.pw-corp.pw-services--page {
  padding-top: 0;
  padding-bottom: var(--pw-section-y);
  overflow: visible; /* لازم للـ sticky في عمود المزودين */
  isolation: auto;
}
.pw-corp--with-aside .pw-services__inner {
  width: min(1320px, calc(100% - 32px));
}
.pw-corp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
  gap: 22px;
  align-items: start;
}
html[dir="ltr"] .pw-corp-layout {
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
}
html[dir="ltr"] .pw-corp-aside {
  order: -1;
}
/* يثبت مع سكرول الصفحة — بدون سكرولر داخلي */
.pw-corp-aside {
  position: sticky;
  top: 96px;
  z-index: 5;
  align-self: start;
  margin: 0;
  overflow: visible;
}
body.pw-body--preview .pw-corp-aside {
  top: 132px;
}
.pw-corp-main > .pw-bookmark--inline {
  padding: 12px 0 16px;
  margin: 0;
  background: transparent;
}
.pw-corp .pw-corp-grant,
.pw-corp .pw-corp-why,
.pw-corp .pw-corp-iso,
.pw-corp .pw-corp-overview,
.pw-corp .pw-corp-contact {
  margin-bottom: clamp(40px, 6vw, 64px);
}
.pw-corp .pw-corp-contact {
  margin-bottom: 0;
}
.pw-corp-grant__title {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  text-align: start;
  max-width: 32ch;
  line-height: 1.35;
}
.pw-corp-grant__body {
  margin: 0 0 24px;
  max-width: none;
  color: var(--pw-muted);
  font-size: 15px;
  line-height: 1.75;
  text-align: start;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
}
@media (max-width: 720px) {
  .pw-corp-grant__body {
    white-space: normal;
    overflow-x: visible;
  }
}
.pw-corp-grant__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pw-corp-grant__card {
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.1);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 45, 55, 0.05);
}
.pw-corp-grant__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--pw-teal-mid), var(--pw-teal));
  font-size: 18px;
}
.pw-corp-grant__card-title {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pw-ink);
  line-height: 1.45;
}
.pw-corp-why__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  text-align: start;
}
.pw-corp-why__intro {
  margin: 0 0 22px;
  color: var(--pw-muted);
  max-width: 60ch;
  line-height: 1.7;
  text-align: start;
}
.pw-corp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.pw-corp-why__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.08);
  border-radius: 16px;
  padding: 22px 16px 18px;
  text-align: start;
  box-shadow: 0 8px 20px rgba(0, 45, 55, 0.04);
}
.pw-corp-why__num {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--pw-gold);
}
.pw-corp-why__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal);
  font-size: 16px;
}
.pw-corp-why__card-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--pw-teal-dark);
}
.pw-corp-why__card-body {
  margin: 0;
  font-size: 12.5px;
  color: var(--pw-muted);
  line-height: 1.6;
}
.pw-corp-why__quote {
  margin: 24px 0 0;
  padding: 18px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pw-teal-dark), var(--pw-teal));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 91, 111, 0.22);
}
.pw-corp-iso__heading {
  margin: 0 0 20px;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  text-align: start;
}
.pw-corp-iso__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pw-corp-iso-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.4fr;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.08);
  box-shadow: 0 8px 22px rgba(0, 45, 55, 0.04);
}
.pw-corp-iso-row__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px 18px;
  color: #fff;
  background: #0a7a94;
}
.pw-corp-iso-row--blue .pw-corp-iso-row__label { background: linear-gradient(145deg, #0a7a94, #005B6F); }
.pw-corp-iso-row--green .pw-corp-iso-row__label { background: linear-gradient(145deg, #3d9a6a, #1f6b45); }
.pw-corp-iso-row--orange .pw-corp-iso-row__label { background: linear-gradient(145deg, #d4a017, #a67c00); }
.pw-corp-iso-row--purple .pw-corp-iso-row__label { background: linear-gradient(145deg, #7c6bb5, #55448a); }
.pw-corp-iso-row--teal .pw-corp-iso-row__label { background: linear-gradient(145deg, #2a9d8f, #1a6f65); }
.pw-corp-iso-row--indigo .pw-corp-iso-row__label { background: linear-gradient(145deg, #4c6ef5, #364fc7); }
.pw-corp-iso-row__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 18px;
}
.pw-corp-iso-row__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}
.pw-corp-iso-row__standards {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pw-corp-iso-std {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pw-corp-iso-std__code {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  direction: ltr;
}
.pw-corp-iso-row--green .pw-corp-iso-std__code { background: rgba(31, 107, 69, 0.1); color: #1f6b45; }
.pw-corp-iso-row--orange .pw-corp-iso-std__code { background: rgba(166, 124, 0, 0.12); color: #8a6800; }
.pw-corp-iso-row--purple .pw-corp-iso-std__code { background: rgba(85, 68, 138, 0.12); color: #55448a; }
.pw-corp-iso-row--teal .pw-corp-iso-std__code { background: rgba(26, 111, 101, 0.12); color: #1a6f65; }
.pw-corp-iso-row--indigo .pw-corp-iso-std__code { background: rgba(54, 79, 199, 0.12); color: #364fc7; }
.pw-corp-iso-std__text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--pw-ink);
}
.pw-corp-iso-std__text p {
  margin: 0;
  font-size: 12.5px;
  color: var(--pw-muted);
  line-height: 1.6;
}
.pw-corp-providers__title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  text-align: start;
}
.pw-corp-providers__subtitle {
  margin: 0 0 20px;
  color: var(--pw-muted);
  max-width: 56ch;
  line-height: 1.65;
  text-align: start;
}
.pw-corp-providers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.pw-corp-providers--aside {
  padding: 14px 12px 12px;
  border-radius: 16px;
  background: #f4f8fa;
  border: 1px solid rgba(0, 91, 111, 0.1);
  box-shadow: 0 8px 22px rgba(0, 45, 55, 0.05);
}
.pw-corp-providers--aside .pw-corp-providers__title {
  font-size: 1.02rem;
  margin: 0 0 6px;
  text-align: center;
  line-height: 1.35;
}
.pw-corp-providers--aside .pw-corp-providers__subtitle {
  margin: 0 0 12px;
  font-size: 11px;
  max-width: none;
  line-height: 1.5;
  text-align: center;
  color: var(--pw-muted);
}
.pw-corp-providers--aside .pw-corp-providers__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.pw-corp-providers--aside .pw-corp-providers__card:first-child {
  grid-column: 1 / -1;
}
.pw-corp-providers--aside .pw-corp-providers__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px 10px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.08);
  border-radius: 12px;
  box-shadow: none;
  min-width: 0;
}
.pw-corp-providers--aside .pw-corp-providers__card img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  margin: 0 auto;
}
.pw-corp-providers--aside .pw-corp-providers__card:not(:first-child) {
  padding: 10px 8px 8px;
}
.pw-corp-providers--aside .pw-corp-providers__card:not(:first-child) img {
  max-height: 34px;
}
.pw-corp-providers--aside .pw-corp-providers__card:not(:first-child) strong {
  font-size: 11px;
}
.pw-corp-providers--aside .pw-corp-providers__card:not(:first-child) span {
  font-size: 10px;
}
.pw-corp-providers--aside .pw-corp-providers__badge {
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin: 0 auto;
}
.pw-corp-providers--aside .pw-corp-providers__card strong {
  font-size: 12px;
  line-height: 1.35;
}
.pw-corp-providers--aside .pw-corp-providers__card span {
  font-size: 10.5px;
  line-height: 1.35;
}
.pw-corp-providers__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.1);
  border-radius: 16px;
  text-align: center;
  text-decoration: none !important;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 45, 55, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
a.pw-corp-providers__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 45, 55, 0.09);
}
.pw-corp-providers__card img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.pw-corp-providers__badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal);
  font-size: 18px;
}
.pw-corp-providers__card strong {
  font-size: 13px;
  color: var(--pw-teal-dark);
}
.pw-corp-providers__card span {
  font-size: 11.5px;
  color: var(--pw-muted);
  font-weight: 600;
}
@media (max-width: 980px) {
  .pw-corp-layout {
    grid-template-columns: 1fr;
  }
  html[dir="ltr"] .pw-corp-layout {
    grid-template-columns: 1fr;
  }
  html[dir="ltr"] .pw-corp-aside {
    order: 0;
  }
  .pw-corp-aside {
    position: static;
    order: 2;
  }
  .pw-corp-providers--aside .pw-corp-providers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pw-corp-grant__grid,
  .pw-corp-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-corp-iso-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pw-corp-grant__grid,
  .pw-corp-why__grid { grid-template-columns: 1fr; }
  .pw-corp-why__quote { border-radius: 18px; }
  .pw-corp-providers--aside .pw-corp-providers__grid {
    grid-template-columns: 1fr;
  }
}

.pw-corp-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(22px, 3vw, 32px);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(0, 91, 111, 0.06), rgba(197, 179, 88, 0.08));
  border: 1px solid rgba(0, 91, 111, 0.1);
}
.pw-corp-contact__title {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  text-align: start;
}
.pw-corp-contact__subtitle {
  margin: 0 0 22px;
  color: var(--pw-muted);
  line-height: 1.7;
  max-width: 42ch;
  text-align: start;
}
.pw-corp-contact__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pw-corp-contact__channels a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.08);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pw-corp-contact__channels a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 45, 55, 0.08);
}
.pw-corp-contact__ch-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 91, 111, 0.1);
  color: var(--pw-teal);
  flex: 0 0 auto;
}
.pw-corp-contact__ch-icon--wa {
  background: rgba(37, 211, 102, 0.14);
  color: #128c7e;
}
.pw-corp-contact__channels strong {
  display: block;
  font-size: 12px;
  color: var(--pw-muted);
  font-weight: 600;
}
.pw-corp-contact__channels em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-teal-dark);
}
.pw-corp-contact__form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 22px;
  border: 1px solid rgba(0, 91, 111, 0.08);
  box-shadow: 0 10px 28px rgba(0, 45, 55, 0.05);
}
.pw-corp-contact__alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
}
.pw-corp-contact__alert--ok {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}
.pw-corp-contact__alert--err {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
}
.pw-corp-contact__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pw-corp-contact__fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pw-ink);
}
.pw-corp-contact__fields .pw-corp-contact__full {
  grid-column: 1 / -1;
}
.pw-corp-contact__fields input,
.pw-corp-contact__fields textarea {
  width: 100%;
  border: 1px solid rgba(0, 91, 111, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 500;
  color: var(--pw-ink);
  background: #fbfcfd;
}
.pw-corp-contact__fields input:focus,
.pw-corp-contact__fields textarea:focus {
  outline: none;
  border-color: var(--pw-teal);
  box-shadow: 0 0 0 3px rgba(0, 91, 111, 0.12);
  background: #fff;
}
.pw-corp-contact__hint {
  margin: 10px 0 14px;
  font-size: 12px;
  color: var(--pw-muted);
}
.pw-corp-contact__submit {
  width: 100%;
  justify-content: center;
}
.pw-corp-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .pw-corp-contact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pw-corp-contact__fields { grid-template-columns: 1fr; }
}

/* Why-us — premium feature grid */
.pw-why {
  position: relative;
  overflow: hidden;
  background: #eef5f8;
  border-block: none;
  padding-top: var(--pw-section-y);
  padding-bottom: var(--pw-section-y);
}
.pw-why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 100% 8%, rgba(197, 179, 88, 0.14), transparent 58%),
    radial-gradient(ellipse 45% 40% at 0% 92%, rgba(0, 91, 111, 0.09), transparent 55%);
}
.pw-why__bg::before {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0, 91, 111, 0.08);
  opacity: 0.8;
}
.pw-why__bg::after {
  content: "";
  position: absolute;
  inset: auto auto 8% 6%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 179, 88, 0.12), transparent 70%);
}
.pw-why__inner { position: relative; z-index: 1; }
.pw-why__head {
  max-width: 640px;
  margin-bottom: 34px;
}
.pw-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.pw-why__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pw-gold);
  box-shadow: 0 0 0 3px rgba(197, 179, 88, 0.25);
}
.pw-why__head .pw-section__title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.4vw, 34px);
  background: linear-gradient(120deg, #003d4c 20%, #0a7a94 70%, #8a7a3a 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pw-why__head .pw-section__intro {
  font-size: 14.5px;
  max-width: 52ch;
  line-height: 1.75;
}
.pw-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pw-why-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 168px;
  padding: 22px 20px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 91, 111, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 36px rgba(0, 45, 55, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.pw-why-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pw-gold), var(--pw-teal));
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.pw-why-card__glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 91, 111, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.pw-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 91, 111, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px rgba(0, 45, 55, 0.12);
}
.pw-why-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.pw-why-card:hover .pw-why-card__glow { opacity: 1; }
.pw-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(145deg, #0a7a94, #005B6F);
  box-shadow:
    0 10px 22px rgba(0, 91, 111, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transition: transform 0.35s ease;
}
.pw-why-card:hover .pw-why-card__icon {
  transform: scale(1.06) rotate(-3deg);
}
.pw-why-card--2 .pw-why-card__icon,
.pw-why-card--5 .pw-why-card__icon {
  background: linear-gradient(145deg, #d4c46a, #a8943a);
  color: #2a2410;
  box-shadow: 0 10px 22px rgba(168, 148, 58, 0.28);
}
.pw-why-card--3 .pw-why-card__icon,
.pw-why-card--6 .pw-why-card__icon {
  background: linear-gradient(145deg, #1a8fa8, #004555);
}
.pw-why-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #12303a;
  letter-spacing: -0.01em;
}
.pw-why-card__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #5c717d;
}
.pw-why-card:nth-child(1) { animation: pw-rise 0.55s ease both; animation-delay: 0.05s; }
.pw-why-card:nth-child(2) { animation: pw-rise 0.55s ease both; animation-delay: 0.12s; }
.pw-why-card:nth-child(3) { animation: pw-rise 0.55s ease both; animation-delay: 0.19s; }
.pw-why-card:nth-child(4) { animation: pw-rise 0.55s ease both; animation-delay: 0.26s; }
.pw-why-card:nth-child(5) { animation: pw-rise 0.55s ease both; animation-delay: 0.33s; }
.pw-why-card:nth-child(6) { animation: pw-rise 0.55s ease both; animation-delay: 0.4s; }

@media (max-width: 900px) {
  .pw-why__grid { grid-template-columns: 1fr; }
}

/* Training fields (course sections) */
.pw-fields {
  background: #ffffff;
  padding-top: var(--pw-section-y);
  padding-bottom: var(--pw-section-y);
}
.pw-fields__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.pw-field-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pw-field-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 116, 144, 0.28);
  box-shadow: 0 18px 40px rgba(0, 45, 55, 0.12);
}
.pw-field-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #0e7490 0%, #134e4a 55%, #0f172a 100%);
  overflow: hidden;
}
.pw-field-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.pw-field-card:hover .pw-field-card__media img {
  transform: scale(1.06);
}
.pw-field-card__media--empty {
  display: grid;
  place-items: center;
}
.pw-field-card__placeholder {
  font-size: 34px;
  color: rgba(255, 255, 255, 0.82);
}
.pw-field-card__shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(8, 24, 28, 0.45), transparent);
  pointer-events: none;
}
.pw-field-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 16px;
}
.pw-field-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--pw-ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pw-field-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pw-teal, #0e7490);
}
.pw-field-card:hover .pw-field-card__cta {
  gap: 10px;
}
.pw-field-card:nth-child(1) { animation: pw-rise 0.5s ease both; animation-delay: 0.04s; }
.pw-field-card:nth-child(2) { animation: pw-rise 0.5s ease both; animation-delay: 0.1s; }
.pw-field-card:nth-child(3) { animation: pw-rise 0.5s ease both; animation-delay: 0.16s; }
.pw-field-card:nth-child(4) { animation: pw-rise 0.5s ease both; animation-delay: 0.22s; }
.pw-field-card:nth-child(5) { animation: pw-rise 0.5s ease both; animation-delay: 0.28s; }
.pw-field-card:nth-child(6) { animation: pw-rise 0.5s ease both; animation-delay: 0.34s; }

@media (max-width: 640px) {
  .pw-fields__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .pw-field-card__title { font-size: 13px; }
  .pw-field-card__cta { font-size: 11px; }
}

.pw-prose {
  max-width: 68ch;
  font-size: 15px;
  color: var(--pw-muted);
  white-space: pre-line;
}
.pw-prose strong { color: var(--pw-ink); }

.pw-courses {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.pw-course {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pw-course:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 45, 55, 0.1);
}
.pw-course__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #d7e8ed, #eef5f7);
  overflow: hidden;
}
.pw-course__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pw-course__body { padding: 12px 14px 14px; }
.pw-course__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--pw-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pw-course__meta {
  margin: 0;
  font-size: 11px;
  color: var(--pw-muted);
}

.pw-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.pw-contact-card {
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 20px;
}
.pw-contact-card dt {
  margin: 0 0 2px;
  font-size: 11px;
  color: var(--pw-muted);
  font-weight: 700;
}
.pw-contact-card dd {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pw-ink);
}
.pw-contact-card dd:last-child { margin-bottom: 0; }
.pw-contact-legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 91, 111, 0.1);
  display: grid;
  gap: 10px;
}
.pw-contact-legal__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pw-contact-legal__item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 91, 111, 0.12);
  padding: 3px;
}
.pw-contact-legal__label {
  font-size: 12px;
  color: var(--pw-muted);
  font-weight: 600;
}
.pw-contact-legal__value {
  font-size: 14px;
  font-weight: 800;
  color: var(--pw-teal-dark);
}

/* Footer */
/* Accredited partners — before footer */
.pw-accredited {
  position: relative;
  padding-block: var(--pw-section-y);
  padding-inline: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f8fa 0%, #eef1f4 100%);
  border-top: 1px solid rgba(15, 45, 55, 0.06);
}
.pw-accredited__inner {
  text-align: center;
}
.pw-accredited__title {
  margin: 0 0 8px;
  font-family: var(--pw-font);
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #c9a227;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.65), 0 3px 10px rgba(120, 90, 20, 0.18);
}
.pw-accredited__subtitle {
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 500;
  color: #6b7c8a;
}
.pw-accredited__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.pw-accredited__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(200px, calc(50% - 10px));
  min-height: 110px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(15, 45, 55, 0.08);
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(15, 45, 55, 0.07);
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pw-accredited__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 45, 55, 0.12);
}
.pw-accredited__card img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 900px) {
  .pw-accredited__card {
    width: 200px;
    flex: 0 0 200px;
  }
}
@media (max-width: 560px) {
  .pw-accredited { padding-block: var(--pw-section-y); }
  .pw-accredited__subtitle { margin-bottom: 20px; font-size: 13px; }
  .pw-accredited__card {
    width: calc(50% - 8px);
    min-height: 92px;
    padding: 12px;
  }
  .pw-accredited__card img { max-height: 56px; }
}

/* Distinguished clients — brand trust gallery */
.pw-clients {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--pw-section-y);
  padding-inline: 0;
  background: linear-gradient(180deg, #f7fafb 0%, #eef5f8 48%, #f7fafb 100%);
  border-top: 1px solid rgba(0, 91, 111, 0.08);
}
.pw-clients__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 12% 20%, rgba(197, 179, 88, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 55% at 90% 80%, rgba(0, 91, 111, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(0, 91, 111, 0.06), transparent 60%);
}
.pw-clients__inner {
  position: relative;
  z-index: 1;
}
.pw-clients__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}
.pw-clients__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pw-teal);
  background: rgba(0, 91, 111, 0.08);
  border: 1px solid rgba(0, 91, 111, 0.12);
}
.pw-clients__title {
  margin: 0 0 12px;
  font-family: var(--pw-font);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--pw-teal-dark);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.pw-clients__rule {
  display: block;
  width: 56px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--pw-gold), transparent);
}
.pw-clients__subtitle {
  margin: 0 auto;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--pw-muted);
  line-height: 1.75;
}
.pw-clients__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.pw-clients__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px 16px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(0, 91, 111, 0.18), rgba(197, 179, 88, 0.35), rgba(0, 91, 111, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow:
    0 10px 28px rgba(0, 45, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-decoration: none !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pw-clients__card-glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(circle at 50% 0%, rgba(197, 179, 88, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.pw-clients__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 18px 40px rgba(0, 45, 55, 0.12),
    0 0 0 1px rgba(197, 179, 88, 0.28);
}
.pw-clients__card:hover .pw-clients__card-glow { opacity: 1; }
.pw-clients__card img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.2) saturate(0.9);
  opacity: 0.9;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}
.pw-clients__card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .pw-clients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .pw-clients__head { margin-bottom: 24px; }
  .pw-clients__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .pw-clients__card {
    min-height: 96px;
    padding: 14px 12px;
    border-radius: 14px;
  }
  .pw-clients__card img { max-height: 50px; }
}

/* Testimonials — before footer */
.pw-testimonials {
  position: relative;
  overflow: hidden;
  padding-block: var(--pw-section-y);
  padding-inline: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 20%, rgba(197, 179, 88, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 60% at 85% 80%, rgba(0, 91, 111, 0.12), transparent 55%),
    linear-gradient(165deg, #043845 0%, #005B6F 45%, #0a6d84 100%);
  color: #fff;
}
.pw-testimonials__glow {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.pw-testimonials__inner { position: relative; z-index: 1; }
.pw-testimonials__head {
  text-align: center;
  margin-bottom: 28px;
}
.pw-testimonials__title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.pw-testimonials__subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.pw-testimonials__stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.pw-testimonials__track {
  position: relative;
  min-height: 280px;
}
.pw-testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}
.pw-testimonial.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.pw-testimonial__photo-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
}
.pw-testimonial__photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.12);
}
.pw-testimonial__photo--empty {
  display: grid;
  place-items: center;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.7);
}
.pw-testimonial__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(197, 179, 88, 0.55);
  animation: pw-tst-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pw-tst-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}
.pw-testimonial__content {
  position: relative;
  padding: 8px 8px 0;
  max-width: 560px;
}
.pw-testimonial__quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--pw-gold);
  opacity: 0.85;
  margin-bottom: 8px;
}
.pw-testimonial__quote {
  margin: 0 0 18px;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.pw-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pw-testimonial__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--pw-gold-soft);
}
.pw-testimonial__role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.pw-testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.pw-testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pw-testimonials__arrow:hover {
  background: var(--pw-gold);
  border-color: transparent;
  color: #2a2410;
}
.pw-testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pw-testimonials__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.pw-testimonials__dot.is-active {
  background: var(--pw-gold);
  transform: scale(1.25);
}
@media (max-width: 640px) {
  .pw-testimonials { padding-block: var(--pw-section-y); }
  .pw-testimonial__photo-wrap,
  .pw-testimonial__photo { width: 92px; height: 92px; }
  .pw-testimonials__track { min-height: 260px; }
}

.pw-browse {
  padding-top: 36px;
}
.pw-browse__head { margin-bottom: 18px; }
.pw-browse-search {
  margin: 0 0 22px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 45, 55, 0.05);
}
.pw-browse-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.pw-browse-search__field {
  flex: 1 1 220px;
  position: relative;
  display: block;
  margin: 0;
}
.pw-browse-search__ico {
  position: absolute;
  inset-inline-start: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pw-muted);
  font-size: 13px;
  pointer-events: none;
}
.pw-browse-search__field input {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  padding: 0 14px;
  padding-inline-start: 36px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  background: #f8fafc;
}
.pw-browse-search__field input:focus {
  outline: none;
  border-color: var(--pw-teal);
  box-shadow: 0 0 0 3px rgba(0, 91, 111, 0.12);
  background: #fff;
}
.pw-browse-search__select-wrap {
  flex: 0 1 200px;
  margin: 0;
}
.pw-browse-search__select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  background: #fff;
}
.pw-browse-search__btn {
  flex: 0 0 auto;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 18px !important;
}
.pw-browse-search__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.pw-browse-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 91, 111, 0.08);
  color: var(--pw-teal);
  font-size: 12px;
  font-weight: 700;
}
.pw-browse-clear {
  font-size: 12px;
  font-weight: 700;
  color: var(--pw-muted);
}
.pw-browse-count {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--pw-muted);
  font-weight: 600;
}
.pw-browse-empty {
  text-align: center;
  padding: 40px 16px;
  background: #fff;
  border: 1px dashed var(--pw-line);
  border-radius: 14px;
}
.pw-browse-empty p {
  margin: 0 0 14px;
  color: var(--pw-muted);
}
.pw-browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.pw-browse-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pw-line);
  border-radius: 3px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pw-browse-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 45, 55, 0.1);
}
.pw-browse-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #d7e8ed, #eef5f7);
  overflow: hidden;
  color: inherit;
  text-decoration: none !important;
}
.pw-browse-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pw-browse-card__media--empty {
  display: grid;
  place-items: center;
  color: rgba(0, 91, 111, 0.35);
  font-size: 28px;
}
.pw-browse-card__type {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f3d48;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 30, 40, 0.12);
  backdrop-filter: blur(4px);
}
.pw-browse-card__type i {
  font-size: 10px;
  color: var(--pw-teal);
}
.pw-browse-card__type--online i { color: #0369a1; }
.pw-browse-card__type--hybrid i { color: #7c3aed; }
.pw-browse-card__media-price {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  gap: 3px;
  justify-items: start;
  min-width: 88px;
  padding: 8px 12px;
  border-radius: 3px;
  background: #fff;
  border: 2px solid rgba(0, 91, 111, 0.18);
  box-shadow: 0 10px 24px rgba(0, 30, 40, 0.22);
  line-height: 1.15;
}
.pw-browse-card__media-price-before {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
}
.pw-browse-card__media-price-now {
  font-size: 16px;
  font-weight: 900;
  color: var(--pw-teal-dark);
  letter-spacing: 0.01em;
}
.pw-browse-card__media-price.is-free {
  min-width: 0;
  width: max-content;
  padding: 6px 10px;
}
.pw-browse-card__media-price.is-free .pw-browse-card__media-price-now {
  color: #0f766e;
  font-size: 14px;
  white-space: nowrap;
}
.pw-browse-card__media-discount {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(185, 28, 28, 0.18);
  white-space: nowrap;
}
.pw-browse-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 16px;
  flex: 1;
}
.pw-browse-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--pw-ink);
  line-height: 1.4;
  text-align: center;
}
.pw-browse-card__title a {
  color: inherit;
  text-decoration: none !important;
}
.pw-browse-card__title a:hover {
  color: var(--pw-teal-dark);
}
.pw-browse-card__title-sub {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
  color: var(--pw-teal-dark);
}
.pw-browse-card__meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  align-items: start;
}
.pw-browse-card__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  font-size: 11px;
  color: #475569;
  line-height: 1.3;
  min-width: 0;
}
.pw-browse-card__meta-item i {
  color: #94a3b8;
  font-size: 14px;
}
.pw-browse-card__meta-item small {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
}
.pw-browse-card__meta-item strong {
  font-size: 11.5px;
  font-weight: 800;
  color: #334155;
  word-break: break-word;
}
.pw-browse-card__time {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px;
  direction: ltr;
  unicode-bidi: isolate;
}
.pw-browse-card__time--ar {
  direction: rtl;
}
.pw-browse-card__time-clock {
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: isolate;
}
.pw-browse-card__time-ampm {
  font-weight: 800;
}
.pw-browse-card__dates-block {
  display: grid;
  gap: 6px;
}
.pw-browse-card__dates-title {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--pw-teal-dark);
}
.pw-browse-card__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pw-browse-card__dates span {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
}
.pw-browse-card__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pw-browse-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pw-browse-card__btn--details {
  background: #fff;
  color: var(--pw-teal-dark);
  border: 1px solid rgba(0, 91, 111, 0.28);
}
.pw-browse-card__btn--details:hover {
  background: rgba(0, 91, 111, 0.06);
  border-color: var(--pw-teal);
}
.pw-browse-card__btn--book {
  background: var(--pw-teal);
  color: #fff;
  border: 1px solid var(--pw-teal);
}
.pw-browse-card__btn--book:hover {
  background: var(--pw-teal-dark);
  border-color: var(--pw-teal-dark);
  color: #fff;
}

@media (max-width: 640px) {
  .pw-browse-search__btn { width: 100%; justify-content: center; }
  .pw-browse-search__select-wrap { flex: 1 1 100%; }
}

.pw-footer {
  margin-top: auto;
  background: linear-gradient(180deg, #023744 0%, #012a34 55%, #011f27 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-block: var(--pw-section-y);
  padding-inline: 0;
  border-top: 1px solid rgba(197, 179, 88, 0.18);
}
.pw-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.2fr;
  gap: 28px 24px;
  align-items: start;
}
.pw-footer__heading {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--pw-gold-soft);
  letter-spacing: 0.02em;
}
.pw-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none !important;
  color: #fff !important;
}
.pw-footer__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
}
.pw-footer__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(197, 179, 88, 0.2);
  color: var(--pw-gold-soft);
  font-weight: 800;
  font-size: 18px;
}
.pw-footer__brand-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  max-width: 220px;
}
.pw-footer__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}
.pw-footer__ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pw-gold-soft);
  text-decoration: none !important;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}
a.pw-footer__ico:hover {
  background: var(--pw-gold);
  color: #2a2410;
}
.pw-footer__ico--wa { color: #25d366; }
.pw-footer__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  line-height: 1.45;
}
.pw-footer__text--multiline {
  white-space: normal;
}
a.pw-footer__text:hover { color: var(--pw-gold-soft); }
.pw-footer__legal {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: stretch;
}
.pw-footer__legal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pw-footer__legal-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
}
.pw-footer__legal-meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.pw-footer__legal-label {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  font-size: 11.5px;
  line-height: 1.35;
}
.pw-footer__legal-value {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.35;
  word-break: break-word;
}
.pw-footer__legal-item.is-empty {
  opacity: 0;
  pointer-events: none;
  border-color: transparent;
  background: transparent;
}
@media (max-width: 860px) {
  .pw-footer__legal {
    grid-template-columns: 1fr;
  }
  .pw-footer__legal-item.is-empty {
    display: none;
  }
}
.pw-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.pw-footer__menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 2px 0;
  transition: color 0.15s ease, padding-inline-start 0.15s ease;
}
.pw-footer__menu a:hover {
  color: var(--pw-gold-soft);
  padding-inline-start: 4px;
}
.pw-footer__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 260px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, #c5b358, #e0d08a);
  color: #2a2410 !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.pw-footer__login:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.pw-footer__map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  background: #02313d;
  aspect-ratio: 16 / 11;
  min-height: 180px;
}
.pw-footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.pw-footer__map-empty {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}
.pw-footer__payments {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.pw-footer__payments-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
.pw-footer__payments-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
}
.pw-footer__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 48px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.pw-footer__pay img {
  display: block;
  max-height: 32px;
  max-width: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pw-footer__copy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  justify-content: center;
}
.pw-footer__legal-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: center;
}
.pw-footer__legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 600;
}
.pw-footer__legal-links a:hover {
  color: var(--pw-gold-soft);
}
.pw-footer__copy a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none !important;
}
.pw-footer__copy a:hover { color: var(--pw-gold-soft); }

@media (max-width: 960px) {
  .pw-footer__grid { grid-template-columns: 1fr 1fr; }
  .pw-footer__col--map { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .pw-footer { padding-block: var(--pw-section-y); }
  .pw-footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .pw-footer__login { max-width: none; }
}

@keyframes pw-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .pw-section--stats { margin-top: -28px; }
  .pw-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
  .pw-grid--3 { grid-template-columns: 1fr; }
  .pw-grid--2 { grid-template-columns: 1fr; }
  .pw-contact-grid { grid-template-columns: 1fr; }
  .pw-hero-slider { min-height: min(88vh, 720px); }
  .pw-hero-slider__content { padding-block: clamp(100px, 14vw, 120px); }
  .pw-hero-slider__controls { bottom: 96px; }
  .pw-brand__name { font-size: 12px; max-width: 140px; }
  .pw-nav { gap: 2px 8px; }
  .pw-nav a { font-size: 12px; }
  .pw-nav__soon-label { font-size: 12px; }
  .pw-nav-mega__trigger { font-size: 12px; }
  .pw-nav-mega__panel {
    position: fixed;
    left: 12px;
    right: 12px;
    transform: none;
    width: auto;
  }
  .pw-nav-mega__inner {
    grid-template-columns: 1fr;
    max-height: min(70vh, 560px);
    overflow: auto;
  }
}
@media (max-width: 720px) {
  .pw-header__row {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .pw-nav {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  .pw-brand { max-width: calc(100% - 160px); }
  .pw-hero-slider__controls { bottom: 88px; }
}
