:root {
  --primary: #0f62fe;
  --primary-dark: #0948c7;
  --dark: #101827;
  --muted: #5b6472;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #e6eaf0;
  --success: #10b981;
  --shadow: 0 20px 60px rgba(16, 24, 39, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--white);
}
html[lang="ar"] body { font-family: "Noto Kufi Arabic", Inter, sans-serif; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  color: white; background: linear-gradient(135deg, var(--primary), var(--success));
  border-radius: 12px; font-size: 0.9rem;
}
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 600; font-size: 0.94rem; }
.nav-links a:hover { color: var(--primary); }
.lang-toggle {
  border: 1px solid var(--border); background: var(--white); color: var(--dark);
  padding: 10px 15px; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.section { padding: 86px 0; }
.light { background: var(--light); }
.hero { padding: 92px 0 100px; background: radial-gradient(circle at top right, rgba(15, 98, 254, 0.10), transparent 35%), var(--white); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 58px; align-items: center; }
.eyebrow, .section-label {
  color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; margin-bottom: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 1.02; letter-spacing: -0.06em; margin-bottom: 22px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 16px; }
p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.hero-content p { max-width: 650px; font-size: 1.17rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 28px; }
.btn { padding: 14px 22px; border-radius: 14px; font-weight: 800; display: inline-flex; justify-content: center; align-items: center; }
.btn.primary { background: var(--primary); color: var(--white); box-shadow: 0 14px 28px rgba(15, 98, 254, 0.22); }
.btn.primary:hover { background: var(--primary-dark); }
.btn.secondary { border: 1px solid var(--border); background: var(--white); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.92rem; }
.trust-row span { background: var(--light); padding: 9px 12px; border-radius: 999px; }
.hero-card { position: relative; min-height: 500px; display: grid; place-items: center; background: linear-gradient(180deg, #f8fbff, #eef4ff); border: 1px solid var(--border); border-radius: 34px; box-shadow: var(--shadow); overflow: hidden; }
.shirt-preview { width: 310px; height: 370px; position: relative; }
.shirt-body {
  width: 230px; height: 285px; margin: 48px auto 0; background: linear-gradient(150deg, #121827, #1e40af 55%, #10b981);
  border-radius: 38px 38px 28px 28px; color: white; position: relative; display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 30px 70px rgba(16, 24, 39, 0.26);
}
.shirt-body:before, .shirt-body:after { content: ""; position: absolute; top: 34px; width: 86px; height: 152px; background: #15213a; border-radius: 28px; z-index: -1; }
.shirt-body:before { left: -62px; transform: rotate(14deg); }
.shirt-body:after { right: -62px; transform: rotate(-14deg); }
.shirt-collar { width: 60px; height: 32px; background: #f5f7fb; border-radius: 0 0 30px 30px; margin-bottom: 32px; }
.shirt-logo { font-weight: 900; background: rgba(255,255,255,.16); padding: 8px 10px; border-radius: 12px; margin-bottom: 22px; }
.shirt-title { font-weight: 900; letter-spacing: .08em; font-size: .95rem; }
.shirt-number { font-size: 5.8rem; line-height: 1; font-weight: 900; opacity: .92; }
.floating-card { position: absolute; background: white; border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; font-weight: 800; box-shadow: var(--shadow); }
.floating-card.top { top: 42px; left: 34px; }
.floating-card.bottom { bottom: 44px; right: 34px; }
.two-col, .partner-panel, .contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.cards { display: grid; gap: 20px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card, .product-card, .contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 26px; box-shadow: 0 10px 30px rgba(16,24,39,.04); }
.card h3 { margin: 12px 0 8px; }
.card p { font-size: .96rem; margin: 0; }
.icon { font-size: 1.8rem; }
.partner-panel { background: var(--white); border: 1px solid var(--border); border-radius: 32px; padding: 42px; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.check-list li { color: var(--dark); font-weight: 700; }
.check-list li:before { content: "✓"; color: var(--success); margin-inline-end: 10px; font-weight: 900; }
.product-card { min-height: 112px; display: flex; align-items: end; font-weight: 900; font-size: 1.1rem; background: linear-gradient(180deg, #fff, #f7faff); }
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.process div { background: white; border: 1px solid var(--border); padding: 22px; border-radius: 20px; text-align: center; }
.contact { background: var(--dark); color: white; }
.contact p, .contact .section-label { color: #c7d2fe; }
.contact-card { display: grid; gap: 9px; color: var(--dark); }
.contact-card span { color: var(--muted); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-card a { color: var(--primary); font-size: 1.25rem; font-weight: 900; }
.footer { padding: 34px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer p { margin: 0; font-size: .95rem; }
[dir="rtl"] h1, [dir="rtl"] h2 { letter-spacing: -0.02em; }
[dir="rtl"] .hero { background: radial-gradient(circle at top left, rgba(15, 98, 254, 0.10), transparent 35%), var(--white); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .two-col, .partner-panel, .contact-panel { grid-template-columns: 1fr; }
  .cards.four, .cards.three, .process { grid-template-columns: 1fr 1fr; }
  .hero-card { min-height: 430px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1120px); }
  .section { padding: 64px 0; }
  .hero { padding: 62px 0 72px; }
  .cards.four, .cards.three, .process { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .floating-card { display: none; }
  .shirt-preview { transform: scale(.86); }
}
