/* ================================================================
   PaidSurveyHub India — Premium Stylesheet v2
   Design: Sharp Editorial — Emerald & Slate
   Fonts: Plus Jakarta Sans (headings) + Nunito (body)
   ================================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --emerald:       #059669;
  --emerald-dark:  #047857;
  --emerald-xd:    #064e3b;
  --emerald-light: #d1fae5;
  --emerald-pale:  #f0fdf4;
  --emerald-mid:   #6ee7b7;

  /* UI Colours */
  --slate-900:  #0f172a;
  --slate-800:  #1e293b;
  --slate-700:  #334155;
  --slate-600:  #475569;
  --slate-500:  #64748b;
  --slate-400:  #94a3b8;
  --slate-300:  #cbd5e1;
  --slate-200:  #e2e8f0;
  --slate-100:  #f1f5f9;
  --slate-50:   #f8fafc;
  --white:      #ffffff;

  /* Accent */
  --amber:      #d97706;
  --amber-bg:   #fef3c7;
  --blue:       #2563eb;
  --blue-bg:    #dbeafe;
  --red:        #dc2626;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 6px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md:  0 6px 18px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.1), 0 4px 10px rgba(0,0,0,.06);
  --shadow-green: 0 8px 24px rgba(5,150,105,.18);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Layout */
  --max-w: 1160px;
  --nav-h: 62px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald); text-decoration: none; transition: color .15s; }
a:hover { color: var(--emerald-dark); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ── Container ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  color: var(--slate-900);
  line-height: 1.22;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3vw, 1.85rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: .97rem; font-weight: 700; }
p  { color: var(--slate-600); line-height: 1.8; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 700; font-size: .87rem;
  padding: .6rem 1.4rem; border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; text-decoration: none; letter-spacing: .01em;
}
.btn-primary { background: var(--emerald); color: #fff; border-color: var(--emerald); box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(5,150,105,.25); }
.btn-outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: #fff; }
.btn-ghost  { background: var(--slate-100); color: var(--slate-700); border-color: var(--slate-200); }
.btn-ghost:hover { background: var(--slate-200); color: var(--slate-900); }
.btn-white  { background: #fff; color: var(--emerald-dark); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--emerald-light); color: var(--emerald-xd); }
.btn-sm     { padding: .38rem .85rem; font-size: .8rem; }
.btn-lg     { padding: .75rem 1.85rem; font-size: .95rem; }
.btn-xl     { padding: .9rem 2.25rem; font-size: 1rem; }
.btn-block  { display: flex; width: 100%; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .2rem;
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .2rem .65rem; border-radius: var(--r-full);
}
.badge-emerald { background: var(--emerald-light); color: var(--emerald-xd); }
.badge-amber   { background: var(--amber-bg); color: #78350f; }
.badge-blue    { background: var(--blue-bg); color: #1e40af; }
.badge-slate   { background: var(--slate-100); color: var(--slate-600); }
.badge-india   { background: #fff7ed; color: #9a3412; }

/* ── Notice Bar ────────────────────────────────────────────── */
.notice-bar {
  background: var(--emerald-xd);
  padding: .48rem 0;
  text-align: center;
}
.notice-bar p { font-size: .78rem; color: var(--emerald-light); font-family: var(--font-head); font-weight: 500; }
.notice-bar a { color: var(--emerald-mid); font-weight: 700; }
.notice-bar a:hover { color: #fff; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 12px rgba(15,23,42,.07);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-h); gap: 1rem;
}
.nav-logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.18rem;
  color: var(--slate-900); white-space: nowrap; text-decoration: none;
  display: flex; align-items: center; gap: .3rem;
}
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--emerald);
  border-radius: var(--r-xs); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.nav-logo span.accent { color: var(--emerald); }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-head); font-size: .84rem; font-weight: 600;
  color: var(--slate-600); padding: .4rem .75rem; border-radius: var(--r-sm);
  transition: all .15s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--emerald); background: var(--emerald-pale);
}
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-hamburger {
  display: none; background: none; border: 1.5px solid var(--slate-200);
  border-radius: var(--r-sm); cursor: pointer; padding: .4rem .5rem;
  color: var(--slate-600);
}
.nav-hamburger svg { width: 18px; height: 18px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--emerald-xd);
  padding: 3.75rem 0 3rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 40px;
  background: var(--slate-50);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { position: relative; text-align: center; max-width: 740px; margin: 0 auto; }
.hero h1 { color: #fff; margin-bottom: .6rem; }
.hero p  { color: rgba(255,255,255,.8); font-size: 1.02rem; margin-bottom: 1.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.hero-search {
  max-width: 500px; margin: 0 auto 1.5rem;
  display: flex; background: #fff; border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 2px solid transparent; transition: border-color .2s;
}
.hero-search:focus-within { border-color: var(--emerald-mid); }
.hero-search input {
  flex: 1; padding: .75rem 1.1rem; border: none; outline: none;
  font-family: var(--font-body); font-size: .93rem; color: var(--slate-800);
  background: transparent;
}
.hero-search button {
  background: var(--emerald); color: #fff; border: none; cursor: pointer;
  padding: 0 1.25rem; font-family: var(--font-head); font-size: .84rem; font-weight: 700;
  transition: background .15s; white-space: nowrap;
}
.hero-search button:hover { background: var(--emerald-dark); }

.hero-tags { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-tag {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: .22rem .7rem; border-radius: var(--r-full);
  cursor: pointer; transition: all .15s; text-decoration: none;
}
.hero-tag:hover { background: rgba(255,255,255,.2); color: #fff; }

.hero-stats {
  display: flex; justify-content: center; gap: 0;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; padding: 0 2rem; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.12); }
.hero-stat strong {
  display: block; font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: .2rem;
}
.hero-stat span { font-size: .73rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

/* ── Filter Bar ────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: .7rem 0;
  position: sticky; top: var(--nav-h); z-index: 90;
}
.filter-inner { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.filter-label {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--slate-400); white-space: nowrap;
}
.filter-btns { display: flex; gap: .35rem; flex-wrap: wrap; }
.filter-btn {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  padding: .32rem .9rem; border-radius: var(--r-full);
  border: 1.5px solid var(--slate-200); background: var(--white);
  color: var(--slate-600); cursor: pointer; transition: all .15s;
  white-space: nowrap; text-decoration: none;
}
.filter-btn:hover  { border-color: var(--emerald); color: var(--emerald); }
.filter-btn.active { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.filter-count { margin-left: auto; font-size: .78rem; color: var(--slate-400); white-space: nowrap; }

/* ── Main Content ──────────────────────────────────────────── */
main { flex: 1; padding: 1.75rem 0 3.5rem; }

.section-divider {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-head); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--slate-500); margin: 1.75rem 0 1.1rem;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--slate-200);
}
.section-divider::before { flex: 0 0 0; }

/* ── Featured Card ─────────────────────────────────────────── */
.featured-wrap {
  background: linear-gradient(135deg, var(--emerald-xd) 0%, #065f46 100%);
  border-radius: var(--r-lg); padding: 2.5rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: 2.25rem; align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-green);
  margin-bottom: 2rem;
}
.featured-wrap::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(110,231,183,.15) 0%, transparent 70%);
  pointer-events: none;
}
.featured-ribbon {
  position: absolute; top: 18px; right: -26px;
  background: var(--amber); color: #fff;
  font-family: var(--font-head); font-size: .62rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem 2.5rem; transform: rotate(45deg);
}
.featured-logo {
  width: 88px; height: 88px; border-radius: var(--r-md);
  object-fit: contain; background: rgba(255,255,255,.95);
  padding: .6rem; border: 2px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.featured-body { display: flex; flex-direction: column; gap: .75rem; }
.featured-body h2 { color: #fff; font-size: 1.45rem; margin: 0; }
.featured-body > p { color: rgba(255,255,255,.78); font-size: .88rem; margin: 0; line-height: 1.7; }
.featured-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; }
.featured-pill {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  padding: .22rem .65rem; border-radius: var(--r-full);
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.18);
}
.featured-pill.upi { background: rgba(110,231,183,.2); color: var(--emerald-mid); border-color: rgba(110,231,183,.25); }
.featured-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.featured-rating { margin-top: .85rem; font-size: .8rem; color: rgba(255,255,255,.6); }
.featured-rating strong { color: var(--emerald-mid); }

/* ── Survey Grid ───────────────────────────────────────────── */
.survey-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.survey-grid-2   { grid-template-columns: repeat(2,1fr); }

/* ── Survey Card ───────────────────────────────────────────── */
.survey-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: 1.25rem;
  display: flex; flex-direction: column;
  transition: box-shadow .22s cubic-bezier(.4,0,.2,1), transform .22s, border-color .2s;
  cursor: pointer;
}
.survey-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--emerald);
}
.card-head { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: .85rem; }
.card-logo {
  width: 50px; height: 50px; flex-shrink: 0;
  border: 1.5px solid var(--slate-200); border-radius: var(--r-sm);
  object-fit: contain; padding: .3rem; background: var(--white);
  transition: border-color .2s;
}
.survey-card:hover .card-logo { border-color: var(--emerald); }
.card-title-area { flex: 1; min-width: 0; }
.card-title-area h4 { margin-bottom: .15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-rank { font-family: var(--font-head); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--emerald); }
.card-desc {
  font-size: .82rem; color: var(--slate-500); line-height: 1.65;
  flex: 1; margin-bottom: .85rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .4rem; margin-top: auto;
  padding-top: .75rem; border-top: 1px solid var(--slate-100);
}
.card-stars { color: var(--amber); font-size: .82rem; letter-spacing: -.03em; }
.card-rev   { font-size: .73rem; color: var(--slate-400); }
.card-link  {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  color: var(--emerald); display: flex; align-items: center; gap: .2rem;
  transition: gap .15s;
}
.card-link:hover { gap: .45rem; }
.card-link svg { width: 13px; height: 13px; }

/* ── Ranked 2-col cards ────────────────────────────────────── */
.ranked-card { border: 2px solid var(--emerald-light); background: var(--emerald-pale); }
.ranked-card:hover { border-color: var(--emerald); }

/* ── Info Strip ────────────────────────────────────────────── */
.info-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 2.5rem 0 1.5rem; }
.info-item {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md); padding: 1.5rem; text-align: center;
  transition: box-shadow .2s;
}
.info-item:hover { box-shadow: var(--shadow-sm); }
.info-emoji { font-size: 2rem; margin-bottom: .65rem; display: block; }
.info-item h3 { font-size: .97rem; margin-bottom: .35rem; }
.info-item p  { font-size: .83rem; }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--emerald-xd), var(--emerald-dark));
  border-radius: var(--r-lg); padding: 3rem 2.5rem;
  text-align: center; margin: 2rem 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: #fff; position: relative; }
.cta-section p  { color: rgba(255,255,255,.8); position: relative; margin-bottom: 1.5rem; }

/* ── Page Card ─────────────────────────────────────────────── */
.page-wrap { padding: 1.5rem 0 3rem; }
.page-card {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--r-lg); padding: 2.75rem 3rem; margin-bottom: 1.5rem;
}
.page-card h1 { margin-bottom: 1.5rem; }
.page-card h2 { font-size: 1.15rem; margin: 2rem 0 .65rem; color: var(--emerald-dark); }
.page-card h3 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
.page-card p  { font-size: .9rem; margin-bottom: .9rem; }
.page-card ul { margin: .65rem 0 1rem 1.4rem; list-style: disc; }
.page-card ul li { margin-bottom: .4rem; font-size: .9rem; color: var(--slate-600); }
.page-intro { font-size: 1.05rem !important; color: var(--slate-700) !important; font-weight: 500; line-height: 1.75 !important; }
.page-lead { background: var(--emerald-pale); border-left: 3px solid var(--emerald); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 1rem 1.25rem; margin-bottom: 1.75rem; }
.page-lead p { color: var(--emerald-xd); font-size: .9rem; margin: 0; font-weight: 500; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .35rem;
  font-size: .8rem; color: var(--slate-400);
  padding: .65rem 0; flex-wrap: wrap;
}
.breadcrumb a { color: var(--emerald); font-weight: 500; }
.breadcrumb-sep { color: var(--slate-300); }

/* ── Detail Page ───────────────────────────────────────────── */
.detail-hero-card {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--r-lg); padding: 2rem;
  display: flex; align-items: flex-start; gap: 1.75rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.detail-logo {
  width: 100px; height: 100px; border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md); padding: .75rem; object-fit: contain; flex-shrink: 0;
}
.detail-info { flex: 1; min-width: 240px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: .35rem; margin: .6rem 0; }
.detail-actions { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
.detail-section {
  background: var(--white); border: 1.5px solid var(--slate-200);
  border-radius: var(--r-md); padding: 1.6rem; margin-bottom: 1.25rem;
}
.detail-section h3 { margin-bottom: .85rem; padding-bottom: .6rem; border-bottom: 1px solid var(--slate-100); }
.detail-section p  { font-size: .88rem; }
.quick-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem; }
.qf-item {}
.qf-label { font-family: var(--font-head); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--slate-400); margin-bottom: .1rem; }
.qf-val   { font-size: .88rem; font-weight: 600; color: var(--slate-800); }

/* ── Alerts ────────────────────────────────────────────────── */
.alert { border-radius: var(--r-sm); padding: .85rem 1.1rem; margin-bottom: 1rem; font-size: .87rem; line-height: 1.6; }
.alert-success { background: var(--emerald-light); color: var(--emerald-xd); border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: var(--blue-bg); color: #1e40af; border: 1px solid #93c5fd; }
.alert-warning { background: var(--amber-bg); color: #78350f; border: 1px solid #fcd34d; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 700; margin-bottom: .4rem; color: var(--slate-700); }
.form-control {
  width: 100%; padding: .68rem 1rem;
  border: 1.5px solid var(--slate-300); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .9rem; color: var(--slate-800);
  background: var(--white); transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-control:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(5,150,105,.1); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--slate-900); color: rgba(255,255,255,.6);
  padding: 3rem 0 1.75rem; margin-top: auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.75rem;
}
.footer-brand .logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: #fff; display: flex; align-items: center; gap: .4rem; margin-bottom: .75rem;
}
.footer-brand .logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); display: inline-block; }
.footer-brand p { font-size: .83rem; line-height: 1.75; max-width: 290px; }
.footer-brand .footer-email { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: .6rem; }
.footer-brand .footer-email a { color: var(--emerald); }
.footer-col h4 { font-family: var(--font-head); font-size: .82rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .42rem; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a.footer-featured { color: var(--emerald-mid); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom p, .footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── About page specifics ──────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin: 1.5rem 0; }
.feature-item { background: var(--slate-50); border: 1.5px solid var(--slate-200); border-radius: var(--r-md); padding: 1.25rem; }
.feature-item .fi-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.feature-item h4 { margin-bottom: .3rem; font-size: .95rem; }
.feature-item p  { font-size: .84rem; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; margin: 1.25rem 0; }
.audience-card { text-align: center; background: var(--emerald-pale); border: 1.5px solid var(--emerald-light); border-radius: var(--r-md); padding: 1.25rem .75rem; }
.audience-card .ac-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.audience-card h4 { font-size: .9rem; color: var(--emerald-xd); }

/* ── FAQ specifics ─────────────────────────────────────────── */
.faq-item { border: 1.5px solid var(--slate-200); border-radius: var(--r-md); margin-bottom: .65rem; overflow: hidden; }
.faq-q {
  padding: 1rem 1.25rem; cursor: pointer; font-family: var(--font-head);
  font-size: .92rem; font-weight: 700; color: var(--slate-800);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s; user-select: none;
}
.faq-q:hover { background: var(--slate-50); }
.faq-q.open  { color: var(--emerald); background: var(--emerald-pale); border-bottom: 1px solid var(--emerald-light); }
.faq-q .faq-icon { font-size: .9rem; transition: transform .25s; flex-shrink: 0; margin-left: 1rem; }
.faq-q.open .faq-icon { transform: rotate(180deg); }
.faq-a { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.faq-a.open { padding: 1rem 1.25rem; max-height: 500px; }
.faq-a p { font-size: .88rem; margin: 0; }

/* ── Misc utilities ────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.text-emerald { color: var(--emerald); }
.text-muted   { color: var(--slate-500); }
.fw-700 { font-weight: 700; }
.font-head { font-family: var(--font-head); }
.hidden { display: none; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .survey-grid    { grid-template-columns: repeat(2,1fr); }
  .detail-grid    { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .audience-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn:not(.nav-mobile-cta) { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: calc(var(--nav-h) + 1px);
    left: 0; right: 0;
    background: var(--white); border-bottom: 1.5px solid var(--slate-200);
    padding: .75rem 1.25rem; gap: .25rem; z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: .6rem .85rem; border-radius: var(--r-sm); }
  .nav-hamburger { display: flex; align-items: center; }

  .featured-wrap { grid-template-columns: 1fr; }
  .featured-ribbon { display: none; }
  

/* ── PATCH: Additional fixes ──────────────────────────────── */

/* Card logo — bigger on all screens */
.card-logo {
  width: 64px !important;
  height: 64px !important;
  padding: .4rem !important;
}

/* Info strip — fix emoji size and card spacing */
.info-strip {
  margin: 4rem 0 2.5rem !important;
  gap: 1.5rem !important;
}
.info-item {
  padding: 2.5rem 2rem !important;
  border-radius: var(--r-lg) !important;
}
.info-item h3 { font-size: 1.1rem !important; margin-bottom: .5rem !important; }
.info-item p  { font-size: .9rem !important; line-height: 1.7 !important; }
.info-emoji {
  font-size: 2.75rem !important;
  margin-bottom: 1rem !important;
  display: block;
  line-height: 1;
}

/* CTA section — fix button and spacing */
.cta-section {
  margin: 4rem 0 2rem !important;
  padding: 4rem 3rem !important;
}
.cta-section h2 { font-size: 2rem !important; }
.cta-section h2 { margin-bottom: .6rem !important; }
.cta-section p  { max-width: 520px; margin: 0 auto 1.75rem !important; }
.cta-section .btn-white {
  display: inline-flex !important;
  width: auto !important;
  padding: .85rem 2.25rem !important;
  font-size: .98rem !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}

/* FAQ page styles */
.faq-page-wrap { max-width: 820px; margin: 0 auto; padding: 2.5rem 1.25rem; }
.faq-page-title { margin-bottom: .5rem; }
.faq-page-subtitle { font-size: 1.05rem; color: var(--slate-500); margin-bottom: 2.5rem; }
.faq-group { margin-bottom: 2.5rem; }
.faq-group-title {
  font-family: var(--font-head); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: var(--slate-400);
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--slate-200);
  display: flex; align-items: center; gap: .5rem;
}
.faq-item { border: 1.5px solid var(--slate-200); border-radius: var(--r-md); margin-bottom: .55rem; overflow: hidden; background: var(--white); }
.faq-q {
  padding: 1.1rem 1.35rem; cursor: pointer;
  font-family: var(--font-head); font-size: .93rem; font-weight: 700; color: var(--slate-800);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s; user-select: none; gap: 1rem;
}
.faq-q .faq-icon-q { color: var(--emerald); font-size: .85rem; flex-shrink: 0; }
.faq-q:hover { background: var(--slate-50); }
.faq-q.open   { background: var(--emerald-pale); color: var(--emerald-xd); border-bottom: 1px solid var(--emerald-light); }
.faq-q .faq-chevron { font-size: .8rem; transition: transform .25s; flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 1.35rem; }
.faq-a.open { max-height: 600px; padding: .9rem 1.35rem 1.1rem; }
.faq-a p { font-size: .88rem; color: var(--slate-600); margin: 0; line-height: 1.8; }

/* Contact page */
.contact-wrap { max-width: 620px; margin: 0 auto; padding: 2.5rem 1.25rem; }
.contact-card { background: var(--white); border: 1.5px solid var(--slate-200); border-radius: var(--r-lg); padding: 2.5rem; }
.contact-info-strip { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.75rem 0; }
.contact-info-item { background: var(--slate-50); border: 1.5px solid var(--slate-200); border-radius: var(--r-sm); padding: 1rem; }
.contact-info-item .ci-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-400); margin-bottom: .3rem; }
.contact-info-item .ci-val   { font-size: .87rem; font-weight: 600; color: var(--slate-800); }
.contact-info-item a { color: var(--emerald); }
.contact-divider { display: flex; align-items: center; gap: .75rem; margin: 1.75rem 0; }
.contact-divider::before, .contact-divider::after { content:''; flex:1; height:1px; background:var(--slate-200); }
.contact-divider span { font-size: .75rem; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 640px) {
  .contact-info-strip { grid-template-columns: 1fr; }
  .contact-card { padding: 1.5rem; }
  .card-logo { width: 52px !important; height: 52px !important; }
}

/* ── COLOUR SCHEME PATCH ───────────────────────────────────── */

/* Ranked cards #2-5: Rich blue tint — clearly different from green */
.ranked-card {
  background: #eff6ff !important;
  border: 2px solid #93c5fd !important;
}
.ranked-card:hover {
  border-color: #3b82f6 !important;
  box-shadow: 0 12px 32px rgba(59,130,246,.15) !important;
}
.ranked-card .card-rank { color: #2563eb !important; }
.ranked-card .card-link { color: #2563eb !important; }

/* Unranked cards: Warm white with clear visible border */
.plain-card {
  background: #fffdf7 !important;
  border: 1.5px solid #e5e0d5 !important;
}
.plain-card:hover {
  border-color: var(--emerald) !important;
  background: var(--white) !important;
}

/* Featured actions handled in main section */

/* Nav actions — no join free button now, just hamburger */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}