* {
  box-sizing: border-box;
}

:root {
  --blue: #1f63b5;
  --blue-dark: #143f7d;
  --blue-soft: #e9f5ff;
  --sky: #cfeaff;
  --cream: #fff7e8;
  --text: #17324d;
  --muted: #5f7185;
  --border: #d9e7f4;
  --shadow: 0 18px 45px rgba(33, 93, 161, 0.16);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  direction: rtl;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 244, 205, 0.9), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(198, 232, 255, 0.9), transparent 26rem),
    linear-gradient(180deg, #f7fbff 0%, #fffaf2 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 231, 244, 0.85);
}

.logo {
  font-weight: 900;
  text-decoration: none;
  color: var(--blue-dark);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue);
}

.section-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3.2rem, 8vw, 6rem) 0 2.4rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.14;
  color: var(--blue-dark);
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
  color: var(--blue-dark);
}

.lead {
  max-width: 46rem;
  font-size: 1.22rem;
  color: #314b68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 26px rgba(31, 99, 181, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  background: white;
  border-color: var(--border);
}

.button.ghost {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: #b9daf6;
}

.note,
.small {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-card {
  position: relative;
  padding: 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(31, 99, 181, 0.16), rgba(255, 200, 92, 0.18));
  border-radius: 42px;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 0 2.4rem;
}

.stats div {
  padding: 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(33, 93, 161, 0.08);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--blue-dark);
  font-size: 1.16rem;
}

.stats span {
  color: var(--muted);
  font-weight: 600;
}

.why,
.about,
.audience,
.inside,
.proof,
.examples,
.join,
.contact,
.faq,
.final-cta {
  padding: clamp(2.6rem, 7vw, 5rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.7rem;
}

.section-heading.centered {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.about-box,
.purpose-box,
.join-card,
.contact-panel,
.final-cta,
.mini-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-box,
.purpose-box {
  padding: clamp(1.5rem, 4vw, 2.2rem);
  font-size: 1.13rem;
}

.purpose-box {
  max-width: 900px;
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(233,245,255,0.96));
}

.about-box p:last-child,
.purpose-box p:last-child {
  margin-bottom: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-card {
  padding: 1.35rem;
}

.mini-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.info-card {
  padding: 1.35rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(33, 93, 161, 0.08);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
}

.info-card p,
.gallery-card p,
.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  background: linear-gradient(180deg, rgba(233,245,255,0.45), rgba(255,250,242,0.2));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  padding: 1.4rem 1.25rem 1.25rem;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: -1.15rem;
  right: 1rem;
  margin: 0;
  font-size: 5rem;
  line-height: 1;
  color: rgba(31, 99, 181, 0.12);
  font-weight: 900;
}

.quote-text {
  position: relative;
  margin-bottom: 1rem;
  color: #243f5a;
  font-size: 1.05rem;
  font-weight: 800;
}

.quote-source {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(33, 93, 161, 0.1);
}

.gallery-card img {
  width: 100%;
  height: auto;
  background: #f8fbff;
}

.gallery-text {
  padding: 1rem 1.1rem 1.2rem;
}

.card-tag {
  margin-bottom: 0.35rem;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.95rem;
}

.join-card {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(233,245,255,0.96));
}

.steps {
  margin: 1rem 0 0;
  padding-right: 1.35rem;
  color: #314b68;
  font-weight: 600;
}

.join-actions {
  display: grid;
  gap: 0.85rem;
}

.join-actions .button,
.contact-actions .button {
  width: 100%;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.email-title {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-weight: 700;
}

.email-line {
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.email-line a,
.footer a {
  color: var(--blue-dark);
  text-decoration: none;
}

.email-line a:hover,
.footer a:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  box-shadow: 0 8px 24px rgba(33, 93, 161, 0.07);
}

summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

details p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding-inline: clamp(1.4rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.final-cta p {
  color: var(--muted);
  font-size: 1.12rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 4vw, 3rem);
  color: #7890a8;
  background: white;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .testimonials-grid,
  .gallery-large,
  .cards-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .hero,
  .join-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .testimonials-grid,
  .gallery-large,
  .cards-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
