:root {
  --bg: #fff7ed;
  --card: #ffffff;
  --text: #1f1733;
  --muted: #6b647a;
  --line: #eadccd;
  --primary: #7c3aed;
  --primary-dark: #4c1d95;
  --secondary: #0891b2;
  --accent: #f97316;
  --accent-soft: #ffedd5;
  --mint: #10b981;
  --rose: #e11d48;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(76, 29, 149, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 6.5rem;
}

.readex-pro-regular {
  font-family: "Readex Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 8%, rgba(124, 58, 237, 0.18), transparent 26rem),
    linear-gradient(180deg, #fff7ed 0%, #f5f3ff 46%, #ecfeff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
}

.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 247, 237, 0.97) 50%, rgba(245, 243, 255, 0.97) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 4px 24px rgba(76, 29, 149, 0.06);
}

.header-bar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px 28px;
  padding: 20px 0 16px;
  box-sizing: border-box;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.brand,
.nav,
.footer-links,
.actions,
.admin-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  color: var(--text);
  min-width: 0;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.brand-text strong {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
}

.brand-text small {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-header .nav {
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.site-header .nav a {
  color: var(--primary-dark);
  font-weight: 650;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header .nav a:hover {
  background: rgba(124, 58, 237, 0.1);
  text-decoration: none;
}

.site-header .nav a.is-active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.header-cta {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-links a {
  color: var(--primary-dark);
  font-weight: 650;
  padding: 4px 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 118px max(24px, calc((100vw - 1120px) / 2)) 96px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 44px 0 0;
  z-index: -1;
  border-radius: 0 0 64px 64px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 237, 213, 0.5));
  box-shadow: 0 28px 90px rgba(124, 58, 237, 0.1);
}

.hero-copy h1,
.form-intro h1,
.panel h1 {
  margin: 0 0 26px;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  max-width: 820px;
  font-weight: 700;
  background: linear-gradient(100deg, var(--primary-dark), var(--primary) 46%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.arabic-block {
  direction: rtl;
  text-align: right;
  max-width: 720px;
  margin: 8px 0 28px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(124, 58, 237, 0.08));
  border-inline-start: 4px solid var(--secondary);
  box-shadow: 0 14px 36px rgba(8, 145, 178, 0.1);
}

.arabic-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.arabic-align {
  width: 100%;
  margin: 8px 0 28px;
  text-align: right;
  direction: rtl;
}

.arabic-text {
  direction: rtl;
  text-align: right;
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
}

.hero-arabic {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.75;
  color: var(--primary-dark);
  text-align: right;
}

.arabic-headline {
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-dark);
  text-align: right;
}

.arabic-highlight {
  background: #fef9c3;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.08em 0.2em;
  border-radius: 4px;
}

.arabic-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
}

.arabic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
  max-width: 720px;
}

.arabic-list li {
  position: relative;
  margin: 0 0 10px;
  padding-inline-start: 1.35em;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  text-align: right;
}

.arabic-list li:last-child {
  margin-bottom: 0;
}

.arabic-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  inset-inline-start: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}

.trust-header .arabic-list li {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.arabic-align:has(.arabic-subtitle),
.arabic-align:has(.arabic-list) {
  margin: 16px 0 28px;
}

.subtitle,
.hero-copy p:not(.arabic-text),
.form-intro p,
.panel p,
.section-heading p,
.form-section p {
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-copy .subtitle {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.hero .button-primary {
  min-height: 62px;
  padding: 16px 34px;
  font-size: 1.08rem;
}

.button-secondary {
  background: #eef2ff;
  color: var(--primary-dark);
}

.button-link {
  background: transparent;
  color: var(--muted);
  padding-inline: 0;
}

.full {
  width: 100%;
}

.hero-card,
.benefit-card,
.mini-card,
.form-card,
.panel,
.metric-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(236, 254, 255, 0.76)),
    radial-gradient(circle at 90% 0%, rgba(249, 115, 22, 0.18), transparent 12rem);
}

.card-label {
  margin-top: 0;
  color: var(--muted);
  font-weight: 800;
}

.cohort-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.cohort-details span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5f3ff, #ecfeff);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 9px 15px;
  box-shadow: 0 10px 24px rgba(8, 145, 178, 0.1);
}

.cohort-details.stacked {
  align-items: flex-start;
  flex-direction: column;
}

.workshop-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 100%;
  margin: 16px 0 2px;
  padding: 14px 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.14), transparent 14rem);
  box-shadow:
    0 28px 60px rgba(76, 29, 149, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    inset 4px 0 0 var(--accent);
}

.workshop-offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.06em;
  margin: 0;
  line-height: 0.92;
}

.workshop-offer-amount {
  font-size: clamp(2.5rem, 8vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  color: var(--primary-dark);
}

.workshop-offer-currency {
  font-size: clamp(1.2rem, 3.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  transform: translateY(-0.06em);
}

.workshop-offer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 28ch;
}

.workshop-offer--on-dark {
  max-width: none;
  margin: 14px 0 11px;
  padding: 14px 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 0% 0%, rgba(255, 237, 213, 0.14), transparent 12rem);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 4px 0 0 rgba(255, 237, 213, 0.85);
}

.workshop-offer--on-dark .workshop-offer-amount {
  color: #fff;
}

.workshop-offer--on-dark .workshop-offer-currency {
  color: #ffedd5;
}

.workshop-offer--on-dark .workshop-offer-note {
  color: rgba(255, 255, 255, 0.76);
}

.workshop-offer--compact {
  max-width: 420px;
  margin: 14px auto 11px;
  padding: 12px 14px;
}

.workshop-offer--compact .workshop-offer-amount {
  font-size: clamp(2.1rem, 7vw, 3.25rem);
}

.workshop-offer--compact .workshop-offer-currency {
  font-size: clamp(1rem, 3vw, 1.5rem);
}


.check-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--mint);
  font-weight: 900;
}

.section {
  padding: 84px 0;
}

.section h2 {
  color: var(--primary-dark);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 36px;
}

.section h2,
.panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.grid {
  display: grid;
  gap: 28px;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.mini-card {
  padding: 34px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--rose));
}

.benefit-card h3 {
  margin-top: 0;
}

.muted {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(8, 145, 178, 0.08));
  border-radius: 46px;
  padding-inline: 42px;
}

.mini-card {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  color: var(--primary-dark);
  font-weight: 800;
}

.about-section {
  padding-block: 92px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: center;
  border-radius: 48px;
  background:
    radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.72));
  box-shadow: var(--shadow);
  padding: 42px;
  overflow: hidden;
}

.about-photo {
  position: relative;
  min-height: 390px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ede9fe, #cffafe);
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(76, 29, 149, 0.18);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--rose));
  opacity: 0.88;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.about-copy {
  max-width: 680px;
}

.about-copy h2 {
  margin: 0 0 24px;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.14rem;
}

.about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(8, 145, 178, 0.08));
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.14);
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.about-more-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(8, 145, 178, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(124, 58, 237, 0.22),
    0 12px 28px rgba(76, 29, 149, 0.1);
  text-decoration: none;
}

.about-more-link-arrow {
  display: inline-block;
  transition: transform 160ms ease;
}

.about-more-link:hover .about-more-link-arrow {
  transform: translateX(4px);
}

.form-section,
.form-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
  padding: 88px 0;
}

.form-intro {
  position: sticky;
  top: 24px;
}

.form-card {
  display: grid;
  gap: 22px;
  padding: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.72));
}

label {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.1);
  color: var(--text);
  font: inherit;
  padding: 15px 16px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(124, 58, 237, 0.18);
  box-shadow: inset 0 0 0 2px rgba(124, 58, 237, 0.34);
}

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 600;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.error-box {
  padding: 12px 14px;
  border: 1px solid #f1b5ae;
  border-radius: 16px;
  background: #fff4f2;
  color: var(--danger);
}

.error-box p {
  margin: 0;
}

.note {
  color: var(--primary-dark);
  font-weight: 800;
  text-align: center;
}

.center-page,
.content-page {
  display: grid;
  place-items: center;
  min-height: 58vh;
  padding: 88px 0;
}

.compact {
  min-height: 50vh;
}

.panel {
  width: 100%;
  padding: 46px;
}

.center-page .panel {
  max-width: 760px;
  text-align: center;
}

.readable {
  max-width: 820px;
}

.readable h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.readable h2 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.admin-card {
  width: min(440px, 100%);
}

.dashboard {
  padding: 70px 0 96px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}

.dashboard-header h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
}

.dashboard-header p {
  color: var(--muted);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.metric-card {
  padding: 26px;
  background: linear-gradient(150deg, #ffffff, #ecfeff);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 26px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rank-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.table-panel {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0 56px;
  color: var(--muted);
}

/* Premium landing page treatment */
.hero-pro {
  display: flex;
  justify-content: center;
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  padding-top: 118px;
  padding-bottom: 96px;
  padding-left: 0;
  padding-right: 0;
}

.hero-pro .hero-copy {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .hero.hero-pro {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
  }

  .hero.hero-pro.hero-book {
    padding-left: max(24px, calc((100vw - 1120px) / 2));
    padding-right: max(24px, calc((100vw - 1120px) / 2));
  }

  .hero.hero-pro::before {
    inset: 44px 0 0;
    border-radius: 0 0 64px 64px;
  }
}

.hero-pro::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(8, 145, 178, 0.18), transparent 20rem),
    radial-gradient(circle at 20% 24%, rgba(249, 115, 22, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 243, 255, 0.76));
}

.hero-pro .eyebrow {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(76, 29, 149, 0.09);
  padding: 10px 14px;
}

.hero-pro .eyebrow-ar {
  direction: rtl;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--primary-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 254, 255, 0.88));
  box-shadow:
    0 14px 34px rgba(76, 29, 149, 0.1),
    inset 0 0 0 1px rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(8, 145, 178, 0.18);
}

.eyebrow-ar-main {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}

.eyebrow-ar-sub {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--secondary);
}

.eyebrow-ar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.hero-pro h1 {
  max-width: none;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
}

.hero-pro .subtitle {
  max-width: 680px;
  font-size: clamp(1.14rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(76, 29, 149, 0.08);
}

.hero-meta {
  margin-top: 34px;
}

.cohort-details-ar {
  margin: -12px 0 24px;
  text-align: right;
}

.cohort-details-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  direction: rtl;
  color: var(--primary-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 254, 255, 0.88));
  box-shadow:
    0 14px 34px rgba(76, 29, 149, 0.1),
    inset 0 0 0 1px rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(8, 145, 178, 0.18);
}

.cohort-details-main {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
}

.cohort-details-sub {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--secondary);
}

.cohort-details-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.hero-book {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 48px 72px;
  align-items: center;
  justify-content: stretch;
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  padding-right: max(24px, calc((100vw - 1120px) / 2));
}

.hero-book .hero-copy {
  max-width: none;
  margin: 0;
  width: auto;
  padding-inline: 0;
}

.hero-book-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.book-cover-image {
  display: block;
  width: min(100%, 820px);
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero-book {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-book .hero-copy {
    display: contents;
  }

  .hero-book .hero-copy .eyebrow {
    order: 1;
  }

  .hero-book .hero-copy h1 {
    order: 2;
    margin-bottom: 0;
  }

  .hero-book-visual {
    order: 3;
    padding: 8px 0 4px;
  }

  .hero-book .hero-copy .arabic-align {
    order: 4;
    margin-top: 0;
  }

  .hero-book .hero-actions {
    order: 5;
    margin-top: 0;
  }

  .book-cover-image {
    width: min(90vw, 820px);
  }
}

.workshop-card {
  position: relative;
  display: grid;
  gap: 24px;
  align-self: stretch;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
}

.workshop-card::before {
  content: "";
  position: absolute;
  inset: -24% -22% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 68%);
}

.workshop-card-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.workshop-card-top strong {
  color: var(--primary-dark);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.workshop-days {
  position: relative;
  display: grid;
  gap: 14px;
}

.workshop-days div,
.workshop-result {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(76, 29, 149, 0.08);
  padding: 20px;
}

.workshop-days span,
.workshop-result span,
.outcome-card span,
.process-grid span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop-days p,
.workshop-result p {
  margin: 6px 0 0;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.35;
}

.workshop-result {
  align-self: end;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.workshop-result span,
.workshop-result p {
  color: #fff;
}

.trust-strip-redesign {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vh, 72px) 0;
  
}

.trust-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vh, 48px);
  min-height: calc(80vh - clamp(80px, 12vh, 144px));
}

.trust-header {
  text-align: left;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: auto;
  flex-shrink: 0;
}

.trust-visual {
  margin: 0 auto;
  flex: 0 0 auto;
  align-self: flex-start;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 48px rgba(76, 29, 149, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.trust-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.trust-header h2 {
  margin: 12px 0 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  line-height: 1.2;
}

.trust-header .arabic-align {
  margin: 20px 0 0;
  max-width: 100%;
}

.trust-header .arabic-align + .arabic-align {
  margin-top: 16px;
}

.trust-header .arabic-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  line-height: 1.4;
}

.trust-header .arabic-subtitle {
  max-width: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.trust-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 32px 28px;
  box-shadow: 
    0 32px 80px rgba(76, 29, 149, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 40px 100px rgba(76, 29, 149, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.7);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.3);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-content strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.trust-content span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-showcase {
  grid-column: span 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 32px 80px rgba(76, 29, 149, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.location-showcase:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 40px 100px rgba(76, 29, 149, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8);
}

.location-image-container {
  position: relative;
  overflow: hidden;
}

.location-showcase-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.location-showcase:hover .location-showcase-image {
  transform: scale(1.05);
}

.location-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.location-badge svg {
  width: 14px;
  height: 14px;
}

.location-showcase-content {
  padding: 24px 28px;
}

.location-showcase-content strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-showcase-content > span {
  display: block;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.location-showcase-content p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.wide-heading {
  max-width: 840px;
}

.outcomes-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(88px, 10vh, 120px) max(24px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 82%, rgba(124, 58, 237, 0.1), transparent 22rem),
    linear-gradient(180deg, #fff7ed 0%, #fff 48%, #faf8ff 100%);
  border-block: 1px solid rgba(249, 115, 22, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 40px 80px rgba(76, 29, 149, 0.05);
}

.outcomes-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.outcome-grid {
  align-items: stretch;
}

.outcome-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.13), transparent 10rem),
    rgba(255, 255, 255, 0.82);
}

.outcome-card h3 {
  margin: 34px 0 10px;
  color: var(--primary-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
}

.amazon-badge-wrap {
  margin: 4px 0 36px;
  text-align: center;
}

.amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #131921;
  box-shadow: 0 12px 26px rgba(19, 25, 33, 0.22);
}

.amazon-badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.amazon-wordmark {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}

.amazon-smile {
  width: 48px;
  height: 13px;
  margin-top: 3px;
}

.buy-grid {
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.buy-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.buy-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(8, 145, 178, 0.14));
  color: var(--primary-dark);
}

.buy-card-icon svg {
  width: 26px;
  height: 26px;
}

.buy-card h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.buy-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

.buy-card .button {
  margin-top: auto;
}

.book-part.book-part-alt {
  background:
    radial-gradient(circle at 8% 12%, rgba(124, 58, 237, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 88%, rgba(8, 145, 178, 0.12), transparent 24rem),
    linear-gradient(180deg, #ede9fe 0%, #f5f3ff 42%, #ecfeff 100%);
  border-block: 1px solid rgba(124, 58, 237, 0.12);
}

.book-part .outcome-card-number {
  display: block;
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: none;
  color: transparent;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.book-part .outcome-card h3 {
  margin: 18px 0 10px;
}

.book-part .outcome-card {
  min-height: 280px;
}

.process-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(88px, 10vh, 120px) max(24px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 8% 12%, rgba(124, 58, 237, 0.14), transparent 26rem),
    radial-gradient(circle at 92% 88%, rgba(8, 145, 178, 0.12), transparent 24rem),
    linear-gradient(180deg, #ede9fe 0%, #f5f3ff 42%, #ecfeff 100%);
  border-block: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 40px 80px rgba(76, 29, 149, 0.06);
}

.process-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.process-heading {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.process-heading .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.08);
  padding: 10px 16px;
}

.process-heading .arabic-align {
  margin: 10px auto 0;
}

.process-heading .arabic-subtitle {
  margin: 0;
  max-width: none;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-dark);
  opacity: 0.92;
}

.process-heading p:last-child {
  margin-inline: auto;
}

.schedule-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.day-schedule {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(76, 29, 149, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.day-header {
  position: relative;
  padding: 28px 28px 22px 36px;
  text-align: left;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(8, 145, 178, 0.05));
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.day-header::before {
  content: "";
  position: absolute;
  inset-block: 20px;
  inset-inline-start: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.day-header::after {
  display: none;
}

.day-number {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-header h3 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  color: var(--primary-dark);
}

.day-arabic-subtitle {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--primary-dark);
  opacity: 0.92;
}

.day-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.schedule-timeline {
  padding: 8px 24px 28px;
}

.schedule-item {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.schedule-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.schedule-content h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--primary-dark);
  line-height: 1.3;
}

.schedule-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 28px 28px 32px;
}

.schedule-list li {
  position: relative;
  padding: 0 0 0 28px;
  margin-bottom: 22px;
}

.schedule-list li:last-child {
  margin-bottom: 0;
}

.schedule-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.schedule-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.4em;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0.05));
}

.schedule-list h4 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.3;
}

.schedule-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-pro {
  background:
    radial-gradient(circle at 4% 8%, rgba(8, 145, 178, 0.18), transparent 20rem),
    radial-gradient(circle at 96% 90%, rgba(249, 115, 22, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.76);
}

.signup-pro {
  align-items: stretch;
}

.signup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--primary-dark), #312e81);
  box-shadow: 0 30px 70px rgba(76, 29, 149, 0.22);
  padding: 46px;
}

.signup-copy .eyebrow,
.signup-copy h2,
.signup-copy p,
.signup-copy .arabic-text {
  color: #fff;
}

.signup-copy .arabic-align {
  margin: -4px 0 20px;
}

.signup-copy .arabic-subtitle {
  max-width: none;
  color: rgba(255, 255, 255, 0.88);
}

.signup-copy .cohort-details span {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.signup-card {
  box-shadow: 0 30px 80px rgba(76, 29, 149, 0.16);
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 5rem;
  }

  .hero,
  .form-section,
  .form-page,
  .about-card,
  .three,
  .four,
  .buy-grid,
  .insight-grid,
  .schedule-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-section {
    padding-block: 72px;
  }

  .process-heading {
    margin-bottom: 36px;
  }

  .schedule-item {
    padding: 18px 0;
  }

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

  .trust-strip-redesign {
    min-height: 80vh;
    padding: 48px 0;
  }

  .trust-inner {
    min-height: calc(80vh - 96px);
  }

  .trust-header {
    margin-bottom: 0;
  }

  .header-bar {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "nav";
    align-items: center;
    gap: 14px 12px;
    width: calc(100% - 24px);
    padding: 14px 0 12px;
  }

  .brand {
    display: none;
  }

  .site-header .nav {
    grid-area: nav;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    overflow: visible;
  }

  .site-header .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    font-size: 0.82rem;
    text-align: center;
  }

  .hero {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 64px 16px 56px;
  }

  .hero::before {
    inset: 0;
    border-radius: 0 0 40px 40px;
  }

  .hero.hero-pro {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 64px 0 56px;
  }

  .hero.hero-pro.hero-book {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-pro::before {
    inset: 0;
    border-radius: 0 0 40px 40px;
  }

  .hero-pro .hero-copy {
    width: 100%;
    max-width: none;
    padding: 12px 16px 16px;
  }

  .hero.hero-pro.hero-book .hero-copy {
    display: contents;
    padding: 0;
  }

  .hero-pro .hero-copy h1 {
    margin-bottom: 22px;
  }

  .hero-pro .hero-copy .arabic-align {
    margin-top: 10px;
    margin-bottom: 22px;
  }

  .hero-pro h1 {
    font-size: clamp(2.5rem, 9.5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .hero-pro .subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .hero-arabic {
    font-size: clamp(1.25rem, 4.8vw, 1.75rem);
    line-height: 1.6;
  }

  .hero-meta.cohort-details-ar {
    margin: -8px 0 20px;
  }

  .cohort-details-badge {
    gap: 8px;
    padding: 10px 14px;
  }

  .cohort-details-main {
    font-size: 0.88rem;
  }

  .cohort-details-sub {
    font-size: 0.82rem;
  }

  .form-intro {
    position: static;
  }

  .hero {
    gap: 28px;
    min-height: auto;
  }

  .section,
  .about-section {
    padding-block: 64px;
  }

  .form-section,
  .form-page {
    gap: 36px;
    padding-block: 64px;
  }

  .about-card {
    gap: 32px;
  }

  .workshop-card {
    min-height: auto;
  }

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

  .dashboard-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .site-header .nav a {
    padding: 9px 6px;
    font-size: 0.78rem;
  }

  .hero-pro .hero-copy {
    width: 100%;
    padding: 16px 20px 20px;
  }

  .hero-pro .hero-copy h1 {
    margin-bottom: 24px;
  }

  .hero-pro .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

  .hero-pro .hero-copy .subtitle {
    margin-top: 4px;
  }

  .hero-pro .hero-copy .arabic-align {
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .hero-pro h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.85rem);
  }

  .hero-pro .eyebrow {
    font-size: 0.72rem;
    padding: 8px 12px;
    letter-spacing: 0.12em;
  }

  .hero-pro .eyebrow-ar {
    gap: 8px;
    padding: 10px 14px;
    letter-spacing: 0;
  }

  .eyebrow-ar-main {
    font-size: 0.88rem;
  }

  .eyebrow-ar-sub {
    font-size: 0.78rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .arabic-align {
    margin: 6px 0 18px;
  }

  .workshop-offer,
  .workshop-offer--compact {
    padding: 12px 13px;
  }

  .footer-links,
  .admin-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero.hero-pro {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .panel,
  .form-card,
  .hero-card,
  .about-card {
    border-radius: 28px;
    padding: 26px;
  }

  .benefit-card,
  .mini-card {
    padding: 26px;
  }

  .muted {
    padding-inline: 24px;
  }

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

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-strip-redesign {
    min-height: 80vh;
    padding: 40px 0;
  }

  .trust-visual img {
    max-height: 160px;
  }

  .trust-card {
    padding: 24px 20px;
  }

  .location-showcase-image {
    height: 140px;
  }

  .location-showcase-content {
    padding: 20px 24px;
  }
}






