:root {
  --ink: #22324a;
  --ink-2: #314461;
  --navy: #38527a;
  --blue: #2f6fe4;
  --blue-2: #2558ba;
  --cyan: #35a7d7;
  --green: #16a085;
  --gold: #c69a4a;
  --cream: #fbf7ef;
  --muted: #64748b;
  --plum: #7c5cff;
  --warm: #fff8ec;
  --muted-2: #8795aa;
  --line: rgba(15, 23, 42, .11);
  --surface: rgba(255, 255, 255, .88);
  --surface-solid: #ffffff;
  --shadow-sm: 0 10px 25px rgba(7, 17, 31, .07);
  --shadow-md: 0 22px 60px rgba(7, 17, 31, .12);
  --shadow-lg: 0 34px 90px rgba(7, 17, 31, .18);
  --radius-lg: 22px;
  --radius-xl: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(37, 99, 235, .14), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(16, 185, 129, .15), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(201, 151, 47, .10), transparent 36%),
    linear-gradient(180deg, #fbfdff 0%, #f7f9ff 45%, #fff8ec 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
body.rtl { font-family: "Noto Kufi Arabic", Tahoma, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; position: relative; z-index: 1; }
.narrow { max-width: 880px; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  backdrop-filter: blur(22px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; }
.brand-logo { width: 52px; height: 52px; border-radius: 18px; box-shadow: 0 16px 34px rgba(7,17,31,.20); flex: 0 0 auto; }
.brand-copy { display: inline-flex; flex-direction: column; line-height: .93; white-space: nowrap; }
.brand-name { font-size: 22px; font-weight: 950; letter-spacing: -.055em; color: var(--ink); }
.brand-accent { margin-top: 5px; font-size: 13px; font-weight: 950; letter-spacing: .26em; text-transform: uppercase; color: var(--blue); }
.navlinks { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.navlinks a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #475569;
  font-size: 14px;
  font-weight: 850;
  transition: .18s ease;
}
.navlinks a:hover { background: rgba(37, 99, 235, .09); color: var(--blue); }
.navlinks .nav-cta { background: linear-gradient(135deg, var(--blue), var(--plum)); color: white; box-shadow: 0 14px 28px rgba(47,111,228,.22); padding-inline: 16px; }
.navlinks .nav-cta:hover { background: linear-gradient(135deg, #2558ba, #684ee5); color: white; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(7,17,31,.04);
}
.lang-switch a { padding: 7px 9px; font-size: 12px; font-weight: 950; color: #64748b; }
.lang-switch a.active { background: linear-gradient(135deg, var(--blue), var(--green)); color: #fff; }

.hero { padding: 82px 0 52px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 430px; gap: 38px; align-items: center; }
.hero-copy { position: relative; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(37, 99, 235, .16);
  background: rgba(255,255,255,.82);
  border-radius: 999px;
  color: #31516f;
  font-weight: 950;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}
.badge-dot { width: 10px; height: 10px; border-radius: 99px; background: var(--green); box-shadow: 0 0 0 7px rgba(16,185,129,.13); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  font-size: clamp(43px, 7.2vw, 88px);
  line-height: .91;
  letter-spacing: -.078em;
  margin: 24px 0 20px;
  max-width: 830px;
}
.rtl h1 { letter-spacing: -.035em; line-height: 1.04; }
h2 { letter-spacing: -.045em; }
.rtl h2 { letter-spacing: -.02em; }
.gradient-text {
  background: linear-gradient(135deg, #174ea6 0%, var(--blue) 35%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { max-width: 710px; margin: 0; color: #526177; font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.ai-note {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 720px;
  padding: 14px 16px;
  border: 1px solid rgba(201,151,47,.24);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,248,230,.78));
  box-shadow: 0 18px 42px rgba(201,151,47,.09);
  color: #536171;
  line-height: 1.65;
}
.ai-note strong {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #3d5c8c, var(--plum));
  color: #fff;
  letter-spacing: -.04em;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.trust-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,23,42,.08);
  color: #405066;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(7,17,31,.05);
}
.trust-pill::before { content:""; width:7px; height:7px; border-radius:99px; background: var(--green); }
.disclaimer-text { margin-top: 16px; }

.card, .panel, .pricing-panel, .step, .policy, .pricing-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.card {
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.card::before { content:""; position:absolute; inset:0 0 auto 0; height:6px; background: linear-gradient(90deg, var(--blue), var(--green), var(--gold)); }
.order-card { align-self: stretch; }
.card h2 { margin: 4px 0 8px; font-size: 28px; }
.card .small { margin-top: 0; }
.form-row { display: grid; gap: 9px; margin: 16px 0; }
label { font-weight: 950; font-size: 14px; color: #1a2840; }
input {
  width: 100%;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  transition: .18s ease;
}
input:focus { border-color: rgba(37,99,235,.70); box-shadow: 0 0 0 5px rgba(37,99,235,.12); background: #fff; }
.btn {
  appearance: none;
  border: 0;
  border-radius: 18px;
  padding: 15px 18px;
  font-weight: 950;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
}
.card .btn { width: 100%; margin-top: 8px; }
.btn:hover:not(:disabled) { transform: translateY(-1px); }
.btn:disabled { opacity: .72; cursor: not-allowed; transform: none; }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; box-shadow: 0 18px 40px rgba(37,99,235,.28); }
.btn-green { background: linear-gradient(135deg, var(--green), #128057); color: #fff; box-shadow: 0 18px 40px rgba(16,185,129,.24); }
.btn-muted { background: #e8edf5; color: #6d7a8e; box-shadow: none; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(7,17,31,.05); }
.btn-dark { background: linear-gradient(135deg, #3d5c8c, var(--plum)); color: #fff; box-shadow: 0 18px 40px rgba(61,92,140,.22); }
.small { font-size: 13px; color: var(--muted); line-height: 1.65; }
.status { padding:13px 14px; border-radius:16px; background:#f2f6fb; margin:12px 0; font-size:14px; color:#334155; border:1px solid rgba(15,23,42,.07); line-height: 1.6; }
.status.ok { background:#ecfdf5; color:#047857; border-color: rgba(4,120,87,.14); }
.status.err { background:#fef2f2; color:#b91c1c; border-color: rgba(185,28,28,.14); }

.section { padding: 58px 0; }
.section-header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:24px; }
.section-header h2 { margin:0; font-size: clamp(30px, 4vw, 50px); line-height:1.02; }
.section-header p { margin:0; max-width: 530px; color: var(--muted); line-height:1.7; }
.feature-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
.panel { border-radius: 28px; padding: 26px; }
.panel h3 { margin:0 0 8px; font-size:21px; }
.panel p { margin:0; color:var(--muted); line-height:1.62; }
.icon-box { width:44px; height:44px; border-radius:16px; display:grid; place-items:center; margin-bottom:14px; background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.14)); color: var(--blue); font-weight:950; }
.ai-panel { border-color: rgba(201,151,47,.22); background: linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,250,236,.86)); }

.dark-band {
  margin: 30px auto 0;
  width: min(1180px, calc(100% - 40px));
  border-radius: 38px;
  padding: 36px;
  background:
    radial-gradient(circle at 10% 0%, rgba(37,99,235,.32), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(16,185,129,.27), transparent 30%),
    linear-gradient(135deg, #425f8f, #526fa3 58%, #5f7db4);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.dark-band .section-header p, .dark-band .small { color: rgba(255,255,255,.72); }
.dark-band .eyebrow { color: #93c5fd; }
.steps { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.step { border-radius: 28px; padding: 26px; }
.num { width:42px; height:42px; border-radius:15px; display:grid; place-items:center; font-weight:950; background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(16,185,129,.14)); color:var(--blue); margin-bottom:15px; }
.step h3 { margin:0 0 8px; font-size:22px; }
.step p { margin:0; color:var(--muted); line-height:1.62; }
.dark-band .step { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.10); box-shadow: none; }
.dark-band .step p { color: rgba(255,255,255,.72); }
.dark-band .num { background: rgba(255,255,255,.12); color: #fff; }

.eyebrow { margin:0 0 8px; text-transform:uppercase; letter-spacing:.14em; font-size:12px; font-weight:950; color:var(--blue); }
.pricing-section { padding-top: 28px; }
.pricing-card { display:flex; align-items:center; justify-content:space-between; gap:28px; border-radius:34px; padding:32px; }
.pricing-card h2 { margin:0 0 8px; font-size:34px; }
.price-box { display:grid; gap:10px; min-width:230px; text-align:center; }
.price { font-size:60px; line-height:1; font-weight:950; letter-spacing:-.08em; color:var(--ink); }
.price-note { font-size:13px; color:var(--muted); font-weight:850; }
.page-hero { padding: 64px 0 24px; }
.compact-hero { padding-bottom: 8px; }
.page-hero h1 { margin:22px 0 12px; font-size: clamp(42px, 7vw, 72px); }
.pricing-layout { display:grid; grid-template-columns: 1.05fr .95fr; gap:18px; align-items:stretch; }
.pricing-panel { border-radius:28px; padding:28px; }
.pricing-panel.featured { grid-row: span 3; border-color:rgba(37,99,235,.24); box-shadow: 0 30px 74px rgba(37,99,235,.13); }
.pricing-panel h2 { margin:0 0 12px; font-size:26px; }
.pricing-panel p { color: #526177; line-height: 1.72; }
.large-price { font-size:78px; line-height:1; font-weight:950; letter-spacing:-.08em; margin:18px 0; background:linear-gradient(135deg, var(--blue), var(--green)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.clean-list { padding-left: 20px; color:var(--muted); line-height:1.9; }
.rtl .clean-list { padding-left: 0; padding-right: 20px; }
.ai-pricing-panel { background: linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,250,236,.86)); border-color: rgba(201,151,47,.22); }
.notice-panel { border-color: rgba(15,23,42,.08); }

.policy { max-width: 920px; border-radius: 32px; padding: 36px; margin: 34px auto 66px; line-height: 1.78; }
.status-card-large { min-height: 340px; }
.policy h1 { font-size: clamp(38px, 6vw, 58px); line-height: .98; letter-spacing:-.06em; margin: 0 0 14px; }
.rtl .policy h1 { letter-spacing: -.02em; line-height: 1.08; }
.policy h2 { font-size: 23px; margin-top: 30px; color: var(--ink); }
.policy p, .policy li { color: #526177; }
.policy a:not(.btn) { color: var(--blue); font-weight: 850; }
.policy-top { border-bottom: 1px solid var(--line); padding-bottom: 20px; margin-bottom: 22px; }

.footer { border-top:1px solid rgba(15,23,42,.08); padding:28px 0; color:var(--muted); font-size:14px; background: rgba(255,255,255,.68); position: relative; z-index: 1; }
.footer-grid { display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap; }
.footer-links { display:flex; gap:12px; flex-wrap:wrap; }
.footer-links a { color:#3a4659; font-weight:850; }
.footer-links a:hover { color:var(--blue); }

.rtl .brand, .rtl .navlinks, .rtl .hero-actions, .rtl .trust-row, .rtl .ai-note { direction: rtl; }
.rtl input { direction: rtl; }
.rtl input[type=email] { direction: ltr; text-align: right; }
.rtl .price-box { text-align: right; }

@media (max-width: 1100px) {
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .container { width: min(100% - 30px, var(--container)); }
  .hero { padding-top: 46px; }
  .hero-grid, .steps, .feature-grid, .pricing-layout { grid-template-columns: 1fr; }
  .pricing-panel.featured { grid-row:auto; }
  .section-header, .pricing-card { flex-direction: column; align-items: flex-start; }
  .price-box { width: 100%; text-align: left; }
  .rtl .price-box { text-align: right; }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; min-height: auto; }
  .navlinks { justify-content: flex-start; width: 100%; }
  .navlinks a { padding: 9px 10px; }
  .navlinks .nav-cta { width: 100%; justify-content: center; margin-top: 4px; }
  .dark-band { width: min(100% - 30px, 1180px); padding: 28px; border-radius: 30px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 22px, var(--container)); }
  .brand-logo { width: 46px; height: 46px; border-radius: 16px; }
  .brand-name { font-size: 19px; }
  .brand-accent { font-size: 11px; }
  .navlinks { gap: 4px; }
  .navlinks a { font-size: 13px; padding: 8px 9px; }
  .lang-switch { order: 20; width: 100%; justify-content: center; }
  .lang-switch a { flex: 1; text-align: center; }
  h1 { font-size: clamp(38px, 13vw, 58px); letter-spacing: -.06em; }
  .hero { padding: 34px 0 34px; }
  .hero-grid { gap: 24px; }
  .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .card, .policy, .pricing-panel, .pricing-card, .panel, .step { padding: 22px; border-radius: 24px; }
  .dark-band { padding: 22px; border-radius: 26px; }
  .section { padding: 42px 0; }
  .section-header h2 { font-size: 30px; }
  .page-hero { padding-top: 42px; }
  .large-price, .price { font-size: 56px; }
  .ai-note { flex-direction: column; }
  .footer-grid { align-items: flex-start; }
}


/* Premium friendliness refresh */
.brand-logo {
  box-shadow: 0 18px 34px rgba(47, 111, 228, .20), 0 6px 14px rgba(22,160,133,.10);
}
.brand-name {
  background: linear-gradient(135deg, #2b3f5e 0%, #2f6fe4 56%, #16a085 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-wrap {
  background: rgba(255, 255, 255, .86);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 120px auto auto 52%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47,111,228,.12), transparent 68%);
  filter: blur(2px);
  pointer-events: none;
}
.hero { position: relative; }
.order-card {
  border: 1px solid rgba(47,111,228,.14);
  background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(250,253,255,.91) 58%, rgba(255,248,236,.83));
}
.card::before {
  background: linear-gradient(90deg, #2f6fe4, #7c5cff, #16a085, #c69a4a);
}
.phase-note {
  margin-top: 14px !important;
  padding: 14px 15px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47,111,228,.08), rgba(22,160,133,.09));
  border: 1px solid rgba(47,111,228,.13);
  color: #3b4b63;
  font-weight: 700;
}
.phase-note::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-inline-end: 8px;
  border-radius: 999px;
  background: rgba(22,160,133,.14);
  color: #0f8a72;
  font-weight: 900;
}
.rtl .phase-note::before { margin-inline-end: 0; margin-inline-start: 8px; }
.btn-primary {
  background: linear-gradient(135deg, #2f6fe4, #7c5cff);
  box-shadow: 0 18px 40px rgba(47,111,228,.25);
}
.btn-green {
  background: linear-gradient(135deg, #16a085, #31bf9e);
  box-shadow: 0 18px 40px rgba(22,160,133,.22);
}
.btn-outline {
  color: #2c3d58;
}
.badge, .trust-pill, .lang-switch, input, .status {
  border-color: rgba(47,111,228,.10);
}
.panel, .step, .pricing-panel, .pricing-card, .policy {
  border: 1px solid rgba(47,111,228,.10);
}
.dark-band {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.18), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(22,160,133,.32), transparent 30%),
    linear-gradient(135deg, #3d5c8c, #526fa3 58%, #6f7fd0);
}
.dark-band .step {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}
.price { color: #2f405c; }
.policy h2 { color: #2b3f5e; }
.footer {
  background: rgba(255, 255, 255, .82);
}
@media (max-width: 940px) {
  .nav {
    gap: 12px;
  }
  .brand {
    width: 100%;
  }
  .navlinks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .navlinks a {
    text-align: center;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(47,111,228,.08);
  }
  .navlinks .nav-cta { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .navlinks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lang-switch {
    grid-column: 1 / -1;
  }
  .hero-copy .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  h1 {
    line-height: 1;
  }
  .card .btn { min-height: 54px; }
  .phase-note { font-size: 13px; }
}
