/* ============================================================
   Mywishbucket: all-in-one content platform (US / credit card)
   Style: Soft Modern. Light cool bg, white cards, teal/mint accent,
   rounded corners, soft shadows, teal gradient category bar.
   ============================================================ */

:root {
  --accent:      #17a794;
  --accent-2:    #0f8b7c;
  --accent-3:    #0c6f63;
  --accent-soft: rgba(23, 167, 148, 0.10);
  --mint:        #43c2ac;
  --nav-1:       #48c4ae;
  --nav-2:       #23998a;
  --bg:          #f2f6f6;
  --surface:     #ffffff;
  --surface-2:   #eaf3f1;
  --fg:          #1c2b33;
  --muted:       #647885;
  --border:      #e0eae9;
  --green:       #1faa6a;
  --footer-bg:   #0d1a22;
  --footer-fg:   #cfd8dd;
  --footer-mut:  #7d8b95;
  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 999px;
  --shadow:      0 10px 30px -14px rgba(18, 46, 43, 0.18);
  --shadow-soft: 0 6px 20px -10px rgba(18, 46, 43, 0.14);
  --shadow-hover:0 20px 44px -18px rgba(23, 167, 148, 0.42);
  --type-lg:     clamp(2.5rem, 5.6vw, 4.4rem);
  --type-md:     clamp(1.6rem, 3vw, 2.4rem);
  --type-sm:     clamp(1.1rem, 2vw, 1.3rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── Layout helpers ── */
.container { width: min(1180px, 92vw); margin-inline: auto; }
section { padding-block: clamp(3rem, 7vw, 5.5rem); }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: var(--type-lg); }
h2 { font-size: var(--type-md); margin-bottom: 1rem; }
h3 { font-size: var(--type-sm); margin-bottom: 0.5rem; }
p  { max-width: 66ch; }

.accent { color: var(--accent); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.tag {
  display: inline-block; background: var(--accent-soft); color: var(--accent);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35em 0.9em; border-radius: var(--radius-pill); margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.01em;
  padding: 0.85em 1.9em; border-radius: var(--radius-pill); cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--mint), var(--accent-2));
  color: #fff; box-shadow: 0 10px 24px -10px rgba(23, 167, 148, 0.6);
}
.btn-primary:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-ghost {
  background: var(--surface); color: var(--accent-2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { text-decoration: none; border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { font-size: 1rem; padding: 1em 2.4em; }

/* ── HEADER ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; padding-block: 0.85rem; }
.wordmark { display: inline-flex; align-items: center; gap: 0.55rem; margin-right: auto; line-height: 1; }
.wordmark:hover { text-decoration: none; }
.wordmark img { height: 32px; width: auto; }
.wm-mark { width: 30px; height: 30px; flex-shrink: 0; }
.wm-text { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.03em; color: var(--fg); }
.wm-text em { font-style: normal; color: var(--accent); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--fg); font-size: 1.2rem; padding: 0.3em 0.6em; cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); }
nav ul { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
nav ul li a {
  color: var(--muted); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  transition: color 0.2s;
}
nav ul li a:hover, nav ul li a:focus-visible { color: var(--accent); text-decoration: none; }
.nav-cta { color: #fff !important; background: linear-gradient(135deg, var(--mint), var(--accent-2));
  padding: 0.55em 1.2em; border-radius: var(--radius-pill); box-shadow: 0 8px 20px -10px rgba(23,167,148,0.6); }
.nav-cta:hover { transform: translateY(-1px); }

/* ── CATEGORY BAR (mint gradient, icon rail) ── */
.catbar { background: linear-gradient(100deg, var(--nav-1), var(--nav-2)); position: relative; z-index: 90; }
.catbar-inner {
  display: flex; align-items: stretch; justify-content: center; gap: 0.4rem;
  flex-wrap: wrap; padding-block: 0.4rem;
}
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 0.75rem 1.4rem; color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 12px; transition: background 0.2s, color 0.2s; position: relative;
}
.cat-item svg { width: 26px; height: 26px; }
.cat-item:hover, .cat-item:focus-visible { color: #fff; text-decoration: none; background: rgba(255, 255, 255, 0.14); }
.cat-item.is-active { color: #fff; background: rgba(255, 255, 255, 0.16); }
.cat-item.is-active::after {
  content: ""; position: absolute; left: 30%; right: 30%; bottom: 4px; height: 3px;
  background: #fff; border-radius: 3px;
}

/* ── HERO ── */
#hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
#hero::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(67, 194, 172, 0.20), transparent 62%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 560px; }
.hero-title { font-size: var(--type-lg); font-weight: 900; letter-spacing: -0.035em; }
.hero-title .hl { display: block; }
.hero-title .hl-2 { color: var(--accent); }
.hero-sub { margin-top: 1.3rem; color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 46ch; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hstat-num { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.hstat-label { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* floating glass icon cluster */
.hero-visual { position: relative; min-height: 360px; }
.hero-visual::before {
  content: ""; position: absolute; inset: 8% 4%; border-radius: 40px;
  background: linear-gradient(150deg, rgba(72, 196, 174, 0.16), rgba(35, 153, 138, 0.06));
}
.float-card {
  position: absolute; width: 116px; height: 116px; border-radius: 26px;
  background: rgba(255, 255, 255, 0.72); border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px -18px rgba(18, 46, 43, 0.35); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  animation: floaty 6s ease-in-out infinite;
}
.float-card svg { width: 52px; height: 52px; }
.float-card.fc1 { top: 4%;  left: 8%;  }
.float-card.fc2 { top: 30%; left: 40%; animation-delay: -1.5s; }
.float-card.fc3 { top: 8%;  right: 6%; animation-delay: -3s; }
.float-card.fc4 { bottom: 8%; left: 20%; animation-delay: -2.2s; }
.float-card.fc5 { bottom: 4%; right: 14%; animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } }

/* ── PORTALS ── */
#portals { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 0.4rem; }
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.portal {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem 1.6rem; text-align: center;
  box-shadow: var(--shadow-soft); transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
}
.portal:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(23,167,148,0.4); }
.portal-ico {
  width: 92px; height: 92px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: linear-gradient(140deg, var(--mint), var(--accent-2));
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 14px 30px -12px rgba(23, 167, 148, 0.55);
}
.portal-ico svg { width: 46px; height: 46px; }
.portal h3 { font-size: 1.3rem; margin-bottom: 0.35rem; color: var(--fg); }
.portal p { color: var(--muted); font-size: 0.92rem; margin: 0 auto; max-width: 26ch; }
.portal-hit { position: absolute; inset: 0; border: none; background: transparent; cursor: pointer; border-radius: var(--radius); }
.portal-hit:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }

/* ── FEATURED ── */
#featured .featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.feat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem; color: #fff; box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 32, 0.9) 8%, rgba(10, 26, 32, 0.35) 55%, rgba(10, 26, 32, 0.15) 100%);
  z-index: 1;
}
.feat-fitness  { background: linear-gradient(150deg, #2bb6a0, #0c6f63); }
.feat-docus    { background: linear-gradient(150deg, #3a6ea5, #16324f); }
.feat-games    { background: linear-gradient(150deg, #7b5bd6, #3a2a6b); }
.feat-arvr     { background: linear-gradient(150deg, #2f9e6f, #12472f); }
.feat-fashion  { background: linear-gradient(150deg, #d1607f, #6b2338); }
.feat-card > * { position: relative; z-index: 2; }
.feat-badge {
  align-self: flex-start; background: rgba(255, 255, 255, 0.88); color: #16261f;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35em 0.85em; border-radius: var(--radius-pill); margin-bottom: auto;
}
.feat-card h3 { color: #fff; font-size: 1.35rem; margin: 1rem 0 0.4rem; }
.feat-card p { color: rgba(255, 255, 255, 0.86); font-size: 0.9rem; margin-bottom: 1.1rem; max-width: none; }
.feat-link {
  display: inline-flex; align-items: center; gap: 0.4rem; align-self: flex-start;
  color: #fff; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.6); padding: 0.55em 1.1em; border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.feat-link:hover { background: rgba(255, 255, 255, 0.18); text-decoration: none; }

/* ── STATS BAND ── */
#inside { background: linear-gradient(120deg, var(--accent-3), var(--accent-2)); color: #fff; }
.inside-head { text-align: center; margin-bottom: 2.4rem; }
.inside-head h2 { color: #fff; }
.inside-head .eyebrow { color: #bff0e6; }
.inside-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 20px; overflow: hidden;
}
.inside-item { padding: 1.9rem 1rem; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.18); }
.inside-item:last-child { border-right: none; }
.inside-k { display: block; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 0.5rem; }
.inside-v { display: block; font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 900; letter-spacing: -0.02em; }

/* ── FAQ ── */
#faq { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; font-family: inherit; text-align: left;
  padding: 1.2rem 1.4rem; font-size: 1rem; font-weight: 700; color: var(--fg);
}
.faq-q:hover { color: var(--accent); }
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-q::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--accent); flex-shrink: 0; }
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a { display: none; padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.94rem; }
.faq-a p { max-width: none; }

/* ── PRICING ── */
#pricing { background: var(--bg); }
.pricing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.pricing-copy h2 { margin-bottom: 1rem; }
.pricing-copy p { color: var(--muted); }
.pricing-copy-note { margin-top: 1rem; }
.pricing-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--fg); font-size: 0.95rem; }
.pricing-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem 2.2rem; box-shadow: var(--shadow); text-align: center;
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--mint), var(--accent-2));
}
.plan-name { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.price-trial {
  display: inline-block; background: var(--green); color: #fff; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 0.4em 1em; border-radius: var(--radius-pill); margin-bottom: 1.2rem;
}
.price-amount { font-size: 3.4rem; font-weight: 900; letter-spacing: -0.04em; color: var(--fg); line-height: 1; }
.price-amount span { font-size: 1.05rem; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.price-cadence { font-size: 0.9rem; color: var(--muted); margin-top: 0.4rem; }
.pricing-card .btn { margin-top: 1.6rem; width: 100%; }
.billing-note { font-size: 0.82rem; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 1.2rem; margin-top: 1.4rem; text-align: left; }

/* ── DISCLAIMER ── */
#disclaimer { background: var(--surface); border-top: 1px solid var(--border); }
.disclaimer-box {
  background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1.9rem 1.7rem; font-size: 0.85rem; color: var(--muted); line-height: 1.7;
}
.disclaimer-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg); margin-bottom: 0.7rem; }

/* ── FOOTER ── */
#site-footer { background: var(--footer-bg); color: var(--footer-mut); padding-block: 3.5rem 2rem; font-size: 0.9rem; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand .wordmark { margin: 0 0 1.1rem; }
.footer-brand .wm-text { color: #fff; }
.footer-badge {
  display: inline-block; margin-top: 1.3rem; font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: #7ce0d0;
  background: rgba(23, 167, 148, 0.18); padding: 0.5em 1em; border-radius: var(--radius-pill);
}
.footer-brand p { color: var(--footer-mut); max-width: 42ch; line-height: 1.7; margin-top: 1.1rem; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.3rem 0 0; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: center; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.footer-contact a { color: var(--footer-fg); font-weight: 600; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 1.1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--footer-mut); font-size: 0.9rem; font-weight: 500; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-promoter {
  border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 3rem; padding-top: 1.75rem;
}
.footer-promoter p { color: var(--footer-mut); font-size: 0.8rem; line-height: 1.65; max-width: 96ch; margin: 0 auto; text-align: center; }
.footer-promoter a { color: var(--footer-fg); text-decoration: underline; }
.footer-bottom { margin-top: 1.5rem; text-align: center; }
.footer-copyright { color: var(--footer-fg); font-size: 0.85rem; font-weight: 700; max-width: none; margin: 0 auto; }
.footer-legal { color: var(--footer-mut); font-size: 0.78rem; margin: 0.45rem auto 0; max-width: none; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000; background: rgba(10, 26, 32, 0.6);
  backdrop-filter: blur(3px); display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem) 1rem; overflow-y: auto;
}
.modal-overlay[hidden] { display: none; }
.modal { position: relative; background: var(--surface); border-radius: 22px; width: min(680px, 100%);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: 0 30px 80px rgba(10, 26, 32, 0.45); margin: auto; }
.modal-close {
  position: absolute; top: 1rem; right: 1.1rem; width: 40px; height: 40px; border: none;
  background: var(--surface-2); color: var(--fg); font-size: 1.5rem; line-height: 1; border-radius: 50%;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--accent); color: #fff; }
.modal-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.modal-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; padding-right: 2.5rem; }
.modal-ico {
  width: 62px; height: 62px; border-radius: 16px; flex-shrink: 0; color: #fff;
  background: linear-gradient(140deg, var(--mint), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
}
.modal-ico svg { width: 32px; height: 32px; }
.modal-title { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0; }
.modal-tagline { color: var(--muted); font-size: 0.95rem; margin: 0.15rem 0 0; }
.modal-desc { color: var(--muted); font-size: 0.96rem; line-height: 1.7; margin-bottom: 1.4rem; max-width: none; }
.modal-cta { width: 100%; }
.modal-note { margin-top: 0.85rem; color: var(--muted); font-size: 0.82rem; max-width: none; }

/* ── SUB-PAGE STYLES ── */
.subpage-wrap { padding-block: clamp(3rem, 6vw, 5rem); }
.subpage-wrap h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 2.2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.subpage-wrap h2 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin-top: 2.4rem; margin-bottom: 0.7rem; }
.subpage-wrap h3 { font-size: 1rem; margin-top: 1.7rem; margin-bottom: 0.5rem; font-weight: 700; color: var(--accent); }
.subpage-wrap p { color: var(--muted); margin-bottom: 1rem; max-width: 74ch; }
.subpage-wrap ul, .subpage-wrap ol { color: var(--muted); padding-left: 1.4rem; margin-bottom: 1rem; max-width: 74ch; }
.subpage-wrap li { margin-bottom: 0.4rem; }
.subpage-wrap a { color: var(--accent); }
.subpage-wrap table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.subpage-wrap th, .subpage-wrap td { border: 1px solid var(--border); padding: 0.7rem 0.9rem; text-align: left; vertical-align: top; color: var(--muted); }
.subpage-wrap th { background: var(--surface-2); color: var(--fg); font-weight: 700; }
.legal-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.back-link {
  display: inline-block; margin-top: 3rem; font-size: 0.85rem; font-weight: 700; color: var(--accent);
  border: 1px solid var(--border); padding: 0.55em 1.3em; border-radius: var(--radius-pill); background: var(--surface);
}
.back-link:hover { color: #fff; background: var(--accent); border-color: var(--accent); text-decoration: none; }
.entity-section { background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 1.5rem 1.7rem; font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }
.disclaimer-section { background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--border); border-radius: var(--radius-sm); padding: 1.5rem 1.7rem; font-size: 0.9rem; color: var(--muted); }

/* ── CONTACT PAGE ── */
.contact-intro { color: var(--muted); max-width: 68ch; margin-bottom: 1rem; }
.contact-address { color: var(--muted); line-height: 1.9; font-size: 1rem; margin: 1.5rem 0 2.5rem; }
.contact-address strong { display: block; color: var(--fg); font-size: 1.05rem; font-weight: 800; margin-bottom: 0.15rem; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 780px; margin-top: 1.5rem; }
.support-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.support-card h3 { font-size: 1.05rem; color: var(--fg); margin-bottom: 1.1rem; }
.support-row { display: flex; align-items: center; gap: 0.9rem; }
.support-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.support-icon svg { width: 20px; height: 20px; color: var(--accent); }
.support-value { color: var(--fg); font-weight: 600; }
.support-value a { color: var(--fg); }
.support-value a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 300px; margin-top: 1rem; }
  .portal-grid { grid-template-columns: repeat(2, 1fr); }
  #featured .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-row { grid-template-columns: repeat(2, 1fr); }
  .inside-item:nth-child(2n) { border-right: none; }
  .inside-item { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .pricing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  nav ul {
    display: none; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; box-shadow: var(--shadow);
  }
  nav ul.is-open { display: flex; }
  nav ul li a { padding-block: 0.6rem; display: block; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .portal-grid { grid-template-columns: 1fr; }
  #featured .featured-grid { grid-template-columns: 1fr; }
  .inside-row { grid-template-columns: 1fr; }
  .inside-item { border-right: none; }
  .inside-item:last-child { border-bottom: none; }
  .support-grid { grid-template-columns: 1fr; }
  .cat-item { padding: 0.6rem 0.8rem; font-size: 0.62rem; }
  .cat-item svg { width: 22px; height: 22px; }
  .hero-stats { gap: 1.6rem; }
}
