/*
Theme Name: Coffee & Tech
Theme URI: https://qhwh.io
Author: qhwh
Description: ثيم بهوية القهوة والتقنية — داكن، دافئ، وسريع
Version: 1.0
Text Domain: coffee-tech
Tags: dark, rtl, woocommerce, blog, technology
*/

/* ===========================
   المتغيرات والأساس
=========================== */

/* --- الوضع الداكن (افتراضي) --- */
:root,
[data-theme="dark"] {
  --bg:        #1e120b;
  --bg2:       #2c1a10;
  --bg3:       #3d2210;
  --border:    #5a3318;
  --accent:    #f0aa30;
  --accent2:   #d08818;
  --text:      #fdf3e0;
  --text-muted:#c8a070;
  --white:     #ffffff;
  --code-bg:   #180e08;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --header-bg: #140d07;
  --card-bg:   #2c1a10;
}

/* --- الوضع الفاتح --- */
[data-theme="light"] {
  --bg:        #fdf6ed;
  --bg2:       #f5e8d0;
  --bg3:       #ecdbbf;
  --border:    #d4a870;
  --accent:    #b86800;
  --accent2:   #8f5000;
  --text:      #2a1400;
  --text-muted:#7a5030;
  --white:     #ffffff;
  --code-bg:   #f0e0c0;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.12);
  --header-bg: #f5e0c0;
  --card-bg:   #fef9f2;
}

/* --- زر التبديل --- */
.theme-toggle {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 20px;
  padding: 5px 14px;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
}
.theme-toggle:hover { background: var(--border); }
.theme-toggle .tt-icon { font-size: 1rem; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  min-height: 100vh;
  transition: background .3s, color .3s;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #ffd59e; }

img { max-width: 100%; height: auto; display: block; }

/* ===========================
   الطباعة
=========================== */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; color: var(--text); }

/* ===========================
   التخطيط
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  padding: 2rem 0;
}

@media (max-width: 900px) {
  .site-wrapper { grid-template-columns: 1fr; }
}

/* ===========================
   الهيدر
=========================== */
#masthead {
  background: var(--header-bg, rgba(15,8,5,.97));
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  transition: background .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-branding .site-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -.5px;
}
.site-branding .site-title a { color: inherit; }
.site-branding .site-description {
  font-size: .75rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

/* ===========================
   القائمة
=========================== */
#primary-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
#primary-navigation ul li a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: .4rem .8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  #primary-navigation { display: none; width: 100%; }
  #primary-navigation.open { display: block; }
  #primary-navigation ul { flex-direction: column; gap: .5rem; padding: 1rem 0; }
  .header-inner { flex-wrap: wrap; }
}

/* ===========================
   Hero Section
=========================== */
.hero-section {
  background: radial-gradient(ellipse at 50% 0%, #3d1f0d 0%, var(--bg) 65%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "☕";
  position: absolute;
  font-size: 22rem;
  opacity: .03;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #ffd59e;
  padding: .3rem 1.2rem;
  border-radius: 20px;
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.hero-section h1 { margin-bottom: 1rem; }
.hero-section h1 span { color: var(--accent); }
.hero-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   الأزرار
=========================== */
.btn, button[type="submit"], input[type="submit"] {
  display: inline-block;
  padding: .7rem 1.8rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primary, button[type="submit"], input[type="submit"] {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,134,10,.35); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

/* ===========================
   البطاقات / المقالات
=========================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

article.post-card {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
article.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.post-card .post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card .post-thumbnail-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--bg3), #1a0a04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: .4;
}
.post-card-body { padding: 1.5rem; }
.post-meta {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-family: 'Courier New', monospace;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.post-meta .cat-link { color: var(--accent); }
.post-card-body h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.post-card-body h2 a { color: var(--white); }
.post-card-body h2 a:hover { color: var(--accent); }
.post-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 700;
}
.read-more::after { content: " ←"; }

/* ===========================
   مقال مفرد
=========================== */
.single-post-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.post-content {
  font-size: 1.05rem;
  line-height: 1.9;
}
.post-content h2,.post-content h3 {
  margin: 2rem 0 1rem;
  padding-right: 1rem;
  border-right: 3px solid var(--accent);
}
.post-content pre, .post-content code {
  font-family: 'Courier New', monospace;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .9rem;
  direction: ltr;
  text-align: left;
}
.post-content pre { padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0; }
.post-content code { padding: .1rem .4rem; }
.post-content blockquote {
  border-right: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--bg3);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: #ffd59e;
}
.post-content ul, .post-content ol {
  padding-right: 2rem;
  margin-bottom: 1rem;
}
.post-content ul li, .post-content ol li { margin-bottom: .4rem; }

/* ===========================
   الشريط الجانبي
=========================== */
.sidebar .widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar .widget-title {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Courier New', monospace;
}
.sidebar .widget ul { list-style: none; }
.sidebar .widget ul li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { color: var(--text); }
.sidebar .widget ul li a:hover { color: var(--accent); }

/* ===========================
   WooCommerce
=========================== */
.woocommerce-store-notice { display: none !important; }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.woocommerce ul.products li.product img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--white) !important;
  font-size: 1rem !important;
  padding: 1rem 1rem .3rem !important;
}
.woocommerce ul.products li.product .price {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0 1rem .5rem;
}
.woocommerce ul.products li.product .button {
  margin: .5rem 1rem 1rem;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  border-radius: 8px;
  padding: .6rem;
  font-weight: 700;
  transition: opacity .2s;
}
.woocommerce ul.products li.product .button:hover { opacity: .85; }

.woocommerce .cart-collaterals,
.woocommerce-cart .cart-collaterals { background: var(--bg2); padding: 1.5rem; border-radius: 14px; }

.woocommerce-message, .woocommerce-info {
  background: var(--bg3) !important;
  border-top-color: var(--accent) !important;
  color: var(--text) !important;
}

/* ===========================
   فورم البحث والتعليقات
=========================== */
input[type="text"], input[type="email"], input[type="search"],
input[type="password"], textarea, select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: .7rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }

.comment-form { background: var(--bg2); padding: 2rem; border-radius: 14px; border: 1px solid var(--border); }
.comment-form label { display: block; margin-bottom: .3rem; color: var(--text-muted); font-size: .9rem; }
.comment-form p { margin-bottom: 1rem; }

/* ===========================
   الترقيم
=========================== */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: all .2s;
  font-size: .9rem;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ===========================
   شبكة المنتجات
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.product-card-img { display: block; }
.product-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity .2s;
}
.product-card-img:hover img { opacity: .9; }
.product-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #2a1508, #1a0a04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-type-badge {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: .75rem;
  padding: .2rem .7rem;
  border-radius: 20px;
  margin-bottom: .6rem;
  font-family: 'Courier New', monospace;
}
.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.product-card-body h3 a { color: var(--white); }
.product-card-body h3 a:hover { color: var(--accent); }
.product-short-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.product-price del { color: var(--text-muted); font-size: .85rem; }
.btn-sm { padding: .45rem 1.1rem; font-size: .85rem; }

/* ===========================
   الفوتر
=========================== */
#colophon {
  background: var(--bg2);
  border-top: 2px solid var(--border);
  margin-top: 4rem;
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 3rem 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-widget h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
}
.footer-widget ul { list-style: none; }
.footer-widget ul li { padding: .3rem 0; font-size: .9rem; }
.footer-widget ul li a { color: var(--text-muted); }
.footer-widget ul li a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .85rem;
  font-family: 'Courier New', monospace;
}
.footer-bottom span { color: var(--accent); }

/* ===========================
   الاستجابة
=========================== */
@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
  .hero-section, .home-hero { padding: 3rem 1rem; }
  .footer-widgets { grid-template-columns: 1fr; }
}

/* ===========================
   الشعار
=========================== */
.site-logo-link { display: flex; align-items: center; }
.site-logo { height: 52px; width: auto; display: block; }

/* ===========================
   Hero — نسخة جديدة
=========================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #ffd59e;
  padding: .35rem 1.2rem;
  border-radius: 20px;
  font-size: .82rem;
  margin-bottom: 1.6rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero-stat span {
  font-size: .8rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

/* ===========================
   شريط المزايا
=========================== */
.features-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
.features-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text-muted);
}
.feature-item svg { color: var(--accent); flex-shrink: 0; }
.feature-sep {
  width: 1px;
  height: 1.2rem;
  background: var(--border);
}
@media (max-width: 600px) { .feature-sep { display: none; } }

/* ===========================
   قسم الرأسية (section header)
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .8rem;
  color: var(--accent);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: .25rem .9rem;
  border-radius: 20px;
  margin-bottom: .8rem;
  letter-spacing: .05em;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===========================
   قسم التطبيقات
=========================== */
.apps-section {
  padding: 4rem 0;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

/* البطاقة المميزة تأخذ عمودين */
@media (min-width: 860px) {
  .app-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .app-card--featured .app-card-visual {
    height: 100%;
    min-height: 260px;
  }
  .app-card--featured .app-card-visual img {
    height: 100%;
    object-fit: cover;
  }
}

.app-card {
  background: linear-gradient(145deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(200,134,10,.18);
}

.app-card-visual {
  display: block;
  position: relative;
  overflow: hidden;
}
.app-card-visual img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .4s;
}
.app-card:hover .app-card-visual img { transform: scale(1.03); }

.app-icon-placeholder {
  height: 210px;
  background: linear-gradient(135deg, var(--bg3) 0%, #110804 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
}
.app-icon-placeholder svg { width: 60px; height: 60px; }

.app-sale-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 20px;
  letter-spacing: .04em;
}

.app-card-body {
  padding: 1.3rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-type-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Courier New', monospace;
  font-size: .72rem;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .2rem .7rem;
  border-radius: 20px;
  margin-bottom: .7rem;
  width: fit-content;
}

.app-name {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
.app-name a { color: var(--white); }
.app-name a:hover { color: var(--accent); }

.app-desc {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}

.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
}

.app-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}
.app-price del {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.apps-cta {
  text-align: center;
  margin-top: 2.8rem;
}

/* ===========================
   لماذا نحن؟
=========================== */
.why-section {
  padding: 4rem 0 5rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: border-color .3s, transform .3s;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.why-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ===========================
   empty state
=========================== */
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-muted);
}
.empty-icon {
  width: 90px; height: 90px;
  border: 2px dashed var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--border);
}

/* ===========================
   الصفحة الرئيسية الجديدة
=========================== */
.home-hero {
  background: radial-gradient(ellipse at 70% 0%, #3d1f0d 0%, var(--bg) 60%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: .25;
  pointer-events: none;
}
.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.home-hero__text { }
.home-hero__text h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.home-hero__text h1 span { color: var(--accent); }
.home-hero__text > p { color: var(--text-muted); font-size: 1.05rem; max-width: 480px; margin-bottom: 2rem; }

/* hero app card */
.hero-app-card {
  background: linear-gradient(145deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-app-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero-app-icon { border-radius: 12px; flex-shrink: 0; }
.hero-app-card__label { font-size: .72rem; color: var(--text-muted); font-family: 'Courier New',monospace; margin-bottom: .15rem; }
.hero-app-card__name { font-size: 1.3rem; font-weight: 900; color: var(--white); margin: 0; }
.hero-app-card__new {
  margin-right: auto;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
  letter-spacing: .04em;
}
.hero-app-card__desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.hero-app-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.hero-app-card__tags span {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: .72rem;
  padding: .2rem .65rem;
  border-radius: 20px;
  font-family: 'Courier New',monospace;
}

/* وهم الشاشة (mockup) */
.app-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .5rem;
}
.app-mockup__bar {
  background: var(--bg2);
  padding: .5rem .75rem;
  display: flex;
  gap: .35rem;
  border-bottom: 1px solid var(--border);
}
.app-mockup__bar span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
}
.app-mockup__screen { padding: .75rem; }
.mock-header { margin-bottom: .6rem; }
.mock-title-row { display: flex; align-items: center; gap: .4rem; margin-bottom: .25rem; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.accent { background: var(--accent); }
.mock-line { height: 6px; border-radius: 3px; background: var(--bg3); }
.mock-line.w60 { width: 60%; }
.mock-line.w30 { width: 30%; }
.mock-line.muted { background: var(--border); }
.mock-grid { display: flex; flex-direction: column; gap: .3rem; }
.mock-cell {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .65rem;
  color: var(--text-muted);
  padding: .3rem .5rem;
  font-family: 'Courier New',monospace;
}
.mock-cell.accent-bg { background: rgba(200,134,10,.15); border-color: var(--accent); color: var(--text); }
.mock-cell.half { width: 50%; }
.mock-cell.muted-bg { opacity: .4; }

@media (max-width: 900px) {
  .home-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-hero { padding: 3.5rem 0 3rem; }
}

/* ====== Jadwal spotlight ====== */
.jadwal-spotlight {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jadwal-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .jadwal-spotlight__inner { grid-template-columns: 1fr; }
}

/* preview card */
.jadwal-preview-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.jadwal-preview-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.jadwal-preview-card__top strong { display: block; font-size: 1.1rem; color: var(--white); }
.jadwal-preview-card__top small { font-size: .75rem; color: var(--text-muted); font-family: 'Courier New',monospace; }

/* رسم بيانات أسبوعي */
.jadwal-week {
  display: flex;
  gap: .5rem;
  align-items: flex-end;
  height: 90px;
  margin-bottom: 1.2rem;
  padding: 0 .25rem;
}
.jadwal-week__day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.jadwal-week__day span { font-size: .65rem; color: var(--text-muted); }
.jadwal-week__day small { font-size: .6rem; color: var(--accent); }
.jadwal-week__bar {
  flex: 1;
  width: 100%;
  background: var(--bg2);
  border-radius: 4px 4px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 20px;
  border: 1px solid var(--border);
}
.jadwal-week__fill {
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 3px 3px 0 0;
  width: 100%;
  min-height: 4px;
  transition: height .5s;
}

/* قائمة المهام */
.jadwal-tasks { display: flex; flex-direction: column; gap: .5rem; }
.jadwal-task {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--text-muted);
  padding: .5rem .7rem;
  background: var(--bg2);
  border-radius: 7px;
  border: 1px solid var(--border);
}
.jadwal-task.done { color: var(--text); }
.jadwal-task.done svg { color: var(--accent); }
.jadwal-task.active { border-color: var(--accent); color: var(--text); }
.jadwal-task.active svg { color: var(--accent); }

/* قائمة مميزات جداول */
.jadwal-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 1.5rem 0 0;
}
.jadwal-features-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.5;
}
.jadwal-features-list li svg { color: var(--accent); flex-shrink: 0; margin-top: .2rem; }

/* ====== Home CTA ====== */
.home-cta {
  padding: 5rem 0;
  background: radial-gradient(ellipse at 50% 100%, #3d1f0d 0%, var(--bg) 65%);
}
.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 3rem;
}
.home-cta__text h2 { margin-bottom: .4rem; font-size: 1.6rem; }
.home-cta__text p { color: var(--text-muted); margin: 0; max-width: 400px; }
.home-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-lg { padding: .85rem 2.2rem; font-size: 1rem; }

/* ===========================
   صفحة تطبيق جداول
=========================== */

/* Hero */
.jadwal-hero {
  background: radial-gradient(ellipse at 40% 0%, #3d1f0d 0%, var(--bg) 60%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.jadwal-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: .2;
  pointer-events: none;
}
.jadwal-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.jadwal-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.jadwal-hero-icon { border-radius: 16px; }
.jadwal-version-badge {
  font-size: .72rem;
  color: var(--accent);
  font-family: 'Courier New',monospace;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: .2rem .75rem;
  border-radius: 20px;
  margin-bottom: .3rem;
  display: inline-block;
}
.jadwal-hero__content h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0; }
.jadwal-hero__tagline { font-size: 1.1rem; color: var(--text-muted); max-width: 480px; margin: 1rem 0 1.5rem; line-height: 1.7; }
.jadwal-hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.jadwal-badge {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .78rem;
  padding: .3rem .9rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.jadwal-badge svg { color: var(--accent); }
.jadwal-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .jadwal-hero__inner { grid-template-columns: 1fr; }
  .jadwal-hero { padding: 3.5rem 0 3rem; }
}

/* App window demo */
.app-window {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.app-window__titlebar {
  background: var(--bg3);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.app-window__dots { display: flex; gap: .35rem; }
.app-window__dots .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.app-window__title { font-size: .82rem; color: var(--text-muted); font-family: 'Courier New',monospace; }
.app-window__body { padding: 1rem; }

/* Days row */
.demo-days-row {
  display: flex;
  gap: .5rem;
  margin-bottom: .8rem;
}
.demo-day {
  flex: 1;
  text-align: center;
  padding: .5rem .2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.demo-day.active { background: var(--accent); border-color: var(--accent); }
.demo-day.active .demo-day__name,
.demo-day.active .demo-day__num { color: #fff; }
.demo-day.busy { border-color: rgba(200,134,10,.4); }
.demo-day__name { display: block; font-size: .65rem; color: var(--text-muted); margin-bottom: .15rem; }
.demo-day__num { display: block; font-size: .9rem; font-weight: 700; color: var(--white); }

/* Schedule */
.demo-schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem;
  margin-bottom: .8rem;
}
.demo-event {
  border-radius: 7px;
  padding: .55rem .75rem;
  font-size: .78rem;
  border-right: 3px solid var(--border);
}
.demo-event strong { display: block; font-size: .82rem; color: var(--white); margin-bottom: .1rem; }
.demo-event small { color: var(--text-muted); font-family: 'Courier New',monospace; font-size: .7rem; }
.demo-event.accent { background: rgba(200,134,10,.12); border-right-color: var(--accent); }
.demo-event.muted { background: var(--bg3); border-right-color: var(--border); }
.demo-event.accent-soft { background: rgba(200,134,10,.07); border-right-color: #a06208; }

/* Stats */
.demo-stats-row {
  display: flex;
  gap: .5rem;
  border-top: 1px solid var(--border);
  padding-top: .8rem;
}
.demo-stat { flex: 1; text-align: center; }
.demo-stat strong { display: block; font-size: 1.1rem; color: var(--accent); font-weight: 800; }
.demo-stat span { font-size: .67rem; color: var(--text-muted); font-family: 'Courier New',monospace; }

/* إحصائيات */
.jadwal-numbers {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.jadwal-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 600px) { .jadwal-numbers__grid { grid-template-columns: repeat(2, 1fr); } }
.jadwal-number strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.jadwal-number span { font-size: .82rem; color: var(--text-muted); margin-top: .3rem; display: block; }

/* Features section */
.jadwal-features-section { padding: 5rem 0; }
.jf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .jf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .jf-grid { grid-template-columns: 1fr; } }
.jf-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  transition: border-color .3s, transform .3s;
}
.jf-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.jf-card--large {
  grid-column: span 2;
}
@media (max-width: 900px) { .jf-card--large { grid-column: span 2; } }
@media (max-width: 560px) { .jf-card--large { grid-column: span 1; } }
.jf-card__icon {
  width: 52px; height: 52px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.jf-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.jf-card p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* mini cal mockup */
.jf-mockup-mini { margin-top: 1.2rem; }
.jf-mini-cal { display: flex; flex-direction: column; gap: .3rem; }
.jf-mini-row { display: flex; gap: .3rem; }
.jf-mini-cell {
  flex: 1;
  height: 16px;
  border-radius: 3px;
  background: var(--bg3);
  border: 1px solid var(--border);
}
.jf-mini-cell.a { background: rgba(200,134,10,.35); border-color: var(--accent); }
.jf-mini-cell.d { opacity: .3; }

/* Screenshots */
.jadwal-screenshots {
  padding: 5rem 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.screenshots-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ss-tab {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .5rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: .88rem;
  transition: all .2s;
}
.ss-tab:hover, .ss-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ss-panel { display: none; }
.ss-panel.active { display: block; }

.ss-browser {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.ss-browser__bar {
  background: #0d0603;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid var(--border);
}
.ss-browser__dots { display: flex; gap: .3rem; }
.ss-browser__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.ss-browser__url {
  font-size: .72rem;
  font-family: 'Courier New',monospace;
  color: var(--text-muted);
  background: var(--bg2);
  padding: .25rem .8rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 240px;
}
.ss-browser__content { padding: 1rem; min-height: 300px; }

.ss-caption strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
.ss-caption p { color: var(--text-muted); font-size: .88rem; margin: 0; }

/* Week demo */
.ss-week-demo { }
.ss-week-header { margin-bottom: .8rem; }
.ss-week-nav {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .6rem;
}
.ss-week-nav button {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .2rem .55rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: .75rem;
}
.ss-week-nav strong { color: var(--white); font-size: .88rem; }
.ss-week-days { display: grid; grid-template-columns: repeat(5,1fr); gap: .4rem; }
.ss-day {
  text-align: center;
  padding: .5rem .2rem;
  border-radius: 7px;
  border: 1px solid var(--border);
}
.ss-day.today { background: rgba(200,134,10,.15); border-color: var(--accent); }
.ss-day span { display: block; font-size: .65rem; color: var(--text-muted); }
.ss-day strong { display: block; font-size: .95rem; color: var(--white); font-weight: 700; }
.ss-day.today strong { color: var(--accent); }
.ss-week-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  grid-auto-rows: 40px;
  gap: .35rem;
}
.ss-event {
  border-radius: 6px;
  padding: .35rem .5rem;
  font-size: .65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ss-event strong { font-size: .7rem; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-event small { font-family: 'Courier New',monospace; font-size: .6rem; }
.ss-event.e1 { background: rgba(200,134,10,.2); border-right: 2px solid var(--accent); color: var(--text); }
.ss-event.e2 { background: rgba(139,92,246,.2); border-right: 2px solid #8b5cf6; color: var(--text); }
.ss-event.e3 { background: rgba(16,185,129,.2); border-right: 2px solid #10b981; color: var(--text); }

/* Team demo */
.ss-team-demo { display: flex; gap: 1rem; }
.ss-team-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem;
}
.ss-team-header { font-size: .72rem; color: var(--text-muted); margin-bottom: .6rem; font-family: 'Courier New',monospace; }
.ss-team-member {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ss-team-member:last-child { border-bottom: none; }
.ss-team-member strong { display: block; font-size: .72rem; color: var(--white); }
.ss-team-member small { font-size: .62rem; color: var(--text-muted); }
.ss-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ss-avatar.sm { width: 22px; height: 22px; font-size: .6rem; }
.ss-online {
  width: 7px; height: 7px;
  background: #28c840;
  border-radius: 50%;
  position: absolute;
  top: .4rem;
  left: 0;
}
.ss-team-calendar { flex: 1; min-width: 0; }
.ss-team-cal-header { font-size: .75rem; color: var(--text-muted); margin-bottom: .7rem; font-family: 'Courier New',monospace; }
.ss-team-grid { display: flex; flex-direction: column; gap: .4rem; }
.ss-team-row { display: flex; align-items: center; gap: .5rem; }
.ss-team-bars { flex: 1; display: flex; gap: .25rem; }
.ss-team-bar { height: 18px; border-radius: 4px; border: 1px solid; min-width: 12px; }

/* Report demo */
.ss-report-demo { }
.ss-report-top { display: flex; gap: 1rem; margin-bottom: 1rem; }
.ss-report-kpi {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .8rem;
  text-align: center;
}
.ss-report-kpi.accent { border-color: var(--accent); }
.ss-report-kpi strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--accent); line-height: 1; }
.ss-report-kpi span { font-size: .68rem; color: var(--text-muted); font-family: 'Courier New',monospace; }
.ss-report-chart { display: flex; gap: .4rem; align-items: flex-end; height: 80px; margin-bottom: 1rem; }
.ss-chart-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .25rem; height: 100%; }
.ss-chart-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 3px 3px 0 0;
  margin-top: auto;
}
.ss-chart-bar span { font-size: .55rem; color: var(--text-muted); }
.ss-report-table { }
.ss-report-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .5rem;
  padding: .4rem .2rem;
  border-bottom: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-muted);
  align-items: center;
}
.ss-report-row.header { color: var(--accent); font-size: .7rem; font-family: 'Courier New',monospace; }
.done-chip { background: rgba(40,200,64,.15); color: #28c840; padding: .1rem .5rem; border-radius: 20px; font-size: .7rem; }
.progress-chip { background: rgba(200,134,10,.15); color: var(--accent); padding: .1rem .5rem; border-radius: 20px; font-size: .7rem; }

/* How-to */
.jadwal-howto { padding: 5rem 0; }
.howto-steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
.howto-step {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}
.howto-step__num {
  width: 48px; height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.howto-step__content h3 { font-size: 1rem; margin-bottom: .3rem; }
.howto-step__content p { font-size: .87rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.howto-arrow {
  color: var(--border);
  flex-shrink: 0;
  align-self: center;
  margin: 0 .5rem;
}

/* Pricing */
.jadwal-pricing { padding: 5rem 0; background: var(--bg2); border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color .3s;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, var(--bg3), #1f0e05);
  transform: scale(1.02);
}
.pricing-card__best {
  position: absolute;
  top: -12px;
  right: 50%;
  transform: translateX(50%);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 1.5rem; }
.pricing-tier {
  font-size: .8rem;
  color: var(--text-muted);
  font-family: 'Courier New',monospace;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pricing-price { display: flex; align-items: baseline; gap: .2rem; margin-bottom: .3rem; }
.pricing-amount { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.pricing-cur { font-size: 1.1rem; color: var(--accent); font-weight: 700; }
.pricing-period { font-size: .82rem; color: var(--text-muted); }
.pricing-subtitle { font-size: .82rem; color: var(--text-muted); margin: 0; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .87rem;
  color: var(--text-muted);
}
.pricing-features li svg { color: var(--accent); flex-shrink: 0; }
.pricing-card--featured .pricing-features li { color: var(--text); }

/* FAQ */
.jadwal-faq { padding: 5rem 0; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--accent); }
.faq-q {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; color: var(--accent); transition: transform .2s; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 1.4rem 1.1rem; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* Bottom CTA */
.jadwal-bottom-cta {
  padding: 5rem 0;
  background: radial-gradient(ellipse at 50% 100%, #3d1f0d 0%, var(--bg) 65%);
  border-top: 1px solid var(--border);
}
.jcta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.jcta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .6rem; }
.jcta-inner p { color: var(--text-muted); margin-bottom: 2rem; }
.jcta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
