/**
 * components.css — مكونات واجهة المستخدم
 */

/* ─── HERO ─── */
.hero {
  background: var(--gradient-hero); padding: 80px 24px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: 'العوامي'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + var(--parallax-y, 0px)));
  font-size: 200px; font-weight: 900;
  opacity: .018; font-family: var(--font-heading); pointer-events: none; white-space: nowrap;
  transition: none;
}
.hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero h2 { font-size: 42px; font-weight: 900; color: var(--green-dark); margin-bottom: 18px; font-family: var(--font-heading); line-height: 1.3; }
.hero p { font-size: 17px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.9; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-meta { display: flex; justify-content: center; gap: 48px; margin-top: 28px; }
.hero-meta div { text-align: center; position: relative; }
.hero-meta div:not(:last-child)::after {
  content: ''; position: absolute; left: -24px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: var(--border);
}
.hero-meta .num { font-size: 36px; font-weight: 900; color: var(--green); line-height: 1.2; }
.hero-meta .lbl { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* ─── COUNTDOWN ─── */
.countdown-box {
  background: var(--gradient-green); color: #fff; border-radius: 18px;
  padding: 28px; margin-top: 36px; text-align: center;
  box-shadow: 0 8px 32px rgba(45,107,64,.3); animation: fadeInUp .8s ease-out .45s both;
}
.countdown-title { font-size: 15px; font-weight: 700; opacity: .95; }
.countdown-timer { display: flex; justify-content: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.countdown-item {
  background: rgba(255,255,255,.12); border-radius: 14px; padding: 16px 22px;
  min-width: 85px; border: 1px solid rgba(255,255,255,.1); transition: transform .2s;
}
.countdown-item:hover { transform: scale(1.05); }
.countdown-num { font-size: 30px; font-weight: 900; line-height: 1; }
.countdown-label { font-size: 11px; opacity: .75; margin-top: 6px; font-weight: 600; }

/* ─── COUNCIL CARDS ─── */
.council-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.council-card {
  background: var(--surface); border-radius: 18px; padding: 28px; border: 2px solid var(--border);
  transition: all .35s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden;
}
.council-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(61,139,55,.06), transparent);
}
.council-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.council-card.president { border-color: var(--accent); background: var(--gradient-card); }
.council-card.president::before { background: radial-gradient(circle at top right, rgba(200,168,75,.08), transparent); }
.council-card.advisory { border-color: var(--primary); }
[data-theme="dark"] .council-card.advisory { background: linear-gradient(145deg, #101828, #1a2a1e); }
[data-theme="light"] .council-card.advisory { background: linear-gradient(145deg, #f0f4ff, #fff); }
.council-card.advisory::before { background: radial-gradient(circle at top right, rgba(27,52,86,.06), transparent); }
.council-icon {
  width: 50px; height: 50px; background: var(--gradient-green); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 16px; box-shadow: 0 4px 12px rgba(45,107,64,.2);
}
.council-card.president .council-icon { background: linear-gradient(135deg, #c8a84b, #b8952e); box-shadow: 0 4px 12px rgba(200,168,75,.3); }
.council-card.advisory .council-icon { background: linear-gradient(135deg, #1B3456, #2a4a7a); box-shadow: 0 4px 12px rgba(27,52,86,.2); }
.council-role { font-size: 13px; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; }
.council-name { font-size: 16px; font-weight: 800; color: var(--green-dark); margin-bottom: 14px; line-height: 1.5; }
.council-tasks { font-size: 13px; color: var(--text-muted); list-style: none; }
.council-tasks li { margin-bottom: 7px; padding-right: 18px; position: relative; line-height: 1.6; }
.council-tasks li::before { content: ''; position: absolute; right: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ─── COMMITTEE CARDS ─── */
.committees-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.committee-card { background: var(--surface); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); transition: all .35s cubic-bezier(.22,1,.36,1); }
.committee-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-6px); border-color: transparent; }
.committee-banner { height: 90px; display: flex; align-items: center; justify-content: center; font-size: 36px; position: relative; }
.committee-badge { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.95); color: var(--green-dark); padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.committee-body { padding: 20px; }
.committee-title { font-size: 15px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.committee-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.committee-members { font-size: 12px; color: var(--text-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); font-weight: 600; }

/* ─── VALUE CARDS ─── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--surface); border-radius: 18px; padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: all .35s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--green); border-radius: 0 0 3px 3px; transition: width .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.value-card:hover::before { width: 100%; }
.value-icon { font-size: 42px; margin-bottom: 14px; }
.value-title { font-size: 17px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-content h3 { font-size: 26px; font-weight: 900; color: var(--green-dark); margin-bottom: 14px; position: relative; padding-bottom: 12px; }
.about-content h3::after { content: ''; position: absolute; bottom: 0; right: 0; width: 50px; height: 3px; background: var(--green); border-radius: 2px; }
.about-content p { margin-bottom: 18px; line-height: 1.9; color: var(--text-muted); font-size: 15px; }
.about-visual {
  background: var(--gradient-green); border-radius: 24px; padding: 48px;
  display: flex; align-items: center; justify-content: center; min-height: 320px;
  box-shadow: 0 12px 40px rgba(45,107,64,.25); position: relative; overflow: hidden;
}
.about-visual::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,.04), transparent 70%); }
.about-visual svg { width: 100%; max-width: 220px; height: auto; position: relative; z-index: 1; }

/* ─── TREE ─── */
.tree-root { text-align: center; margin-bottom: 40px; position: relative; }
.tree-root::after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 2px; height: 20px; background: var(--green); }
.tree-root-box { background: var(--gradient-green); color: #fff; border-radius: 16px; padding: 20px 36px; display: inline-block; box-shadow: 0 8px 28px rgba(45,107,64,.3); }
.tree-root-box h3 { font-size: 22px; font-weight: 900; font-family: var(--font-heading); }
.tree-root-box p { font-size: 11px; opacity: .7; margin-top: 4px; }
.tree-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.tree-branch { background: var(--surface); border-radius: 14px; padding: 22px; border: 2px solid var(--border); transition: all .3s; text-align: center; }
.tree-branch:hover { border-color: var(--green); box-shadow: 0 6px 20px rgba(71,145,92,.15); transform: translateY(-4px); }
.tree-branch-name { font-size: 17px; font-weight: 800; color: var(--green-dark); margin-bottom: 4px; }
.tree-branch-head { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.tree-branch-stat { background: var(--green-light); padding: 10px; border-radius: 10px; }
.tree-branch-num { font-size: 22px; font-weight: 900; color: var(--green); }
.tree-branch-label { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* ─── EVENTS ─── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; max-width: 1200px; margin: 0 auto; }
.event-card { background: var(--surface); border-radius: 16px; padding: 22px; border: 1px solid var(--border); transition: all .35s cubic-bezier(.22,1,.36,1); display: flex; gap: 16px; align-items: flex-start; }
.event-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(71,145,92,.16); transform: translateY(-4px); }
.event-icon { font-size: 32px; flex-shrink: 0; width: 52px; height: 52px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.event-info { flex: 1; min-width: 0; }
.event-name { font-size: 15px; font-weight: 800; color: var(--green-dark); margin-bottom: 6px; line-height: 1.4; }
.event-date { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.event-lead { font-size: 12px; color: var(--text-muted); }

/* ─── MEDIA GALLERY ─── */
.media-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.media-tab {
  padding: 10px 22px; border: 2px solid var(--border); background: var(--surface);
  border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 14px;
  transition: all .25s; font-family: var(--font-body); color: var(--text);
}
.media-tab.active { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 4px 12px rgba(71,145,92,.3); }
.media-tab:hover:not(.active) { border-color: var(--green); color: var(--green); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.media-item { background: var(--surface); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all .35s; border: 1px solid var(--border); }
.media-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.media-item img, .media-item video { width: 100%; height: 200px; object-fit: cover; }
.media-item img { cursor: pointer; }
.media-item-content { padding: 18px; }
.media-item-title { font-weight: 700; font-size: 15px; color: var(--text); }
.media-item-date { font-size: 12px; color: var(--text-muted); margin: 6px 0 10px; }
.media-item-tag { display: inline-block; padding: 4px 12px; background: var(--green-light); border-radius: 8px; font-size: 11px; margin-left: 4px; color: var(--green-dark); font-weight: 600; }
.media-item.hiding { opacity: 0; transform: scale(.97); pointer-events: none; }
/* YouTube embed */
.media-item-youtube { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.media-item-youtube iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9000; display: none; align-items: center; justify-content: center; padding: 16px; }
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; box-shadow: 0 8px 40px rgba(0,0,0,.6); }
.lightbox-close { position: fixed; top: 18px; left: 18px; background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 24px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 9001; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 24px; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: background .2s; z-index: 9001; }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { right: 16px; }
.lightbox-next { left: 16px; }
.lightbox-caption { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; font-weight: 700; text-align: center; background: rgba(0,0,0,.5); padding: 8px 20px; border-radius: 20px; max-width: 80vw; z-index: 9001; }

/* ─── FOCUS VISIBLE (keyboard accessibility) ─── */
.accordion-header:focus-visible,
.media-tab:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.cta-btn:focus-visible,
.news-page-btn:focus-visible,
.section-link-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* ─── EID CARD ─── */
.eid-section { max-width: 800px; margin: 0 auto; }
.eid-wrapper { background: var(--surface); border-radius: 24px; padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,.08); border: 1px solid var(--border); }
.eid-label { display: block; font-weight: 800; margin-bottom: 10px; font-size: 16px; color: var(--green-dark); }
.eid-input { width: 100%; padding: 16px 20px; border: 2px solid var(--border); border-radius: 12px; font-size: 18px; font-family: var(--font-saudi); transition: all .25s; background: var(--bg); color: var(--text); margin-bottom: 8px; }
.eid-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(61,139,55,.1); }
.eid-live-preview {
  position: relative; margin: 12px 0 20px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12); border: 1px solid var(--border);
  background: var(--green-light);
}
.eid-live-preview canvas { display: block; width: 100%; height: auto; }
.eid-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.eid-controls .eid-input { margin-bottom: 0; font-size: 15px; padding: 12px 16px; cursor: pointer; }
.eid-range { width: 100%; cursor: pointer; accent-color: var(--green); margin: 8px 0 4px; direction: ltr; }
.eid-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.eid-btn { width: 100%; padding: 16px; background: var(--gradient-green); color: #fff; border: none; border-radius: 12px; font-size: 18px; font-weight: 800; cursor: pointer; transition: all .3s; font-family: var(--font-saudi); box-shadow: 0 4px 16px rgba(45,107,64,.3); }
.eid-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,107,64,.4); }
.eid-preview { display: none; margin-top: 24px; }
.eid-canvas-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.eid-canvas-wrap canvas { width: 100%; display: block; }
.eid-actions { margin-top: 20px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.eid-action-btn { padding: 14px 28px; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .25s; font-family: var(--font-saudi); }
.eid-action-btn:hover { transform: translateY(-2px); }
.eid-dl { background: var(--green); color: #fff; box-shadow: 0 4px 12px rgba(71,145,92,.3); }
.eid-sh { background: #25D366; color: #fff; box-shadow: 0 4px 12px rgba(37,211,102,.3); }
.eid-hint { margin-top: 24px; text-align: center; color: var(--text-muted); font-size: 13px; }

/* ─── SECTION LINK CARDS (Homepage) ─── */
.section-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.section-link-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; border: 1px solid var(--border); transition: all .35s;
  text-decoration: none; color: var(--text); display: block;
}
.section-link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.section-link-icon { font-size: 42px; margin-bottom: 14px; }
.section-link-title { font-size: 17px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.section-link-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── NEWS CARDS ─── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.news-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all .35s cubic-bezier(.22,1,.36,1);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.news-card-img { height: 180px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-placeholder { background: var(--gradient-hero); display: flex; align-items: center; justify-content: center; }
.news-card-placeholder span { font-size: 48px; opacity: .3; }
.news-card-body { padding: 20px; }
.news-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 12px; color: var(--text-muted); }
.news-card-cat { background: var(--green-light); color: var(--green-dark); padding: 3px 12px; border-radius: 20px; font-weight: 700; }
.news-card-title { font-size: 17px; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; line-height: 1.5; }
.news-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.news-card-details { margin-bottom: 10px; }
.news-card-details summary { color: var(--green); font-weight: 700; font-size: 13px; cursor: pointer; }
.news-card-content { margin-top: 10px; font-size: 14px; color: var(--text); line-height: 1.8; }
.news-card-author { font-size: 12px; color: var(--text-muted); font-weight: 600; margin-top: 8px; }
.news-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.news-page-btn {
  padding: 10px 18px; border: 2px solid var(--border); background: var(--surface);
  border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 14px;
  transition: all .25s; font-family: inherit; color: var(--text);
}
.news-page-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.news-page-btn:hover:not(.active) { border-color: var(--green); color: var(--green); }
@media (max-width: 768px) { .news-grid { grid-template-columns: 1fr; } }

/* ─── ACCORDION ─── */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: all .3s;
}
.accordion-item:hover { border-color: var(--green); }
.accordion-header {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 700;
  color: var(--green-dark); text-align: right; transition: all .25s;
}
.accordion-header:hover { background: var(--bg-alt); }
.accordion-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-light); color: var(--green); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-item.open .accordion-header { color: var(--green); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.accordion-body-inner {
  padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.8;
}

/* ─── EVENTS FULL PAGE ─── */
.events-full-grid { display: flex; flex-direction: column; gap: 16px; }
.event-full-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid var(--border); transition: all .35s; display: flex; gap: 20px; align-items: flex-start;
}
.event-full-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.event-full-card.hiding { opacity: 0; transform: scale(.98); pointer-events: none; }
.event-full-icon {
  font-size: 36px; flex-shrink: 0; width: 60px; height: 60px;
  background: var(--green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.event-full-body { flex: 1; min-width: 0; }
.event-full-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.event-full-name { font-size: 17px; font-weight: 800; color: var(--green-dark); margin: 0; }
.event-full-status { padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.event-full-meta { display: flex; gap: 18px; font-size: 13px; color: var(--text-muted); font-weight: 600; flex-wrap: wrap; }
.event-full-notes { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 8px; }
@media (max-width: 600px) {
  .event-full-card { flex-direction: column; gap: 12px; }
  .event-full-header { flex-direction: column; align-items: flex-start; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-meta div:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
  .hero { padding: 50px 20px 40px; }
  .hero h2 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .hero-meta { gap: 24px; flex-wrap: wrap; }
  .hero-meta .num { font-size: 28px; }
  .countdown-timer { gap: 10px; }
  .countdown-item { min-width: 72px; padding: 12px 16px; }
  .countdown-num { font-size: 24px; }
  .council-grid, .committees-grid, .values-grid, .media-grid { grid-template-columns: 1fr; gap: 14px; }
  .tree-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .events-grid { grid-template-columns: 1fr; }
  .eid-wrapper { padding: 24px; }
  .eid-actions { flex-direction: column; }
  .eid-action-btn { width: 100%; }
  .eid-controls { grid-template-columns: 1fr; }
  .section-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h2 { font-size: 26px; }
  .tree-grid { grid-template-columns: 1fr; }
  .logo-text h1 { font-size: 16px; }
  .section-links-grid { grid-template-columns: 1fr; }
}
