/* ═══════════════════════════════════════
   Claude Skills Hub — Page Components
   Hero, sections, grids, notify banner
   ═══════════════════════════════════════ */

/* ── Hero ── */
.hero { padding: 96px 0 80px; text-align: center; }
.hero-inner { max-width: var(--max-width); margin: 0 auto; }
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 20px; line-height: 1.12;
}
.hero-highlight { color: var(--green); }
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 760px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-btns {
  display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap;
}

/* ── Section Heading ── */
.section-heading {
  font-size: 1.6rem; font-weight: 700;
  text-align: center; margin-bottom: 36px;
}

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.features { padding: 64px 0 80px; }

/* ── Notify / CTA Banner ── */
.notify { padding: 0 0 80px; }
.notify-box {
  background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
  border-radius: var(--radius); padding: 44px 52px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.notify-text h2 { font-size:1.5rem; font-weight:700; color:white; margin-bottom:6px; }
.notify-text p  { color:rgba(255,255,255,.82); font-size:.95rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 64px 0 48px; border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p  { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }

/* ── Responsive ── */
@media (max-width:768px) {
  .hero { padding: 64px 0 52px; }
  .notify-box { padding: 28px 24px; flex-direction: column; text-align: center; }
}
@media (max-width:480px) {
  .hero-title { font-size: 2rem; }
}

/* ═══════════════════════════════════════
   Claude Skills Hub — Full UI System
   Nav/dropdowns, mobile drawer, homepage
   sections, cards, footer, animations.
   ═══════════════════════════════════════ */

/* ── Manual theme (toggle overrides OS pref) ── */
[data-theme="light"] {
  --green:#10B981; --green-hover:#07A66E; --green-dark:#059669;
  --green-light:#D1FAE5; --green-xlight:#ECFDF5;
  --bg:#FFFFFF; --bg-alt:#F0FDF4; --surface:#FFFFFF;
  --border:#D1FAE5; --border-gray:#E5E7EB;
  --text:#111827; --text-muted:#6B7280; --text-on-green:#FFFFFF;
}
[data-theme="dark"] {
  --green:#10B981; --green-hover:#34D399; --green-dark:#059669;
  --green-light:#1A3328; --green-xlight:#0F2219;
  --bg:#0A1A13; --bg-alt:#0F2219; --surface:#0F2219;
  --border:#1A3328; --border-gray:#1F2937;
  --text:#F0FDF4; --text-muted:#86EFAC; --text-on-green:#FFFFFF;
}

/* ── Disclaimer bar ── */
.disclaimer-bar {
  background: var(--green-xlight); color: var(--green-dark);
  border-bottom: 1px solid var(--green-light);
  font-size: .8rem; text-align: center; padding: 7px 16px; font-weight: 500;
}

/* ── Sticky header wrapper ── */
.header-sticky { position: sticky; top: 0; z-index: 100; }
.header-sticky .nav { position: static; }

/* ── Nav logo icon + actions ── */
.nav-logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
}
.nav-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-theme-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: all .15s;
}
.nav-theme-btn:hover { color: var(--text); border-color: var(--green-light); }
.icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: inline; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* ── Desktop dropdowns ── */
.nav-links .chevron { margin-left: 3px; transition: transform .2s; }
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s; z-index: 120;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-standard { width: 290px; }
.dropdown-mega { width: 620px; left: 50%; transform: translateX(-50%) translateY(8px); }
.has-dropdown:hover .dropdown-mega,
.has-dropdown:focus-within .dropdown-mega { transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mega-col h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted); margin: 4px 8px 8px; font-family: var(--font-body);
}
.mega-links { list-style: none; }
.dropdown-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 10px; border-radius: var(--radius-sm); color: var(--text);
  transition: background .14s;
}
.dropdown-item:hover { background: var(--bg-alt); text-decoration: none; }
.dropdown-icon {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  background: var(--green-xlight); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.dropdown-info { display: flex; flex-direction: column; }
.dropdown-title { font-size: .85rem; font-weight: 600; color: var(--text); }
.dropdown-desc { font-size: .74rem; color: var(--text-muted); line-height: 1.4; }

/* ── Mobile drawer (hidden on desktop) ── */
.mobile-menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
}
.mobile-drawer-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; z-index: 190;
}
.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
  display: none; position: fixed; top: 0; right: 0; height: 100%;
  width: min(360px, 86vw); background: var(--bg);
  border-left: 1px solid var(--border); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .25s ease; z-index: 200;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mobile-drawer-close {
  background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px;
}
.mobile-drawer-content { flex: 1; overflow-y: auto; padding: 16px 20px; }
.mobile-search-box {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px; color: var(--text-muted);
}
.mobile-search-box input { border: none; background: none; outline: none; width: 100%; color: var(--text); font-size: .9rem; }
.mobile-accordion-list { list-style: none; }
.mobile-accordion-item { border-bottom: 1px solid var(--border); }
.mobile-accordion-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; cursor: pointer; color: var(--text);
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  padding: 14px 2px; text-align: left;
}
.mobile-accordion-btn .chevron { transition: transform .2s; }
.mobile-accordion-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.mobile-accordion-content { list-style: none; display: none; padding: 0 0 12px 4px; }
.mobile-accordion-btn[aria-expanded="true"] + .mobile-accordion-content { display: block; }
.mobile-accordion-content a {
  display: block; padding: 8px 0; font-size: .88rem; color: var(--text-muted);
}
.mobile-accordion-content a:hover { color: var(--green); text-decoration: none; }
.mobile-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.mobile-footer-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.mobile-socials { display: flex; gap: 14px; }
.mobile-socials a { color: var(--text-muted); }
.mobile-socials a:hover { color: var(--green); }

@media (max-width:768px) {
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-drawer, .mobile-drawer-overlay { display: flex; }
}

/* ── Hero extras ── */
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800;
  margin-bottom: 20px; line-height: 1.14;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-xlight); color: var(--green-dark);
  border: 1px solid var(--green-light); border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600; padding: 6px 14px; margin-bottom: 22px;
}
.hero-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse-dot 2.4s infinite; }
.hero-search {
  display: flex; align-items: center; gap: 8px; max-width: 560px;
  margin: 0 auto 18px; background: var(--surface);
  border: 1.5px solid var(--border-gray); border-radius: var(--radius-pill);
  padding: 6px 6px 6px 18px; box-shadow: var(--shadow-sm);
}
.hero-search:focus-within { border-color: var(--green); }
.hero-search-icon { color: var(--text-muted); flex: none; }
.hero-search input { flex: 1; border: none; outline: none; background: none; font-size: .95rem; color: var(--text); }
.hero-search-btn {
  flex: none; background: var(--green); color: #fff; border: none; cursor: pointer;
  font-weight: 600; font-size: .9rem; padding: 10px 22px; border-radius: var(--radius-pill);
}
.hero-search-btn:hover { background: var(--green-hover); }
.hero-trending { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trending-label { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.hero-trending-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.trending-tag {
  font-size: .8rem; color: var(--text-muted); background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 4px 12px;
}
.trending-tag:hover { color: var(--green); border-color: var(--green-light); text-decoration: none; }

/* ── Button variants ── */
.btn-ghost { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--green-xlight); color: var(--green-dark); text-decoration: none; transform: translateY(-1px); }
.btn-secondary { background: var(--green-xlight); color: var(--green-dark); border: 1px solid var(--green-light); }
.btn-secondary:hover { background: var(--green-light); color: var(--green-dark); text-decoration: none; }

/* ── Trust strip ── */
.trust-strip { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.trust-item-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--green); }
.trust-item-label { font-size: .82rem; color: var(--text-muted); }

/* ── Install banner ── */
.install-banner { padding: 22px 0; }
.install-banner-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.install-banner-left { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--text); }
.install-cmd-box {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0A1A13; border-radius: var(--radius-sm); padding: 8px 8px 8px 16px;
}
.install-cmd-box code { font-size: .85rem; color: #86EFAC; }
.install-cmd-box code span { color: #34D399; margin-right: 4px; }
.install-copy-btn {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  background: rgba(255,255,255,.08); color: #D1FAE5; border: none;
  border-radius: 6px; padding: 6px 10px; font-size: .78rem;
}
.install-copy-btn:hover { background: rgba(255,255,255,.16); }
.install-banner-right { font-size: .8rem; color: var(--text-muted); }

/* ── Sections ── */
.section { padding: 64px 0; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}
.section-header-row .section-heading,
.section-header .section-heading { text-align: left; margin-bottom: 8px; }
.section-header .section-heading { text-align: center; }
.section-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--green); margin-bottom: 6px; }
.section-sub { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.view-all { display: inline-flex; align-items: center; gap: 5px; font-size: .88rem; font-weight: 600; color: var(--green); white-space: nowrap; }
.view-all:hover { gap: 8px; text-decoration: none; }

/* ── Collections ── */
.collections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.collection-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.collection-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.collection-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.collection-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.collection-logo {
  width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: .9rem; color: #fff; background: var(--green);
}
.logo-anthropic { background: #D97757; }
.logo-github { background: #24292F; }
.logo-vercel { background: #000; }
.logo-wordpress { background: #21759B; }
.logo-openai { background: #10A37F; }
.logo-microsoft { background: #0078D4; }
.collection-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  font-size: .74rem; font-weight: 500; color: var(--text-muted);
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 3px 10px;
}
.collection-footer { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--text-muted); }

/* ── Badge variants ── */
.badge { margin-bottom: 0; }
.badge-green { background: var(--green-xlight); color: var(--green-dark); border-color: var(--green-light); }
.badge-gold { background: #FEF3C7; color: #B45309; border-color: #FDE68A; }
.badge-indigo { background: #E0E7FF; color: #4338CA; border-color: #C7D2FE; }

/* ── Categories ── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; color: var(--text); transition: transform .18s, border-color .18s, box-shadow .18s;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--green-light); box-shadow: var(--shadow); text-decoration: none; }
.cat-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--green-xlight); color: var(--green-dark);
}
.cat-card-name { font-weight: 600; font-size: .92rem; }
.cat-card-count { font-size: .78rem; color: var(--text-muted); }

/* ── Featured skill cards ── */
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.skill-card-featured {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.skill-card-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.skill-card-featured h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.skill-card-featured p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.skill-card-featured-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.skill-card-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--green-xlight); color: var(--green-dark);
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.skill-install-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; margin-bottom: 14px; }
.skill-install-cmd { font-size: .76rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.skill-install-count { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--text-muted); flex: none; }
.skill-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.skill-rating { display: inline-flex; align-items: center; gap: 5px; font-size: .85rem; font-weight: 600; color: #B45309; }

/* ── Latest grid (small cards) ── */
.latest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.skill-card-sm {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; color: var(--text); transition: transform .18s, border-color .18s, box-shadow .18s;
}
.skill-card-sm:hover { transform: translateY(-3px); border-color: var(--green-light); box-shadow: var(--shadow); text-decoration: none; }
.skill-card-sm h4 { font-size: .95rem; font-weight: 700; }
.skill-card-sm p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }
.skill-card-sm .tag { align-self: flex-start; margin-top: 4px; }

/* ── Top skills leaderboard ── */
.top-skills-list { display: flex; flex-direction: column; gap: 8px; }
.top-skill-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; color: var(--text); transition: border-color .15s, transform .15s;
}
.top-skill-row:hover { border-color: var(--green-light); transform: translateX(3px); text-decoration: none; }
.top-skill-rank { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--text-muted); width: 34px; flex: none; }
.top-skill-rank.gold { color: #D4A017; }
.top-skill-rank.silver { color: #9CA3AF; }
.top-skill-rank.bronze { color: #B45309; }
.top-skill-info { flex: 1; }
.top-skill-info h4 { font-size: .92rem; font-weight: 700; }
.top-skill-info p { font-size: .8rem; color: var(--text-muted); }
.top-skill-cat { font-size: .76rem; color: var(--text-muted); background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 3px 10px; flex: none; }
.top-skill-metric { display: inline-flex; align-items: center; gap: 4px; font-size: .82rem; font-weight: 600; color: var(--green); flex: none; }
@media (max-width:600px) { .top-skill-cat { display: none; } }

/* ── News layout ── */
.news-layout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.news-featured-card, .news-sidebar-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color .18s, box-shadow .18s;
}
.news-featured-card { display: flex; flex-direction: column; }
.news-featured-card:hover, .news-sidebar-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); }
.news-featured-badge-row, .news-sidebar-badge-row { margin-bottom: 14px; }
.news-featured-title { font-size: 1.3rem; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.news-featured-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.news-featured-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; flex-wrap: wrap; gap: 10px; }
.news-source { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.news-read-more-btn { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--green); }
.news-read-more-btn:hover { gap: 9px; text-decoration: none; }
.news-sidebar-list { display: flex; flex-direction: column; gap: 14px; }
.news-sidebar-card { padding: 18px; }
.news-sidebar-source-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.news-sidebar-title { font-size: .95rem; font-weight: 700; line-height: 1.35; }
.news-sidebar-title a { color: var(--text); }
.news-sidebar-title a:hover { color: var(--green); text-decoration: none; }
@media (max-width:768px) { .news-layout-grid { grid-template-columns: 1fr; } }

/* ── Newsletter ── */
.newsletter { padding: 64px 0; }
.newsletter-box {
  background: linear-gradient(135deg, var(--green-xlight), var(--bg-alt));
  border: 1px solid var(--green-light); border-radius: var(--radius);
  padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.newsletter-text h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.newsletter-text p { font-size: .9rem; color: var(--text-muted); }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-input {
  height: 48px; min-width: 240px; flex: 1; padding: 0 16px; font-size: .9rem;
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border-gray); border-radius: var(--radius-sm); outline: none;
}
.newsletter-input:focus { border-color: var(--green); }

/* ── Footer (extended) ── */
.footer { border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-newsletter-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; max-width: 680px; margin: 0 auto 48px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.footer-newsletter-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.footer-newsletter-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 28px; margin-bottom: 40px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text); margin-bottom: 14px; font-family: var(--font-body); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom-columns { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: .82rem; color: var(--text-muted); }
.footer-disclaimer-text { font-size: .78rem; color: var(--text-muted); line-height: 1.6; margin-top: 10px; max-width: 720px; }
.footer-social-row { display: flex; gap: 14px; }
.footer-social-row a { color: var(--text-muted); }
.footer-social-row a:hover { color: var(--green); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; padding: 18px 20px; font-weight: 600; font-size: .95rem; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { flex: none; transition: transform .2s; color: var(--text-muted); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 20px 18px; font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.faq-body code { background: var(--bg-alt); padding: 1px 6px; border-radius: 4px; font-size: .85em; }

/* ── Utilities ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Reveal animation (self-contained, ends visible) ── */
@keyframes reveal-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal { animation: reveal-in .6s ease both; }
.reveal-delay-1 { animation-delay: .07s; }
.reveal-delay-2 { animation-delay: .14s; }
.reveal-delay-3 { animation-delay: .21s; }
.reveal-delay-4 { animation-delay: .28s; }
.reveal-delay-5 { animation-delay: .35s; }
.reveal-delay-6 { animation-delay: .42s; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* ── Section-row responsive ── */
@media (max-width:768px) {
  .section { padding: 48px 0; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}
