:root{
  --primary:#facc15;
  --primary-dark:#eab308;
  --danger:#dc2626;
  --danger-dark:#b91c1c;

  --text:#1f2937;
  --muted:#6b7280;
  --muted-soft:#94a3b8;

  --bg:#f7f8fa;
  --bg-soft:#f3f4f6;
  --surface:#ffffff;
  --surface-2:#fcfcfd;
  --border:#e5e7eb;

  --shadow:0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-md:0 14px 35px rgba(15, 23, 42, 0.08);
  --radius:22px;
  --radius-sm:16px;

  --container:1180px;
  --transition:.25s ease;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Tahoma, Arial, sans-serif;
  direction:rtl;
  color:var(--text);
  line-height:1.9;
  background:
    radial-gradient(circle at top right, rgba(250,204,21,.10), transparent 18%),
    linear-gradient(180deg, #fafafa 0%, #f5f6f8 100%);
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.section{
  padding:80px 0;
}

/* top stripe */
.top-stripe{
  height:14px;
  background:
    repeating-linear-gradient(
      -45deg,
      #111827 0 14px,
      #111827 14px 28px,
      #facc15 28px 42px,
      #facc15 42px 56px
    );
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.brand-logo{
  width:48px;
  height:48px;
  object-fit:contain;
  display:block;
  flex:0 0 auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.brand-text strong{
  font-size:16px;
  color:#111;
}

.brand-text small{
  font-size:12px;
  color:#666;
}

@media (max-width: 768px){
  .brand-logo{
    width:40px;
    height:40px;
  }

  .brand-text strong{
    font-size:14px;
  }

  .brand-text small{
    font-size:11px;
  }
}

.brand-badge{
  width:48px;
  height:48px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, #111827, #374151);
  color:#fff;
  font-weight:900;
  box-shadow:var(--shadow);
}



.nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav a{
  font-size:15px;
  font-weight:700;
  color:#374151;
  transition:var(--transition);
}

.nav a:hover{
  color:var(--danger);
}

.nav-cta{
  color:var(--danger) !important;
}

.menu-btn{
  display:none;
  width:46px;
  height:46px;
  border:none;
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.menu-btn span{
  width:20px;
  height:2px;
  background:#111827;
  border-radius:999px;
  display:block;
}

/* hero */
.hero{
  padding:56px 0 30px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .85fr;
  gap:24px;
  align-items:stretch;
}

.hero-content{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border:1px solid rgba(0,0,0,.05);
  border-radius:30px;
  padding:38px;
  box-shadow:var(--shadow-md);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  background:#fff7d6;
  color:#8a5a00;
  border:1px solid #f9df7a;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.hero h1{
  margin:0 0 18px;
  font-size:44px;
  line-height:1.5;
  color:#111827;
}

.hero h1 span{
  color:var(--danger);
}

.hero-text{
  margin:0;
  color:#4b5563;
  font-size:16px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:14px;
  font-weight:800;
  transition:var(--transition);
}

.btn-primary{
  background:linear-gradient(135deg, var(--danger), var(--danger-dark));
  color:#fff;
  box-shadow:0 10px 24px rgba(220,38,38,.18);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  background:#fff;
  color:#111827;
  border:1px solid var(--border);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.hero-pills span{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  color:#475569;
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
}

.hero-visual{
  display:flex;
}

.hero-card-main{
  width:100%;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg, #1f2937 0%, #111827 100%);
  color:#fff;
  box-shadow:0 20px 45px rgba(17,24,39,.18);
  position:relative;
}

.hero-card-main::before{
  content:"";
  display:block;
  height:16px;
  background:
    repeating-linear-gradient(
      -45deg,
      #111827 0 14px,
      #111827 14px 28px,
      #facc15 28px 42px,
      #facc15 42px 56px
    );
}

.hero-card-header{
  display:flex;
  align-items:center;
  gap:10px;
  padding:20px 24px 10px;
  color:#f3f4f6;
}

.status-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 6px rgba(34,197,94,.15);
}

.hero-card-body{
  padding:6px 24px 18px;
}

.hero-card-body h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.6;
  color:#fff;
}

.hero-card-body p{
  margin:0;
  color:#d1d5db;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  padding:0 24px 24px;
}

.stat-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
}

.stat-box span{
  display:block;
  font-size:12px;
  color:#cbd5e1;
  margin-bottom:6px;
}

.stat-box strong{
  font-size:15px;
  color:#fff;
}

/* trust */
.trust-bar{
  padding:18px 0 6px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.trust-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.trust-item::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:6px;
  background:
    repeating-linear-gradient(
      -45deg,
      #111827 0 12px,
      #111827 12px 24px,
      #facc15 24px 36px,
      #facc15 36px 48px
    );
}

.trust-item strong{
  display:block;
  margin:8px 0 6px;
  color:#111827;
  font-size:16px;
}

.trust-item span{
  color:var(--muted);
  font-size:14px;
}

/* section head */
.section-head{
  max-width:780px;
  margin:0 auto 34px;
  text-align:center;
}

.section-head span{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:#fff7d6;
  color:#8a5a00;
  border:1px solid #f7df85;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}

.section-head h2{
  margin:0 0 12px;
  font-size:35px;
  line-height:1.5;
  color:#111827;
}

.section-head p{
  margin:0;
  color:var(--muted);
}

/* products */
.products{
  background:transparent;
}

/* .cards{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
} */

.cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:24px;
}

.card{
    flex:0 0 calc(25% - 18px);
}

/* Tablet */
@media (max-width: 992px){
    .card{
        flex:0 0 calc(33.333% - 16px);
    }
}

/* Small Tablet */
@media (max-width: 768px){
    .card{
        flex:0 0 calc(50% - 12px);
    }
}

/* Mobile */
@media (max-width: 576px){
    .card{
        flex:0 0 100%;
    }
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

.card-image{
  position:relative;
  aspect-ratio:4 / 3;
  overflow:hidden;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.card:hover .card-image img{
  transform:scale(1.04);
}

.card-body{
  padding:18px;
}

.card-tag{
  display:inline-flex;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  background:#fef2f2;
  color:#b91c1c;
  border:1px solid #fecaca;
  font-size:12px;
  font-weight:800;
}

.card-body h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.6;
  color:#111827;
}

.card-body p{
  margin:0;
  color:#6b7280;
  font-size:14px;
  line-height:1.95;
}

/* advantages */
.advantages{
  background:linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.25));
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.feature-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.feature-box:hover{
  transform:translateY(-4px);
}

.feature-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg, #fff7d6, #fef3c7);
  color:#92400e;
  border:1px solid #f3dfa0;
  font-weight:900;
  margin-bottom:16px;
}

.feature-box h3{
  margin:0 0 10px;
  font-size:20px;
  color:#111827;
}

.feature-box p{
  margin:0;
  color:#6b7280;
}

/* about */
.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:start;
}

.about-label{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#fff7d6;
  color:#8a5a00;
  border:1px solid #f7df85;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}

.about-content h2{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.6;
  color:#111827;
}

.about-content p{
  margin:0 0 12px;
  color:#6b7280;
}

.about-panel{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.about-panel::before{
  content:"";
  display:block;
  height:14px;
  background:
    repeating-linear-gradient(
      -45deg,
      #111827 0 12px,
      #111827 12px 24px,
      #facc15 24px 36px,
      #facc15 36px 48px
    );
}

.about-info{
  padding:24px;
  display:grid;
  gap:16px;
}

.about-item{
  padding:14px 16px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
}

.about-item span{
  display:block;
  font-size:13px;
  color:#6b7280;
  margin-bottom:6px;
}

.about-item strong{
  color:#111827;
  font-size:15px;
}

/* seo block */
.seo-block{
  background:transparent;
}

.seo-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.seo-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.seo-card h2{
  margin:0 0 14px;
  font-size:25px;
  line-height:1.6;
  color:#111827;
}

.seo-card p{
  margin:0 0 12px;
  color:#6b7280;
}

.seo-list{
  margin:0;
  padding:0;
  list-style:none;
}

.seo-list li{
  position:relative;
  padding-right:18px;
  margin-bottom:10px;
  color:#6b7280;
}

.seo-list li::before{
  content:"";
  position:absolute;
  right:0;
  top:12px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--danger);
}

/* faq */
.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  padding:0 18px;
  box-shadow:var(--shadow);
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 0;
  font-weight:800;
  color:#111827;
  position:relative;
  padding-left:28px;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::before,
.faq-item summary::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:14px;
  height:2px;
  background:var(--danger);
  transform:translateY(-50%);
  border-radius:999px;
}

.faq-item summary::after{
  transform:translateY(-50%) rotate(90deg);
  transition:var(--transition);
}

.faq-item[open] summary::after{
  opacity:.2;
  transform:translateY(-50%) rotate(0);
}

.faq-item p{
  margin:0 0 18px;
  color:#6b7280;
}

/* contact */
.contact-box{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}

.contact-box::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:100%;
  height:12px;
  background:
    repeating-linear-gradient(
      -45deg,
      #111827 0 12px,
      #111827 12px 24px,
      #facc15 24px 36px,
      #facc15 36px 48px
    );
}

.contact-item{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  margin-top:8px;
}

.contact-item span{
  display:block;
  font-size:13px;
  color:#6b7280;
  margin-bottom:6px;
}

.contact-item strong,
.contact-item a{
  color:#111827;
  font-weight:800;
  word-break:break-word;
}

.contact-item-full{
  grid-column:1 / -1;
}

/* footer */
.site-footer{
  padding:26px 0;
  background:#ffffff;
  border-top:1px solid #e5e7eb;
  margin-top:30px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.footer-inner p{
  margin:0;
  color:#6b7280;
  font-size:14px;
}

.designer-link a{
  color:var(--danger);
  font-weight:800;
}

/* responsive */
@media (max-width:1100px){
  .hero-grid,
  .about-grid,
  .seo-grid{
    grid-template-columns:1fr;
  }

  .cards,
  .feature-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:900px){
  .menu-btn{
    display:flex;
  }

  .nav{
    position:absolute;
    top:100%;
    right:16px;
    left:16px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    box-shadow:var(--shadow-md);
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav.active{
    display:flex;
  }

  .trust-grid,
  .contact-box{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:37px;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  .container{
    width:min(100% - 22px, var(--container));
  }

  .section{
    padding:64px 0;
  }

  .hero{
    padding-top:34px;
  }

  .hero-content{
    padding:24px;
    border-radius:24px;
  }

  .hero h1{
    font-size:29px;
    line-height:1.8;
  }

  .section-head h2,
  .about-content h2{
    font-size:26px;
  }

  .cards,
  .feature-grid{
    grid-template-columns:1fr;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }
}

/* ===============================
   Business Info Section
=============================== */
.business-info {
  background: #f8fafc;
}

.business-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #111827;
}

.working-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.working-hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #d1d5db;
  font-size: 0.98rem;
  color: #374151;
}

.working-hours li:last-child {
  border-bottom: none;
}

.working-hours li span {
  font-weight: 500;
}

.working-hours li strong {
  color: #111827;
  font-weight: 700;
}

.social-text {
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  color: #fff;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.social-btn.whatsapp {
  background: #25d366;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.social-btn.telegram {
  background: #229ed9;
}

.social-note {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .business-info-grid {
    grid-template-columns: 1fr;
  }

  .working-hours li {
    font-size: 0.95rem;
  }

  .social-links {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
  }
}
