:root {
  --agf-bg: #FAEDCD; /* Cream */
  --agf-surface: #ffffff;
  --agf-text: #2c251d;
  --agf-dark: #1F3624; /* Deep Forest Green */
  --agf-primary: #D4A373; /* Wood / Sand */
  --agf-secondary: #E9EDC9;
  --agf-accent: #f07e13;
  --agf-border: #e2e0d8;
  --agf-radius: 10px;
  --agf-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--agf-bg);
  color: var(--agf-text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Header */
.agf-nav-wrap {
  background: var(--agf-dark);
  color: #fff;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.agf-logo-brand { font-size: 1.6rem; font-weight: bold; color: var(--agf-primary); }
.agf-nav-menu { display: flex; gap: 2rem; }
.agf-nav-item { font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
.agf-nav-item:hover { color: var(--agf-primary); }

/* Hero */
.agf-hero-section {
  background: linear-gradient(135deg, var(--agf-dark), #142418);
  color: #fff;
  padding: 6rem 5%;
  text-align: center;
  position: relative;
}
.agf-hero-section::after {
  content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
  pointer-events: none;
}
.agf-hero-badge {
  display: inline-block; background: var(--agf-primary); color: var(--agf-dark);
  padding: 0.3rem 1rem; border-radius: 20px; font-weight: bold; font-size: 0.85rem; margin-bottom: 1rem;
}
.agf-hero-title { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.1; }
.agf-hero-sub { font-size: 1.2rem; color: #cbd5c1; max-width: 700px; margin: 0 auto 2rem; }
.agf-hero-btn {
  display: inline-block; background: var(--agf-accent); color: #fff;
  padding: 1rem 2.5rem; border-radius: 30px; font-weight: bold; font-size: 1.1rem;
  transition: transform 0.3s, background 0.3s;
}
.agf-hero-btn:hover { transform: translateY(-3px); background: #d96f0e; }

/* Grid Wrap */
.agf-page-contain { max-width: 1200px; margin: 4rem auto; padding: 0 2rem; }
.agf-section-title { font-size: 2.2rem; margin-bottom: 2rem; text-align: center; color: var(--agf-dark); }

/* Vertical Cards */
.agf-roster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 5rem; }
.agf-roster-item {
  background: var(--agf-surface); border-radius: var(--agf-radius); overflow: hidden;
  box-shadow: var(--agf-shadow); border: 1px solid var(--agf-border); position: relative;
  display: flex; flex-direction: column;
}
.agf-item-badge {
  position: absolute; top: 15px; right: 15px; background: var(--agf-dark); color: #fff;
  padding: 0.2rem 0.8rem; border-radius: 4px; font-size: 0.75rem; font-weight: bold; z-index: 2;
}
.agf-item-pic { width: 100%; height: 200px; object-fit: cover; }
.agf-item-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.agf-item-name { font-size: 1.4rem; color: var(--agf-dark); margin-bottom: 0.5rem; }
.agf-item-rating { color: var(--agf-accent); font-size: 1.1rem; margin-bottom: 1rem; }
.agf-item-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.agf-item-features li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; color: #555; }
.agf-item-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--agf-primary); font-weight: bold;
}
.agf-item-play {
  display: block; text-align: center; background: var(--agf-dark); color: #fff;
  padding: 0.8rem; border-radius: var(--agf-radius); font-weight: bold; transition: background 0.3s;
}
.agf-item-play:hover { background: var(--agf-primary); color: var(--agf-dark); }

/* Checklist */
.agf-checklist-block { background: var(--agf-surface); padding: 3rem; border-radius: var(--agf-radius); margin-bottom: 5rem; box-shadow: var(--agf-shadow); }
.agf-check-list { display: flex; flex-direction: column; gap: 1.5rem; }
.agf-check-row { display: flex; align-items: flex-start; gap: 1rem; }
.agf-check-icon { font-size: 1.5rem; color: var(--agf-primary); background: var(--agf-secondary); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.agf-check-text h4 { color: var(--agf-dark); margin-bottom: 0.3rem; font-size: 1.1rem; }
.agf-check-text p { color: #555; font-size: 0.95rem; }

/* Table */
.agf-compare-block { margin-bottom: 5rem; overflow-x: auto; }
.agf-compare-tbl { width: 100%; border-collapse: collapse; background: var(--agf-surface); border-radius: var(--agf-radius); overflow: hidden; box-shadow: var(--agf-shadow); }
.agf-compare-tbl th, .agf-compare-tbl td { padding: 1.2rem; text-align: left; border-bottom: 1px solid var(--agf-border); }
.agf-compare-tbl th { background: var(--agf-dark); color: #fff; font-weight: 600; }
.agf-compare-tbl tr:last-child td { border-bottom: none; }
.agf-compare-tbl tr:nth-child(even) { background: #fdfdfa; }

/* Quote / Advice */
.agf-quote-block { margin-bottom: 5rem; display: flex; justify-content: center; }
.agf-quote-box {
  background: var(--agf-secondary); padding: 3rem; border-radius: var(--agf-radius);
  max-width: 800px; position: relative; text-align: center; border-left: 6px solid var(--agf-primary);
}
.agf-quote-icon { font-size: 4rem; color: var(--agf-primary); opacity: 0.3; position: absolute; top: -10px; left: 20px; line-height: 1; }
.agf-quote-text { font-size: 1.1rem; color: var(--agf-dark); font-style: italic; position: relative; z-index: 1; }
.agf-quote-author { margin-top: 1rem; font-weight: bold; color: var(--agf-dark); }

/* FAQ Accordion */
.agf-faq-block { margin-bottom: 5rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.agf-faq-item { background: var(--agf-surface); margin-bottom: 1rem; border-radius: 8px; border: 1px solid var(--agf-border); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.agf-faq-summary { padding: 1.2rem 1.5rem; font-weight: 600; color: var(--agf-dark); cursor: pointer; list-style: none; position: relative; font-size: 1.1rem; }
.agf-faq-summary::-webkit-details-marker { display: none; }
.agf-faq-summary::after { content: '+'; position: absolute; right: 1.5rem; top: 1.2rem; color: var(--agf-primary); font-size: 1.4rem; font-weight: bold; }
.agf-faq-item[open] .agf-faq-summary::after { content: '−'; }
.agf-faq-content { padding: 0 1.5rem 1.2rem; color: #555; line-height: 1.5; }

/* 3-Column Footer */
.agf-bottom-area { background: var(--agf-dark); color: #ccc; padding: 4rem 5% 2rem; margin-top: auto; }
.agf-bot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid #334b3a; padding-bottom: 3rem; }
.agf-bot-brand h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.agf-bot-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.agf-bot-list { list-style: none; }
.agf-bot-list li { margin-bottom: 0.5rem; }
.agf-bot-list a { transition: color 0.3s; }
.agf-bot-list a:hover { color: var(--agf-primary); }
.agf-bot-lower { max-width: 1200px; margin: 2rem auto 0; text-align: center; font-size: 0.85rem; color: #888; display: flex; flex-direction: column; gap: 1rem; }

/* Cookie Consent */
.agf-consent-wrap {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px;
  background: #fff; padding: 1.5rem; border-radius: var(--agf-radius); box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex; justify-content: space-between; align-items: center; z-index: 9999;
  border-left: 5px solid var(--agf-primary); display: none; color: #333; gap: 1rem;
}
.agf-consent-wrap.active { display: flex; }
.agf-consent-btn { background: var(--agf-dark); color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 6px; cursor: pointer; font-weight: bold; flex-shrink: 0; }

@media (max-width: 768px) {
  .agf-bot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .agf-hero-title { font-size: 2.5rem; }
  .agf-consent-wrap.active { flex-direction: column; text-align: center; }
}
