/* ===================================================
   Downloader by AFTVnews — Global Design System
   Font: Noto Sans Arabic | Direction: RTL
   Colors: Orange #FF6B00 | White #FFFFFF | Navy #1A1A2E
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #FF6B00;
  --primary-dark: #E05A00;
  --primary-light: #FF8C3A;
  --primary-rgb: 255, 107, 0;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --bg-dark: #1A1A2E;
  --bg-dark2: #16213E;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.25s ease;
  --header-h: 72px;
}

/* --- Icon Component Styles --- */
.fa, .fas, .fab, .far {
  margin-left: 8px; /* Spacing for RTL */
  vertical-align: middle;
  line-height: inherit;
  display: inline-block;
  color: inherit;
}

.text-primary .fa, .text-primary .fas {
  color: var(--primary);
}

.social-icon .fab {
  margin-left: 0;
  font-size: 1.25rem;
}

.sidebar-card i {
  color: var(--primary);
}


/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  direction: rtl;
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.93rem; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
}
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 8px !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  right: 0;
  left: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--bg-alt); color: var(--primary); }
.mobile-nav .nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 0.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--bg-alt);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.9rem 2rem; font-size: 0.95rem; border-radius: 14px; }
.btn-xl { padding: 1.1rem 2.4rem; font-size: 1rem; border-radius: 16px; }

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(var(--primary-rgb),0.12) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1.8rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.stat { text-align: center; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.hero-img-wrap {
  position: relative;
  z-index: 1;
}
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* --- Section Header --- */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.section-head h2 { margin-bottom: 0.7rem; }
.section-head p { max-width: 600px; margin: 0 auto; font-size: 0.92rem; }

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12), rgba(var(--primary-rgb),0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}
.feature-card h3 { color: var(--text); margin-bottom: 0.5rem; font-size: 1rem; }
.feature-card p { font-size: 0.85rem; margin: 0; }

/* --- Download Section --- */
.download-box {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f3460 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.download-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb),0.1) 0%, transparent 70%);
}
.download-box h2 { color: #fff; position: relative; margin-bottom: 0.75rem; }
.download-box p { color: rgba(255,255,255,0.7); position: relative; margin-bottom: 2rem; }

/* --- Tech Table --- */
.tech-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.tech-table th {
  background: var(--bg-dark);
  color: #fff;
  padding: 0.85rem 1.25rem;
  text-align: right;
  font-weight: 600;
  font-size: 0.8rem;
}
.tech-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.tech-table tr:last-child td { border-bottom: none; }
.tech-table tr:nth-child(even) td { background: var(--bg-alt); }
.tech-table .badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-success { background: #d1fae5; color: #059669; }
.badge-info { background: #dbeafe; color: #2563eb; }
.badge-warning { background: #fef3c7; color: #d97706; }

/* --- Article Cards --- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 1.4rem; }
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.article-card-meta .cat-badge {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}
.article-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.4; }
.article-card h3 a { color: var(--text); }
.article-card h3 a:hover { color: var(--primary); }
.article-card p { font-size: 0.8rem; margin-bottom: 1rem; color: var(--text-muted); }
.read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.read-more:hover { gap: 0.6rem; }

/* --- Article Page --- */
.page-hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--bg-dark), #0f3460);
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.page-hero-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.article-featured-img {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.article-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-body { font-size: 0.9rem; line-height: 1.85; }
.article-body h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.15);
}
.article-body h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}
.article-body ul, .article-body ol {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.88rem; }
.article-body p { color: var(--text-muted); }
.article-body strong { color: var(--text); }
.article-body .img-hint {
  background: rgba(var(--primary-rgb), 0.07);
  border: 1px dashed rgba(var(--primary-rgb), 0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--primary);
  text-align: center;
  margin: 1.25rem 0;
  font-style: italic;
}
.article-body .tip-box {
  background: #fff8f0;
  border-right: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.87rem;
  color: var(--text);
}
.article-body .tip-box strong { color: var(--primary); }

/* Sidebar */
.sidebar { }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--bg-alt);
}
.sidebar-download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: #fff !important;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.75rem;
  transition: var(--transition);
}
.sidebar-download-btn .icon { font-size: 1.3rem; }
.sidebar-download-btn:hover { background: var(--primary-dark); color: #fff !important; transform: translateY(-2px); }
.related-list { display: flex; flex-direction: column; gap: 0.75rem; }
.related-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.related-item img {
  width: 72px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.related-item a { font-size: 0.8rem; line-height: 1.4; color: var(--text); font-weight: 500; }
.related-item a:hover { color: var(--primary); }
.related-item .date { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 0.2rem; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: right;
  padding: 1rem 1.25rem;
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: var(--transition);
}
.faq-q:hover { color: var(--primary); background: var(--bg-alt); }
.faq-q .arr { transition: transform 0.25s; }
.faq-item.open .faq-q .arr { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; padding-top: 0.75rem; }

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.legal-content h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.legal-content p { margin-bottom: 0.85rem; }
.legal-content ul {
  list-style: disc;
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.4rem; }

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--primary); padding-right: 4px; }
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item .t-icon { font-size: 1.1rem; color: var(--primary); }

/* --- Filter Pills (Blog) --- */
.filter-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}
.pill {
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.pill.active, .pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
}
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
}
.page-btn.active, .page-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: calc(var(--header-h) + 2rem); }
  .section { padding: 3.5rem 0; }
  .hero-stats { gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .trust-bar-inner { gap: 1.2rem; }
}
