/* ============================================================
   ALMOQAYADA — Main Stylesheet
   ============================================================ */

:root {
  --orange: #F47B20;
  --yellow: #F5C518;
  --green:  #3DAA5C;
  --blue:   #2563EB;
  --dark:   #111827;
  --mid:    #374151;
  --light:  #F9FAFB;
  --white:  #ffffff;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --max-w:  1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── NAV ───────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: 68px; display: flex; align-items: center;
  padding: 0 5vw;
  justify-content: space-between;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.site-branding { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; color: white; font-size: 13px;
  flex-shrink: 0;
}
.site-title {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px;
  color: var(--dark);
}
.site-title em { color: var(--orange); font-style: normal; }
.site-title a:hover { color: var(--orange); }

.primary-nav ul { display: flex; gap: 28px; }
.primary-nav a {
  font-size: 14px; font-weight: 500; color: var(--mid);
  transition: color .2s; white-space: nowrap;
}
.primary-nav a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange); color: white !important;
  padding: 10px 22px; border-radius: 40px;
  font-weight: 600; font-size: 14px;
  font-family: 'Syne', sans-serif;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,123,32,0.35);
  color: white !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px; transition: all .3s;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff7ed 0%, #fef9e7 50%, #f0fdf4 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5vw 60px;
  position: relative; overflow: hidden; text-align: center;
}
.hero-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,170,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; width: 100%; }

.hero-badge {
  display: inline-block;
  background: rgba(244,123,32,0.12); color: var(--orange);
  border: 1px solid rgba(244,123,32,0.3);
  padding: 6px 18px; border-radius: 40px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
  animation: fadeUp .6s ease both;
}
.hero-section h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both;
}
.accent-orange { color: var(--orange); }
.accent-green  { color: var(--green); }
.accent-blue   { color: var(--blue); }

.hero-sub {
  font-size: 1.1rem; color: var(--mid); max-width: 620px;
  margin: 0 auto 40px; line-height: 1.75;
  animation: fadeUp .6s .2s ease both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 64px; animation: fadeUp .6s .3s ease both;
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .6s .4s ease both;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--dark);
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 13px; color: #6b7280; margin-top: 2px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--orange); color: white;
  padding: 15px 34px; border-radius: 50px;
  font-weight: 700; font-size: 15px; font-family: 'Syne', sans-serif;
  transition: all .25s; border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244,123,32,0.4);
  color: white;
}
.btn-secondary {
  display: inline-block; background: white; color: var(--dark);
  padding: 15px 34px; border-radius: 50px;
  font-weight: 600; font-size: 15px; font-family: 'Syne', sans-serif;
  border: 2px solid #e5e7eb; transition: all .25s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-white {
  display: inline-block; background: white; color: var(--orange);
  padding: 18px 44px; border-radius: 50px;
  font-weight: 800; font-size: 16px; font-family: 'Syne', sans-serif;
  transition: all .25s; border: none; cursor: pointer;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  color: var(--orange);
}

/* ── SECTIONS COMMONS ───────────────────────────────────────── */
.section { padding: 96px 5vw; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800; margin-bottom: 16px;
}
.section-sub {
  color: var(--mid); font-size: 1.05rem;
  line-height: 1.75; max-width: 560px;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { background: white; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px; margin-top: 56px;
}
.how-card {
  background: var(--light); border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid #f3f4f6;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-card::before {
  content: attr(data-step);
  position: absolute; top: -14px; right: 16px;
  font-family: 'Syne', sans-serif; font-size: 5.5rem; font-weight: 800;
  color: rgba(0,0,0,0.04); line-height: 1; pointer-events: none;
}
.how-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.how-icon.orange { background: rgba(244,123,32,0.12); }
.how-icon.green  { background: rgba(61,170,92,0.12); }
.how-icon.blue   { background: rgba(37,99,235,0.10); }
.how-icon.yellow { background: rgba(245,197,24,0.15); }
.how-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.how-card p  { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ── CATEGORIES ─────────────────────────────────────────────── */
.categories-section { background: var(--dark); padding: 96px 5vw; }
.categories-section .section-label { color: var(--yellow); }
.categories-section .section-title { color: white; }
.categories-section .section-sub   { color: rgba(255,255,255,0.6); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px; margin-top: 56px;
}
.cat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 18px;
  text-align: center; cursor: pointer;
  transition: all .25s; text-decoration: none; display: block;
}
.cat-card:hover {
  background: rgba(244,123,32,0.15);
  border-color: rgba(244,123,32,0.4);
  transform: translateY(-3px);
}
.cat-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
.cat-name  { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 600; color: white; }
.cat-count { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── AI MATCHING ────────────────────────────────────────────── */
.ai-section {
  background: linear-gradient(135deg, #f0fdf4, #fff7ed);
  padding: 96px 5vw;
}
.ai-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.ai-visual {
  background: white; border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow);
}
.ai-visual-header {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1rem; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.live-badge {
  background: rgba(61,170,92,0.1); color: var(--green);
  font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 700;
}
.match-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--light); border-radius: 12px; padding: 14px 16px;
  border: 1px solid #e5e7eb; margin-bottom: 12px;
}
.match-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.match-info { flex: 1; }
.match-name  { font-weight: 600; font-size: 0.88rem; margin-bottom: 2px; }
.match-offer { font-size: 0.78rem; color: var(--mid); }
.match-tag {
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap;
}
.tag-offer { background: rgba(61,170,92,0.12); color: var(--green); }
.tag-need  { background: rgba(37,99,235,0.10);  color: var(--blue); }
.ai-arrow {
  text-align: center; font-size: 1.2rem; color: var(--orange);
  font-weight: 800; display: flex; align-items: center;
  justify-content: center; gap: 10px; margin: 4px 0 12px;
}
.ai-match-badge {
  background: var(--green); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.match-result {
  padding: 12px 16px; background: rgba(61,170,92,0.07);
  border-radius: 10px; font-size: 0.8rem; color: var(--green);
  font-weight: 600; border: 1px solid rgba(61,170,92,0.2);
}
.ai-features { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.ai-feature { display: flex; align-items: flex-start; gap: 14px; }
.ai-feature-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(244,123,32,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ai-feature-text h4 { font-size: 0.93rem; font-weight: 700; margin-bottom: 4px; }
.ai-feature-text p  { font-size: 0.83rem; color: var(--mid); line-height: 1.55; }

/* ── BUSINESS MODELS ────────────────────────────────────────── */
.biz-section { background: white; padding: 96px 5vw; }
.biz-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.biz-card {
  border-radius: var(--radius); padding: 36px;
  position: relative; transition: transform .25s;
}
.biz-card:hover { transform: translateY(-4px); }
.biz-card.p2p { background: linear-gradient(135deg,#fff7ed,#fef3c7); border: 1px solid rgba(244,123,32,0.2); }
.biz-card.b2c { background: linear-gradient(135deg,#f0fdf4,#dcfce7); border: 1px solid rgba(61,170,92,0.2); }
.biz-card.b2b { background: linear-gradient(135deg,#eff6ff,#dbeafe); border: 1px solid rgba(37,99,235,0.2); }
.biz-tag {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.biz-card.p2p .biz-tag { background: rgba(244,123,32,0.15); color: var(--orange); }
.biz-card.b2c .biz-tag { background: rgba(61,170,92,0.15);  color: var(--green); }
.biz-card.b2b .biz-tag { background: rgba(37,99,235,0.12);  color: var(--blue); }
.biz-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.biz-card p  { font-size: 0.88rem; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.biz-example {
  background: rgba(255,255,255,0.7); border-radius: 10px; padding: 14px 16px;
  font-size: 0.8rem; color: var(--mid); font-style: italic; line-height: 1.55;
}

/* ── MARKET & ROADMAP ───────────────────────────────────────── */
.market-section { padding: 96px 5vw; background: var(--light); }
.market-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  max-width: 1100px; margin: 56px auto 0;
}
.market-numbers { display: flex; flex-direction: column; gap: 20px; }
.market-card {
  background: white; border-radius: var(--radius); padding: 24px 28px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 18px;
}
.market-icon {
  font-size: 2.2rem; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,123,32,0.08); border-radius: 14px; flex-shrink: 0;
}
.market-big { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; }
.market-big span { color: var(--orange); }
.market-label { font-size: 0.82rem; color: var(--mid); }
.market-roadmap {
  background: white; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.market-roadmap h3 { font-size: 1.1rem; margin-bottom: 24px; }
.roadmap-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid #f3f4f6;
}
.roadmap-item:last-child { border: none; margin: 0; padding: 0; }
.roadmap-year {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.82rem; min-width: 52px; color: var(--orange);
}
.roadmap-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 5px;
}
.roadmap-info h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.roadmap-info p  { font-size: 0.78rem; color: var(--mid); }

/* ── ACTION PLAN ────────────────────────────────────────────── */
.action-section { padding: 96px 5vw; background: var(--dark); }
.action-section .section-label { color: var(--yellow); }
.action-section .section-title { color: white; }
.action-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 56px;
}
.action-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 30px;
  transition: all .25s;
}
.action-card:hover {
  background: rgba(244,123,32,0.12);
  border-color: rgba(244,123,32,0.3);
}
.action-phase {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.action-card h3 { font-size: 1.05rem; color: white; margin-bottom: 14px; }
.action-list { display: flex; flex-direction: column; gap: 10px; }
.action-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.action-list li::before { content: '→'; color: var(--orange); flex-shrink: 0; font-weight: 700; }

/* ── TRUST ──────────────────────────────────────────────────── */
.trust-section { padding: 96px 5vw; background: white; }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px; margin-top: 56px;
}
.trust-card {
  background: var(--light); border-radius: var(--radius); padding: 30px;
  text-align: center; border: 1px solid #e5e7eb;
  transition: transform .25s, box-shadow .25s;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust-icon { font-size: 2.2rem; margin-bottom: 14px; }
.trust-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p  { font-size: 0.83rem; color: var(--mid); line-height: 1.6; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: 100px 5vw; text-align: center;
  background: linear-gradient(135deg, var(--orange), #e8650a);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 600px;
  border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); color: white;
  margin-bottom: 18px; position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  margin-bottom: 40px; position: relative;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #0d1117; color: rgba(255,255,255,0.5);
  padding: 56px 5vw 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand h3 { font-size: 1.3rem; color: white; margin-bottom: 12px; }
.footer-brand p  { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4   { font-size: 0.83rem; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { color: rgba(255,255,255,0.25); }

/* ── BLOG / ARCHIVE ─────────────────────────────────────────── */
.page-header { padding: 120px 5vw 60px; background: white; border-bottom: 1px solid #f3f4f6; }
.page-header h1 { font-size: 2.5rem; }

.posts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; padding: 60px 5vw; max-width: 1200px; margin: 0 auto;
}
.post-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card-img img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-body h2 { font-size: 1.1rem; margin-bottom: 10px; }
.post-card-body h2 a:hover { color: var(--orange); }
.post-card-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }
.post-meta { font-size: 0.78rem; color: #9ca3af; margin-top: 12px; }

/* ── SINGLE POST ────────────────────────────────────────────── */
.single-post-wrap { max-width: 760px; margin: 120px auto 80px; padding: 0 5vw; }
.single-post-wrap h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.post-content { font-size: 1rem; line-height: 1.85; color: var(--mid); margin-top: 32px; }
.post-content h2,h3 { color: var(--dark); margin: 32px 0 16px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--orange); text-decoration: underline; }
.post-content img { border-radius: var(--radius); margin: 24px 0; }

/* ── ANNONCES ARCHIVE ───────────────────────────────────────── */
.annonces-header {
  padding: 120px 5vw 48px; background: var(--dark); color: white;
}
.annonces-header h1 { color: white; font-size: 2.5rem; }
.annonces-header p  { color: rgba(255,255,255,0.6); margin-top: 12px; }

.annonces-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; padding: 56px 5vw; max-width: 1200px; margin: 0 auto;
}
.annonce-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform .25s, box-shadow .25s;
  border: 1px solid #f3f4f6;
}
.annonce-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.annonce-img img { width: 100%; height: 180px; object-fit: cover; }
.annonce-body  { padding: 20px; }
.annonce-cat {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange); margin-bottom: 8px;
}
.annonce-body h3 { font-size: 1rem; margin-bottom: 8px; }
.annonce-body h3 a:hover { color: var(--orange); }
.annonce-body p { font-size: 0.82rem; color: var(--mid); line-height: 1.55; }
.annonce-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; border-top: 1px solid #f3f4f6;
  font-size: 0.78rem; color: #9ca3af;
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .primary-nav.open { display: block; }
  .nav-toggle { display: flex; }

  .primary-nav ul { flex-direction: column; }
  .primary-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; padding: 20px 5vw 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-bottom: 1px solid #f3f4f6;
  }
  .primary-nav li { border-bottom: 1px solid #f9fafb; }
  .primary-nav a  { display: block; padding: 12px 0; font-size: 15px; }

  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
  .market-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .section { padding: 72px 5vw; }
}

@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-section h1 { font-size: 2rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
