
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
  font-family: 'Google Sans', Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  direction: rtl;
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}

/* ── Top bar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 3.5rem;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #1a1a1a;
  line-height: 1.2;
}
.logo span {
  display: inline-block;
  padding-right: 1.2em;
}
.logo .tagline {
  font-size: 0.9rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.02em;
  vertical-align: middle;
  padding-right: 0.5rem;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.topbar-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}
.topbar-link:hover { color: #333; }

.topbar-cta {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}
.topbar-cta:hover { opacity: 0.6; }

.cred-uni { display: inline; }
@media (max-width: 760px) {
  .cred-uni { display: block; }
}

/* ── Hero ── */
.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1a1a1a;
  background: #f0f0ee;
  padding: 0.45rem 1.3rem;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hero-title .accent { color: #1a1a1a; }

.hero-sub {
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.7;
  max-width: 560px;
}

/* ── Section wrapper ── */
.section {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 3.5rem;
}

.section-label {
  font-size: 0.85rem;
  color: #aaa;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

/* ── Feature cards ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: #ddd;
  box-shadow: 0 16px 28px -18px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f5f5f3;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 { font-size: 1.15rem; font-weight: 700; }
.feature-card p { font-size: 0.9rem; color: #666; line-height: 1.65; flex: 1; }
.feature-link { font-size: 0.9rem; font-weight: 700; color: #1a1a1a; }

/* ── Divider ── */
hr { border: none; border-top: 1px solid #eee; margin: 0 3.5rem; }

/* ── Tracks ── */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.track-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 1.8rem;
  transition: border-color 0.15s;
}
.track-card:hover { border-color: #ddd; }

.track-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.track-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.track-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.track-items li {
  font-size: 0.88rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.track-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a1a1a;
  flex-shrink: 0;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 1px;
  background: #eee;
}

.step { text-align: right; position: relative; }

.step-num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #f5f5f3;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #888;
  margin: 0 auto 1.1rem;
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.step p { font-size: 0.88rem; color: #777; line-height: 1.65; max-width: 200px; margin: 0; }

/* ── CTA Banner ── */
/* Pricing */
.pricing-section { border-top: 1px solid #eee; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-card {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-card.featured { border-color: #1a1a1a; background: #fafafa; }
.pricing-name { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; }
.pricing-tagline { font-size: 0.88rem; color: #888; line-height: 1.6; }
.pricing-features {
  list-style: none; padding: 0; margin: 0.4rem 0 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.pricing-features li { font-size: 0.9rem; color: #444; display: flex; align-items: flex-start; gap: 0.5rem; }
.pricing-features li::before { content: "✓"; color: #1a1a1a; font-weight: 700; flex-shrink: 0; }
.pricing-cta { margin-top: auto; padding-top: 1.2rem; }
.pricing-cta a {
  display: inline-block;
  background: #1a1a1a; color: #fff; text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.7rem 1.8rem; border-radius: 8px; transition: opacity 0.15s;
}
.pricing-cta a:hover { opacity: 0.8; }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.cta-banner {
  max-width: 820px;
  margin: 0 auto 5rem;
  padding: 0 3.5rem;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  border-top: 1px solid #eee;
  padding: 4rem 0;
  text-align: right;
}
.cta-inner h2 { font-size: 2.8rem; font-weight: 800; color: #1a1a1a; }
.cta-inner p { color: #666; max-width: 400px; line-height: 1.7; font-size: 0.95rem; }
.cta-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  margin-top: 0.4rem;
  transition: opacity 0.15s;
}
.cta-btn:hover { opacity: 0.82; }

/* ── Footer ── */
footer.site-footer {
  background: #0a0a0a;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 3.5rem 3.5rem 2rem;
  font-size: 0.95rem;
}
.footer-col {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-heading {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.85;
  transition: opacity 0.12s;
}
.footer-col a:hover { opacity: 1; }
.footer-title { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.05em; color: #ffffff; }
.footer-promo .footer-title { font-weight: 400; }
.footer-brand-logo { font-size: 2.6rem; color: #ffffff; }
.footer-brand-logo span { display: inline-block; padding-right: 1.2em; }
.footer-brand-logo .footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 400; letter-spacing: 0.02em; vertical-align: middle; padding-right: 0.5rem; }
.footer-promo { border-right: 1px solid rgba(255,255,255,0.15); padding-right: 2rem; }
.footer-bottom-row {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .topbar { padding: 0.7rem 1.1rem; }
  .topbar-links { display: none; }
  .hero, .section, .cta-banner { padding-right: 1.5rem; padding-left: 1.5rem; }
  .feature-grid, .tracks-grid, .steps-grid { grid-template-columns: 1fr; }
  .carousel-wrap-video { padding: 0 0.5rem; }
  .carousel-btn-side-right { right: 0; }
  .carousel-btn-side-left { left: 0; }
  .testimonial-block { width: 260px; }
  .steps-grid::before { display: none; }
  footer.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.5rem; padding: 1.8rem 1.4rem 1.2rem; text-align: right; }
  .footer-brand { grid-column: 1 / -1; text-align: right; }
  .footer-bottom-row { grid-column: 1 / -1; flex-direction: column; gap: 0.8rem; align-items: center; }
  .footer-brand-logo { font-size: 2rem; }
  .footer-col { min-width: unset; }
  .footer-promo { border-right: none; padding-right: 0; }
  hr { margin: 0 1.5rem; }
}

.section-heading {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  max-width: 680px;
}

/* Carousel */
.carousel-wrap { position: relative; margin-bottom: 2.5rem; }
.carousel-track-outer { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 1.1rem;
  transition: transform 0.35s ease;
  direction: ltr;
}
.carousel-card {
  flex-shrink: 0;
  width: 214px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 0.8rem 0.8rem 0;
  display: flex;
  flex-direction: column;
}
.carousel-card img,
.carousel-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #000;
  border-radius: 10px;
}
.carousel-caption {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.carousel-name {
  font-weight: 700;
  font-size: 1.45rem;
  color: #1a1a1a;
}
.carousel-improvement {
  font-size: 1.18rem;
  line-height: 1.4;
  color: #666;
}
.carousel-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 0.15rem;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.carousel-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.carousel-btn:hover { background: #444; }
.carousel-btn:disabled { background: #ccc; cursor: default; }

#testimonials { padding-bottom: 8rem; max-width: 1360px; }

/* Testimonial blocks */
.carousel-wrap + .carousel-wrap { margin-top: 2.5rem; }
.carousel-wrap-video { padding: 0 2.8rem; }
@media (max-width: 760px) {
  .carousel-wrap-video { padding: 0 0.5rem; }
}
.carousel-btn-side {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
}
.carousel-btn-side-right { right: 0; }
.carousel-btn-side-left { left: 0; }
.testimonial-block {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 320px;
  background: #faf8fd;
  border: 1px solid #ded6ee;
  border-radius: 18px;
  padding: 1.7rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  direction: rtl;
}
.testimonial-num {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a8fc4;
}
.testimonial-title { font-weight: 700; font-size: 1.05rem; color: #1a1a1a; text-align: right; }
.testimonial-subtitle { font-size: 0.82rem; color: #555; text-align: right; }
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #333;
  margin: 0;
  text-align: right;
  overflow-y: auto;
  flex: 1;
}
.testimonial-video-wrap { display: flex; justify-content: center; }
.testimonial-video-wrap video {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  display: block;
}

/* Section link */
.section-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  text-decoration: none;
}
.section-link:hover { text-decoration: underline; }

/* FAQ */
.faq-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  padding: 1.4rem 0 0.5rem;
}
.faq .faq-item {
  border-bottom: 1px solid #eee;
}

.faq .faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: right;
  gap: 1rem;
}
.faq .faq-q:hover { color: #888; }
.faq-chevron { font-size: 0.75rem; color: #aaa; flex-shrink: 0; transition: transform 0.2s; }
.faq .faq-a {
  display: none;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  padding-bottom: 1.1rem;
  max-width: 680px;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

@media (max-width: 760px) {
  .carousel-card { width: 130px; }
  .faq .faq-q { font-size: 1.1rem; font-weight: 700; }
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: border-color 0.12s, color 0.12s;
}
.social-link:hover { border-color: #ffffff; color: #ffffff; }
.social-link svg { width: 18px; height: 18px; }

.about-name-line {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.about-role-line {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 1.4rem;
}
.about-paras {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 680px;
}
.about-paras p {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.8;
}

.about-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.about-photo {
  flex-shrink: 0;
  width: 200px;
  border-radius: 12px;
  border: 1px solid #eee;
}
.about-divider-para {
  margin-top: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid #eee;
}

/* Feature rows */
.section.feature-section {
  max-width: 820px;
  border-top: 1px solid #eee;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3.5rem 0;
  direction: ltr;
}
.feature-row.flip { flex-direction: row-reverse; }
.feature-row + .feature-row { border-top: 1px solid #eee; }
.feature-screen {
  flex: 0 0 62%;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid #eee;
}
.feature-screen img { width: 100%; display: block; }
.feature-copy { flex: 1; min-width: 0; direction: rtl; }
.feature-copy .feature-headline {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 0.85rem;
}
.feature-body {
  font-size: 1.15rem;
  color: #1a1a1a;
  line-height: 1.8;
}
@media (max-width: 800px) {
  .feature-row, .feature-row.flip { flex-direction: column; direction: rtl; }
  .feature-screen { flex: none; width: 100%; }
}

/* ====== BRILLIANT-INSPIRED LIGHT THEME ====== */
:root {
  --bg: #ffffff;
  --surface: #f7f8fa;
  --border: #e8eaed;
  --text: #1a1a1a;
  --muted: #6b7280;
  --accent: #1a1a1a;
}

body { background: var(--bg); color: var(--text); }
hr { border-color: var(--border); margin: 0; }

/* Topbar */
.topbar { background: var(--bg); border-bottom: 1px solid var(--border); }

/* Hero */
.hero { padding: 5rem 2rem 3.5rem; max-width: 820px; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.hero-title .accent { color: var(--accent); }
.hero-sub { color: #1a1a1a; font-size: 1.2rem; }
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-top: 0.5rem;
}
.hero-cta:hover { opacity: 0.85; }

/* Sections */
.section { padding: 5.5rem 3.5rem; }
.section-heading { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.section-label { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.15em; font-weight: 700; }
.section-body { color: var(--muted); font-size: 1.1rem; line-height: 1.75; }

/* Feature rows */
.section.feature-section { border-color: var(--border); }
.feature-row + .feature-row { border-color: var(--border); }
.feature-row { padding: 4.5rem 0; }
.feature-headline { color: var(--text); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; }
.feature-body { color: #1a1a1a; font-size: 1.15rem; line-height: 1.85; }
.feature-screen { border-color: var(--border); }

/* Steps */
.step-num {
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 2.8rem;
}
.steps-grid::before { background: var(--border); }
.step h3 { color: var(--text); font-size: 1.1rem; font-weight: 700; margin-top: 0.75rem; }
.step p { color: var(--muted); }

/* Carousel */
.carousel-card { background: var(--surface); border-color: var(--border); }
.carousel-improvement { color: #1a1a1a; }
.carousel-btn { background: var(--text); color: #fff; }
.carousel-btn:hover { background: #333; }
.carousel-btn:disabled { background: #ccc; }

/* About */
.about-role-line { color: var(--muted); }
.about-paras p { color: #1a1a1a; }
.about-divider-para { border-color: var(--border); }

/* FAQ */
.faq-group-title { color: var(--accent); letter-spacing: 0.12em; }
.faq .faq-item { border-color: var(--border); }
.faq .faq-q { color: var(--text); }
.faq .faq-a { color: var(--muted); }

/* Pricing */
.pricing-card { background: var(--surface); border-color: var(--border); }
.pricing-card.featured { background: #fafaf8; border-color: #1a1a1a; }
.pricing-name { font-size: 1.5rem; font-weight: 800; }
.pricing-features li { color: var(--muted); }
.pricing-features li::before { color: var(--accent); }
.pricing-cta a { color: var(--accent); font-weight: 700; }

/* CTA banner */
.cta-inner h2 { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; }
.cta-inner p { color: var(--muted); font-size: 1.1rem; }
.cta-btn { background: #2F6FED; border: none; font-size: 1.05rem; color: #fff; }
.cta-btn:hover { opacity: 0.85; }
