:root{
  --bg:#f7fafc;
  --surface:#ffffff;
  --surface-soft:#f4f9fc;
  --text:#1f2937;
  --muted:#64748b;
  --border:#e2e8f0;
  --blue:#2ea8e5;
  --blue-deep:#1565c0;
  --green:#4caf50;
  --lime:#b8f75a;
  --amber:#f59e0b;
  --shadow:0 16px 40px rgba(15,23,42,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Segoe UI","Cairo",system-ui,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(46,168,229,.12), transparent 28%),
    radial-gradient(circle at top left, rgba(184,247,90,.12), transparent 24%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.landing-shell{
  width:min(100%,1200px);
  margin-inline:auto;
  padding:24px clamp(16px,3vw,32px) 48px;
}

.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  position:sticky;
  top:16px;
  z-index:10;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:56px;
  height:56px;
  object-fit:contain;
  flex-shrink:0;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.brand-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:24px;
  font-weight:800;
  line-height:1.1;
}

.brand-subtitle,.footer-note{
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}

.pro-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--amber),#d97706);
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:1px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:16px;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

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

.lang-toggle{
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  min-width:46px;
  min-height:42px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:24px;
  align-items:start;
  padding:44px 0 28px;
}

.eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--blue-deep);
  text-transform:uppercase;
}

.hero h1,.section h2,.cta-band h2{
  margin:10px 0 10px;
  font-size:clamp(34px,5vw,54px);
  line-height:1.02;
}

.hero-subtitle{
  margin:0 0 14px;
  font-size:18px;
  color:var(--blue-deep);
  font-weight:700;
}

.hero-text,.cta-band p{
  margin:0;
  font-size:16px;
  line-height:1.9;
  color:var(--muted);
}

.hero-support{
  margin:12px 0 0;
  font-size:15px;
  font-weight:700;
  color:var(--text);
  line-height:1.8;
}

.hero-actions,.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.hero-urgency{
  margin-top:16px;
  padding:12px 14px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(184,247,90,.22),rgba(46,168,229,.12));
  border:1px solid rgba(184,247,90,.42);
  font-size:14px;
  font-weight:700;
  color:var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  box-shadow:var(--shadow);
}

.btn-large{
  min-height:54px;
  padding:0 22px;
  font-size:15px;
}

.btn-primary{
  background:linear-gradient(135deg,var(--blue-deep),var(--blue));
  color:#fff;
  transition:transform .18s ease, box-shadow .18s ease;
}

.btn-secondary{
  background:var(--surface);
  color:var(--text);
  border:1px solid var(--border);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary:hover{
  box-shadow:0 20px 42px rgba(21,101,192,.18);
}

.btn-secondary:hover{
  border-color:rgba(46,168,229,.35);
  box-shadow:0 18px 36px rgba(15,23,42,.08);
}

.hero-side-grid,
.feature-grid,
.workflow-grid{
  display:grid;
  gap:16px;
}

.hero-side-grid{
  grid-template-columns:1fr;
}

.hero-highlight,
.feature-card,
.workflow-step,
.cta-band{
  background:var(--surface);
  border:1px solid rgba(226,232,240,.92);
  border-radius:20px;
  box-shadow:var(--shadow);
}

.hero-highlight{
  padding:20px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.hero-highlight-icon,
.feature-icon{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(46,168,229,.12),rgba(184,247,90,.16));
  margin-bottom:14px;
  font-size:23px;
}

.hero-highlight h3,
.feature-card h3,
.workflow-step h3{
  margin:0 0 8px;
  font-size:18px;
}

.hero-highlight p,
.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

.hero-highlight:hover,
.feature-card:hover,
.workflow-step:hover,
.trust-card:hover,
.compare-card:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(15,23,42,.1);
}

.section{
  padding:26px 0;
}

.section-head{
  margin-bottom:18px;
}

.section h2{
  font-size:clamp(28px,4vw,38px);
  margin-bottom:8px;
}

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

.feature-card{
  padding:20px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.split-grid,
.trust-grid,
.compare-grid{
  display:grid;
  gap:16px;
}

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

.info-panel,
.trust-card,
.compare-card{
  background:var(--surface);
  border:1px solid rgba(226,232,240,.92);
  border-radius:20px;
  box-shadow:var(--shadow);
}

.info-panel,
.trust-card,
.compare-card{
  padding:20px;
}

.section-head.compact{
  margin-bottom:14px;
}

.section-head.compact h2{
  font-size:clamp(24px,3vw,32px);
}

.bullet-list{
  display:grid;
  gap:12px;
}

.bullet-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--text);
  font-size:15px;
  line-height:1.8;
}

.bullet-icon{
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  flex:0 0 auto;
  font-size:13px;
  font-weight:800;
}

.bullet-icon.bad{
  background:rgba(220,38,38,.1);
  color:#dc2626;
}

.bullet-icon.good{
  background:rgba(76,175,80,.14);
  color:var(--green);
}

.problem-panel{
  border-color:rgba(245,158,11,.16);
}

.solution-panel{
  border-color:rgba(76,175,80,.16);
}

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

.trust-card{
  transition:transform .2s ease, box-shadow .2s ease;
}

.trust-card h3,
.compare-card h3{
  margin:0 0 8px;
  font-size:18px;
}

.trust-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

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

.compare-card{
  transition:transform .2s ease, box-shadow .2s ease;
}

.compare-before{
  border-color:rgba(245,158,11,.22);
}

.compare-after{
  border-color:rgba(76,175,80,.22);
}

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

.workflow-step{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:150px;
}

.workflow-index{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue-deep),var(--blue));
  color:#fff;
  font-weight:800;
  font-size:14px;
}

.workflow-step h3{
  margin:0;
  line-height:1.6;
}

.early-access-card{
  padding:18px 20px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(46,168,229,.12),rgba(184,247,90,.18));
  border:1px solid rgba(46,168,229,.14);
}

.early-access-title{
  font-size:13px;
  font-weight:800;
  color:var(--blue-deep);
  margin-bottom:6px;
}

.early-access-text{
  color:var(--text);
  font-size:14px;
  line-height:1.7;
}

.pricing-list{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pricing-pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(46,168,229,.16);
  font-size:13px;
  font-weight:700;
}

.early-access-note{
  margin-top:14px;
  font-size:13px;
  color:var(--muted);
  line-height:1.7;
}

.cta-band{
  margin-top:18px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.site-footer{
  margin-top:26px;
  padding:24px 0 12px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:space-between;
  align-items:flex-start;
  color:var(--muted);
}

.footer-links,.footer-contact{
  display:flex;
  flex-direction:column;
  gap:8px;
}

html[dir="rtl"] body{
  text-align:right;
}

html[dir="ltr"] body{
  text-align:left;
}

html[dir="ltr"] .site-header,
html[dir="ltr"] .brand,
html[dir="ltr"] .hero,
html[dir="ltr"] .hero-actions,
html[dir="ltr"] .cta-actions,
html[dir="ltr"] .site-footer{
  direction:ltr;
}

@media (max-width:1023px){
  .hero{
    grid-template-columns:1fr;
  }
  .split-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .compare-grid,
  .workflow-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:767px){
  .landing-shell{
    padding:16px 14px 36px;
  }
  .site-header{
    flex-wrap:wrap;
    justify-content:space-between;
    top:10px;
  }
  .site-nav{
    order:3;
    width:100%;
    justify-content:space-between;
  }
  .brand-logo{
    width:48px;
    height:48px;
  }
  .brand-title{
    font-size:21px;
  }
  .brand-subtitle,.footer-note{
    font-size:12px;
  }
  .feature-grid,
  .split-grid,
  .trust-grid,
  .compare-grid,
  .workflow-grid{
    grid-template-columns:1fr;
  }
  .cta-band,
  .site-footer{
    flex-direction:column;
    align-items:stretch;
  }
  .workflow-step{
    min-height:auto;
  }
}
