:root{
  --yellow:#ffd400;
  --yellow-soft:#fff5b8;
  --black:#111111;
  --ink:#1d1d1f;
  --muted:#6f6f73;
  --line:#e8e8ea;
  --surface:#ffffff;
  --surface-2:#f7f7f8;
  --radius:22px;
  --shadow:0 18px 50px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Tajawal",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:#fff;
  color:var(--ink);
  line-height:1.7;
}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px,calc(100% - 32px));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav-wrap{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.25rem;
  font-weight:800;
}
.brand-mark{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  background:var(--yellow);
  color:var(--black);
  font-weight:800;
}
.nav{display:flex;align-items:center;gap:26px;font-weight:600}
.nav a{position:relative}
.nav a::after{
  content:"";
  position:absolute;
  right:0;left:0;bottom:-8px;
  height:3px;border-radius:3px;
  background:var(--yellow);
  transform:scaleX(0);
  transition:.2s ease;
}
.nav a:hover::after{transform:scaleX(1)}
.menu-toggle{
  display:none;
  border:0;background:transparent;
  font-size:1.7rem;cursor:pointer;
}

.hero{
  min-height:640px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,212,0,.28), transparent 32%),
    linear-gradient(180deg,#fff 0%,#fafafa 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:64px;
  align-items:center;
  padding-block:70px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.9rem;
  font-weight:800;
  color:#6f5d00;
  background:var(--yellow-soft);
  padding:7px 12px;
  border-radius:999px;
  margin-bottom:14px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(2.5rem,5vw,4.7rem);
  line-height:1.08;
  margin-bottom:24px;
  letter-spacing:-1px;
}
h1 span{background:linear-gradient(transparent 66%,var(--yellow) 0)}
.hero-copy>p{
  max-width:640px;
  color:var(--muted);
  font-size:1.08rem;
  margin-bottom:30px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:34px}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:50px;
  padding:0 22px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--yellow);color:var(--black)}
.btn-ghost{border-color:var(--line);background:#fff}
.btn-dark{background:var(--black);color:#fff}
.btn-full{width:100%;font-size:1.02rem}

.trust-row{display:flex;gap:28px;flex-wrap:wrap}
.trust-row div{display:flex;flex-direction:column}
.trust-row strong{font-size:1rem}
.trust-row span{font-size:.85rem;color:var(--muted)}

.hero-card{
  position:relative;
  min-height:430px;
  border-radius:36px;
  background:var(--black);
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  width:260px;height:260px;border-radius:50%;
  background:var(--yellow);
  top:-90px;left:-70px;
}
.paper{
  position:absolute;
  width:170px;height:230px;
  background:#fff;border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
.paper-one{transform:rotate(-10deg) translate(-90px,-20px)}
.paper-two{transform:rotate(9deg) translate(80px,-5px);background:#f7f7f7}
.printer{
  position:relative;
  z-index:3;
  width:250px;height:165px;
  background:#2b2b2b;border-radius:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}
.printer-top{
  position:absolute;width:190px;height:85px;
  background:#3d3d3d;border-radius:18px 18px 8px 8px;
  left:30px;top:-45px;
}
.printer-slot{
  position:absolute;top:35px;left:35px;
  width:180px;height:12px;border-radius:8px;background:#111;
}
.printer-sheet{
  position:absolute;
  width:155px;height:175px;
  background:#fff;
  left:48px;top:75px;
  border-radius:0 0 12px 12px;
  padding:20px;
  display:flex;flex-direction:column;
  justify-content:flex-end;
}
.printer-sheet span{font-weight:700;color:#777;letter-spacing:2px}
.printer-sheet strong{font-size:2.7rem;line-height:1;color:#111}
.printer-sheet::before{
  content:"";
  position:absolute;right:20px;left:20px;top:24px;height:10px;
  background:var(--yellow);border-radius:6px;
}

.section{padding:90px 0}
.section-heading{max-width:680px;margin-bottom:40px}
.section-heading h2,.order-intro h2,.about-section h2,.contact-card h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.2;
  margin-bottom:14px;
}
.section-heading p,.order-intro>p,.about-grid>p,.contact-card p{color:var(--muted)}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  position:relative;
  padding:28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  min-height:220px;
  transition:.25s ease;
}
.service-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.service-card.featured{border:2px solid var(--yellow)}
.icon{
  width:54px;height:54px;border-radius:16px;
  background:var(--surface-2);
  display:grid;place-items:center;
  font-size:1.55rem;margin-bottom:18px;
}
.service-card h3{margin-bottom:8px;font-size:1.2rem}
.service-card p{color:var(--muted);margin-bottom:0}
.badge{
  position:absolute;top:18px;left:18px;
  background:var(--yellow);
  color:var(--black);
  border-radius:999px;
  padding:5px 10px;
  font-size:.78rem;font-weight:800;
}

.order-section{background:var(--surface-2)}
.order-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:start;
}
.steps{display:grid;gap:16px;margin-top:30px}
.step{display:flex;align-items:flex-start;gap:14px}
.step>span{
  flex:0 0 38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  background:var(--yellow);font-weight:800;
}
.step div{display:flex;flex-direction:column}
.step small{color:var(--muted);font-size:.9rem}

.order-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:28px;
}
.form-row{display:grid;gap:16px}
.two-cols{grid-template-columns:1fr 1fr}
label{display:block;margin-bottom:16px;font-weight:700}
label>span{display:block;margin-bottom:7px}
input,select,textarea{
  width:100%;
  border:1px solid #dcdce0;
  border-radius:13px;
  background:#fff;
  min-height:48px;
  padding:12px 14px;
  color:var(--ink);
  outline:none;
  transition:.2s ease;
}
textarea{resize:vertical;min-height:130px}
input:focus,select:focus,textarea:focus{
  border-color:#c2a600;
  box-shadow:0 0 0 4px rgba(255,212,0,.22);
}
.file-field small{display:block;color:var(--muted);font-weight:400;margin-top:7px;line-height:1.5}
.form-message{min-height:24px;margin:0 0 10px;color:#b42318;font-weight:700}

.about-section{background:#fff}
.about-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:50px;
  align-items:center;
}
.about-grid p{font-size:1.08rem;margin:0}

.contact-section{padding-top:30px}
.contact-card{
  background:var(--yellow);
  border-radius:30px;
  padding:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.contact-card .eyebrow{background:rgba(255,255,255,.55);color:#111}
.contact-card p{color:#2f2a00;margin-bottom:0}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
}
.footer-wrap{
  display:flex;justify-content:space-between;gap:20px;
  color:var(--muted);font-size:.9rem;
}
.footer strong{color:var(--black)}

@media (max-width: 900px){
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    top:74px;right:16px;left:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav.open{display:flex}
  .nav a{padding:10px 8px}
  .nav a::after{display:none}

  .hero{min-height:auto}
  .hero-grid{grid-template-columns:1fr;gap:34px;padding-block:50px}
  .hero-copy{text-align:center}
  .hero-copy>p{margin-inline:auto}
  .hero-actions,.trust-row{justify-content:center}
  .hero-card{min-height:360px;max-width:620px;width:100%;margin-inline:auto}

  .services-grid{grid-template-columns:repeat(2,1fr)}
  .order-grid{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr;gap:12px}
}

@media (max-width: 640px){
  .container{width:min(100% - 22px,1120px)}
  .section{padding:68px 0}
  h1{font-size:2.55rem}
  .hero-card{min-height:310px;border-radius:28px}
  .printer{transform:scale(.82)}
  .paper{transform-origin:center}
  .paper-one{transform:scale(.82) rotate(-10deg) translate(-90px,-20px)}
  .paper-two{transform:scale(.82) rotate(9deg) translate(80px,-5px)}

  .services-grid{grid-template-columns:1fr}
  .two-cols{grid-template-columns:1fr}
  .order-form{padding:18px;border-radius:22px}
  .contact-card{padding:26px;flex-direction:column;align-items:stretch}
  .footer-wrap{flex-direction:column;text-align:center;gap:4px}
  .btn{width:100%}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important;transition:none!important}
}
