/* =============================================
   currabinny.ie — MiglioriPouches
   Dark mode, mobile-first
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0f14;
  --bg2: #161920;
  --bg3: #1e2230;
  --accent: #6c63ff;
  --accent2: #a78bfa;
  --gold: #f59e0b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: #2d3148;
  --card: #1a1d2e;
  --green: #10b981;
  --red: #ef4444;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--accent2); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

/* ---- HEADER ---- */
header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1100px; margin: auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.logo span { color: var(--accent2); }

nav { display: flex; gap: 24px; align-items: center; }
nav a { color: var(--muted); font-size: .9rem; font-weight: 500; }
nav a:hover { color: #fff; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #0d0f14 0%, #1a1040 50%, #0d0f14 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(108,99,255,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(108,99,255,.2); border: 1px solid rgba(108,99,255,.4);
  color: var(--accent2); font-size: .75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px; margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.15;
  max-width: 800px; margin: 0 auto 20px;
  color: #fff;
}

.hero h1 em { color: var(--accent2); font-style: normal; }

.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 600px; margin: 0 auto 36px;
}

.hero-img {
  width: 100%; max-width: 700px; margin: 0 auto 36px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img img { width: 100%; object-fit: cover; max-height: 340px; }

.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 99px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 0 24px rgba(108,99,255,.4);
  transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(108,99,255,.6); color: #fff; }

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--border); color: var(--text);
  padding: 12px 28px; border-radius: 99px;
  font-weight: 600; font-size: .95rem;
  transition: border-color .2s, color .2s;
}

.btn-secondary:hover { border-color: var(--accent2); color: var(--accent2); }

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}

.stats-inner {
  max-width: 1100px; margin: auto;
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--accent2); }
.stat-label { font-size: .8rem; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

/* ---- SECTIONS ---- */
section { padding: 64px 20px; }

.container { max-width: 1100px; margin: auto; }

.section-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent2); margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900; color: #fff; margin-bottom: 14px;
}

.section-desc { color: var(--muted); max-width: 600px; margin-bottom: 40px; }

/* ---- REVIEWS GRID ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .2s, transform .2s;
  position: relative; overflow: hidden;
}

.review-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.review-card.featured { border-color: var(--gold); }

.badge-top {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #000;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px; letter-spacing: 1px;
}

.brand-logo {
  font-size: 1.4rem; font-weight: 900; color: #fff;
  margin-bottom: 6px; letter-spacing: -.5px;
}

.brand-tagline { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }

.score-line {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}

.score-num { font-size: 2rem; font-weight: 900; color: var(--accent2); }
.score-max { font-size: .85rem; color: var(--muted); }

.review-pros { list-style: none; margin-bottom: 18px; }
.review-pros li { font-size: .875rem; color: var(--muted); padding: 3px 0; }
.review-pros li::before { content: '✓ '; color: var(--green); font-weight: 700; }

.card-cta {
  display: block; text-align: center;
  background: rgba(108,99,255,.15); border: 1px solid rgba(108,99,255,.3);
  color: var(--accent2); padding: 10px; border-radius: 8px;
  font-weight: 600; font-size: .875rem;
  transition: background .2s, color .2s;
}

.card-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---- CONTENT SECTION ---- */
.content-section { background: var(--bg2); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

.content-text h2 { font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.content-text h3 { font-size: 1.2rem; font-weight: 700; color: var(--accent2); margin: 24px 0 10px; }
.content-text p { color: var(--muted); margin-bottom: 14px; }

.content-text ul { list-style: none; margin-bottom: 18px; }
.content-text ul li { color: var(--muted); padding: 4px 0 4px 18px; position: relative; font-size: .925rem; }
.content-text ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent2); }

/* ---- COMPARISON TABLE ---- */
.table-wrap { overflow-x: auto; margin: 32px 0; }

table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead th {
  background: var(--bg3); color: var(--accent2);
  font-size: .75rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 14px 16px; text-align: left; border-bottom: 2px solid var(--border);
}
tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
tbody tr:hover td { background: rgba(108,99,255,.05); }

.dot-green { color: var(--green); font-weight: 700; }
.dot-orange { color: var(--gold); font-weight: 700; }

/* ---- ARTICLES GRID ---- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.article-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.article-card:hover { border-color: var(--accent2); transform: translateY(-2px); }

.article-img { background: var(--bg3); height: 160px; display: flex; align-items: center; justify-content: center; }
.article-img span { font-size: 3rem; }

.article-body { padding: 20px; }
.article-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent2); font-weight: 700; }
.article-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 8px 0 10px; }
.article-desc { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.article-link { font-size: .85rem; color: var(--accent2); font-weight: 600; }
.article-link:hover { color: #fff; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}

.faq-q { font-size: 1rem; font-weight: 700; color: #fff; cursor: pointer; }
.faq-a { font-size: .9rem; color: var(--muted); margin-top: 10px; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 40px 20px; text-align: center;
}

.footer-inner { max-width: 1100px; margin: auto; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--accent2); }
.footer-desc { color: var(--muted); font-size: .875rem; max-width: 480px; margin: 0 auto 20px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { color: var(--muted); font-size: .85rem; }
.footer-links a:hover { color: var(--accent2); }
.footer-copy { color: var(--border); font-size: .8rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 20px 40px; }
}
