/* Otlob Coupon - About page styles */
:root{
  --background:#ffffff;
  --foreground:#11182b;
  --muted:#f5f6f8;
  --muted-foreground:#5b6478;
  --border:#e6e8ee;
  --surface:#f9fafc;
  --card:#ffffff;
  --brand:#20bfef;
  --brand-foreground:#ffffff;
  --accent-yellow:#ffd928;
  --accent-yellow-foreground:#1a1a2e;
  --accent-red:#d63b3b;
  --shadow-card:0 2px 10px -4px rgba(0,0,0,.08);
  --shadow-soft:0 6px 24px -8px rgba(32,191,239,.35);
  --radius:14px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{direction:rtl}
body{
  font-family:"Tajawal","IBM Plex Sans Arabic",system-ui,sans-serif;
  background:var(--background);
  color:var(--foreground);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-weight:800;letter-spacing:-.01em;margin:0}
p{margin:0}
ul{list-style:none;margin:0;padding:0}
button{font-family:inherit;cursor:pointer;border:0;background:transparent;color:inherit}

.container{max-width:1200px;margin:0 auto;padding:0 16px}
.text-brand{color:var(--brand)}
.muted-xs{font-size:12px;color:var(--muted-foreground)}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.9);backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;
  gap:12px;padding:12px 16px;
}
.logo{display:flex;align-items:center;gap:8px;flex-shrink:0}
.logo img{height:40px;width:auto}
.logo span{font-weight:900;font-size:18px;color:var(--brand)}

.search-form{
  display:flex;align-items:stretch;
  border:1px solid var(--border);background:var(--surface);
  border-radius:999px;overflow:hidden;min-width:0;
}
.search-form:focus-within{box-shadow:0 0 0 3px rgba(32,191,239,.25)}
.search-form input{
  flex:1;min-width:0;background:transparent;border:0;outline:none;
  padding:10px 20px;font-size:14px;font-family:inherit;
}
.search-form button{
  display:flex;align-items:center;gap:6px;
  background:var(--accent-yellow);color:var(--accent-yellow-foreground);
  font-weight:700;font-size:14px;padding:0 20px;
}
.search-form button:hover{filter:brightness(.95)}

.desktop-search{display:none}
.mobile-search{display:flex;margin:0 16px 12px}

.main-nav{display:none;align-items:center;gap:4px;font-size:14px}
.main-nav a{padding:8px 12px;border-radius:8px;color:rgba(17,24,43,.8);transition:.2s}
.main-nav a:hover{color:var(--brand);background:var(--surface)}
.main-nav .lang-link{margin-inline-start:8px;border:1px solid var(--border)}
.main-nav .lang-link:hover{border-color:var(--brand);color:var(--brand)}

.menu-toggle{padding:8px;border-radius:8px}
.menu-toggle:hover{background:var(--surface)}

.mobile-nav{border-top:1px solid var(--border);background:var(--background);padding:12px 16px;display:flex;flex-direction:column;gap:4px;font-size:14px}
.mobile-nav a{padding:10px 12px;border-radius:8px}
.mobile-nav a:hover{background:var(--surface);color:var(--brand)}

@media (min-width:768px){
  .desktop-search{display:flex}
  .mobile-search{display:none}
  .header-inner{gap:24px}
}
@media (min-width:1024px){
  .main-nav{display:flex}
  .menu-toggle{display:none}
  .mobile-nav{display:none!important}
}


@media (max-width: 768px) {
    .menu-toggle {
        margin-right: auto !important; /* يدفع الأيقونة للشمال تماماً في الـ RTL */
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important; /* يضمن أن الزر لا يتمدد ويأخذ مساحة أكبر من حجمه */
        background: transparent;
        border: none;
        cursor: pointer;
    }
}


.mobile-nav[hidden] {
    display: none !important;
}


/* BREADCRUMBS */
 
.breadcrumbs nav{font-size:14px;color:var(--muted-foreground)}
.breadcrumbs ol{display:flex;flex-wrap:wrap;align-items:center;gap:8px; list-style: none;}
.breadcrumbs a:hover{color:var(--brand)}
.breadcrumbs .current{color:var(--foreground);font-weight:500}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 24px;border-radius:999px;font-weight:700;
  transition:transform .15s,filter .15s;
}
.btn-primary{background:var(--brand);color:var(--brand-foreground);box-shadow:var(--shadow-soft)}
.btn-primary:hover{transform:translateY(-1px)}
.btn-yellow{background:var(--accent-yellow);color:var(--accent-yellow-foreground)}
.btn-yellow:hover{filter:brightness(.95)}
.btn-lg{padding:16px 32px;font-size:18px;font-weight:900}

/* HERO */
.hero{position:relative;overflow:hidden}
.hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(to bottom left,rgba(32,191,239,.15),transparent 50%,rgba(255,217,40,.1));
}
.hero-blob{position:absolute;border-radius:50%;filter:blur(60px);z-index:-1}
.blob-1{top:-96px;left:-96px;width:288px;height:288px;background:rgba(32,191,239,.2)}
.blob-2{bottom:-96px;right:-96px;width:288px;height:288px;background:rgba(255,217,40,.3)}
.hero-grid{display:grid;gap:40px;align-items:center;padding:64px 16px}
.hero h1{font-size:36px;line-height:1.15;font-weight:900;margin-bottom:0}
.hero .lead{margin-top:20px;font-size:18px;color:var(--muted-foreground);line-height:1.7;max-width:540px}
.hero-cta{margin-top:32px;display:flex;flex-wrap:wrap;gap:12px}
.badge-pill{
  display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;
  color:var(--brand);background:var(--background);
  border:1px solid rgba(32,191,239,.3);padding:6px 12px;border-radius:999px;margin-bottom:20px;
}
@media (min-width:768px){.hero h1{font-size:48px}.hero-grid{padding:30px 16px}}
@media (min-width:1024px){.hero h1{font-size:60px}.hero-grid{grid-template-columns:1fr 1fr}}

/* STATS CARD */
.stats-card{
  border:1px solid var(--border);background:var(--card);
  border-radius:24px;padding:24px;box-shadow:var(--shadow-soft);
}
@media (min-width:768px){.stats-card{padding:32px}}
.stats-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.stats-title{font-weight:900;font-size:20px}
.stats-ic{
  width:48px;height:48px;display:grid;place-items:center;border-radius:16px;
  background:var(--brand);color:var(--brand-foreground);
}
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.stat-box{border:1px solid var(--border);border-radius:16px;padding:16px;text-align:center}
.stat-box.brand-tint{background:linear-gradient(to bottom,rgba(32,191,239,.1),transparent)}
.stat-box.yellow-tint{background:linear-gradient(to bottom,rgba(255,217,40,.2),transparent)}
.stat-ic{width:40px;height:40px;margin:0 auto 8px;display:grid;place-items:center;border-radius:12px}
.stat-ic.brand{background:rgba(32,191,239,.15);color:var(--brand)}
.stat-ic.yellow{background:rgba(255,217,40,.3);color:var(--accent-yellow-foreground)}
.stat-num{font-size:24px;font-weight:900;color:var(--foreground)}
.stat-label{font-size:11px;color:var(--muted-foreground);margin-top:4px}
@media (min-width:768px){.stat-num{font-size:30px}.stat-label{font-size:12px}}
.stats-flags{margin-top:20px;display:flex;align-items:center;gap:12px;font-size:13px;color:var(--muted-foreground)}
.flag-stack{display:flex}
.flag-stack .flag+.flag{margin-right:-8px}
.flag{
  width:32px;height:32px;border-radius:50%;display:grid;place-items:center;
  font-size:11px;font-weight:900;box-shadow:0 0 0 2px var(--card);
}
.flag.yellow{background:var(--accent-yellow);color:#1a1a2e}
.flag.brand{background:var(--brand);color:#fff}
.flag.dark{background:var(--foreground);color:#fff}

/* SECTIONS */
.section{padding:64px 16px}
.section-title{max-width:640px;margin-bottom:40px}
.section-title h2{font-size:30px;font-weight:900}
@media (min-width:768px){.section-title h2{font-size:36px}}
.kicker{
  display:inline-block;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;
  color:var(--brand);background:rgba(32,191,239,.1);padding:4px 12px;border-radius:999px;margin-bottom:12px;
}
.kicker.red{color:var(--accent-red);background:rgba(214,59,59,.1)}

.grid-4{display:grid;gap:20px;grid-template-columns:1fr}
@media (min-width:640px){.grid-4{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.grid-4{grid-template-columns:repeat(4,1fr)}}

.trust-card,.step-card{
  border:1px solid var(--border);background:var(--card);border-radius:16px;
  padding:24px;box-shadow:var(--shadow-card);transition:.2s;
}
.trust-card:hover{box-shadow:var(--shadow-soft);border-color:rgba(32,191,239,.4)}
.trust-ic{
  width:48px;height:48px;display:grid;place-items:center;border-radius:12px;
  background:rgba(32,191,239,.1);color:var(--brand);margin-bottom:16px;transition:.2s;
}
.trust-card:hover .trust-ic{background:var(--brand);color:var(--brand-foreground)}
.trust-card h3,.step-card h3{font-size:18px;font-weight:700;margin-bottom:4px}
.trust-card p,.step-card p{font-size:14px;color:var(--muted-foreground);line-height:1.7}

.step-card{position:relative}
.step-num{
  position:absolute;top:16px;left:16px;font-size:48px;font-weight:900;
  color:rgba(32,191,239,.1);line-height:1;user-select:none;
}
.step-ic{
  position:relative;width:48px;height:48px;display:grid;place-items:center;border-radius:12px;
  background:var(--accent-yellow);color:var(--accent-yellow-foreground);margin-bottom:16px;
}

/* MISSION */
.mission-band{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.mission-grid{display:grid;gap:40px;align-items:start;padding:64px 16px}
.mission-grid h2{font-size:30px;font-weight:900}
.mission-body{font-size:18px;color:rgba(17,24,43,.8);line-height:1.9}
@media (min-width:768px){.mission-grid h2{font-size:36px}}
@media (min-width:1024px){.mission-grid{grid-template-columns:1fr 2fr}}

/* GRID-2 */
.grid-2{display:grid;gap:24px}
@media (min-width:1024px){.grid-2{grid-template-columns:1fr 1fr}}

.card-plain{
  border:1px solid var(--border);background:var(--card);border-radius:24px;
  padding:32px;box-shadow:var(--shadow-card);
}
.card-plain h2{font-size:24px;font-weight:900;margin-bottom:12px}
.card-plain p{color:var(--muted-foreground);line-height:1.9}
@media (min-width:768px){.card-plain h2{font-size:30px}}

.card-dark{
  position:relative;overflow:hidden;border-radius:24px;
  background:var(--foreground);color:#fff;padding:32px;box-shadow:var(--shadow-soft);
}
.card-dark h2{font-size:24px;font-weight:900;margin-bottom:12px}
.card-dark p{color:rgba(255,255,255,.8);line-height:1.9;margin-bottom:24px}
.dark-blob{position:absolute;top:-40px;left:-40px;width:160px;height:160px;border-radius:50%;background:rgba(255,217,40,.3);filter:blur(60px)}
@media (min-width:768px){.card-dark h2{font-size:30px}}

/* FAQ */
.faq-band{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.faq-wrap{max-width:800px;margin:0 auto;padding:64px 16px}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid var(--border);background:var(--card);border-radius:16px;overflow:hidden;box-shadow:var(--shadow-card)}
.faq-btn{
  display:flex;width:100%;align-items:center;justify-content:space-between;gap:16px;
  padding:16px 20px;text-align:right;font-weight:700;color:var(--foreground);transition:.2s;
}
.faq-btn:hover{background:var(--surface)}
.faq-btn .chev{flex-shrink:0;color:var(--brand);transition:transform .2s}
.faq-item.open .faq-btn .chev{transform:rotate(180deg)}
.faq-panel{display:none;padding:0 20px 20px;color:var(--muted-foreground);line-height:1.7}
.faq-item.open .faq-panel{display:block}

/* CTA */
.cta-band{
  position:relative;overflow:hidden;border-radius:24px;text-align:center;
  background:linear-gradient(to bottom left,var(--brand),rgba(32,191,239,.8));
  color:var(--brand-foreground);padding:40px;box-shadow:var(--shadow-soft);
}
.cta-band h2{position:relative;font-size:30px;font-weight:900;line-height:1.25}
.cta-band .btn{position:relative;margin-top:32px}
.cta-blob{position:absolute;width:224px;height:224px;border-radius:50%;filter:blur(60px)}
.cta-blob-1{top:-64px;right:-64px;background:rgba(255,217,40,.3)}
.cta-blob-2{bottom:-64px;left:-64px;background:rgba(255,255,255,.2)}
@media (min-width:768px){.cta-band{padding:56px}.cta-band h2{font-size:36px}}
@media (min-width:1024px){.cta-band h2{font-size:48px}}

/* FOOTER */
.site-footer{background:var(--foreground);color:#fff;margin-top:80px}
.footer-grid{display:grid;gap:40px;padding:48px 16px}
.footer-brand{display:flex;align-items:center;gap:8px;margin-bottom:16px}
.footer-logo{
  display:grid;place-items:center;width:40px;height:40px;border-radius:12px;
  background:var(--brand);color:var(--brand-foreground);font-weight:900;
}
.footer-name{font-weight:900;font-size:20px}
.footer-desc{font-size:14px;color:rgba(255,255,255,.7);line-height:1.7}
.site-footer h4{font-weight:700;margin-bottom:16px;color:var(--accent-yellow)}
.site-footer ul{display:flex;flex-direction:column;gap:8px;font-size:14px}
.site-footer ul a{color:rgba(255,255,255,.8)}
.site-footer ul a:hover{color:var(--accent-yellow)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1)}
.footer-bottom p{max-width:1200px;margin:0 auto;padding:20px 16px;text-align:center;font-size:12px;color:rgba(255,255,255,.6)}
@media (min-width:768px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
