/* WebsiteGecko Design System v2.0 */

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

:root {
  --gecko: #2ecc71;
  --gecko-dark: #1a9e5c;
  --gecko-light: #e8f8f0;
  --cta: #059669;
  --cta-hover: #047857;
  --heading: #1a202c;
  --body: #374151;
  --secondary: #4b5563;
  --muted: #6b7280;
  --light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --bg: #ffffff;
  --bg-section: #f8f9fb;
  --bg-dark: #1a202c;
  --bg-mint: #f0fdf4;
  --white: #fff;
  --star: #f59e0b;
  --radius: 12px;
  --radius-pill: 24px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gecko-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--bg-section);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--muted);
}

/* ===== HERO (light, split layout) ===== */
.hero {
  background: var(--bg-mint);
  padding: 64px 24px;
}
.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-text p {
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 24px;
}
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration img {
  max-width: 100%;
  height: auto;
}

/* ===== SECTION HELPERS ===== */
.section { padding: 56px 0; }
.section-alt { padding: 56px 0; background: var(--bg-section); }

.section-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}
.section-subtitle {
  color: var(--secondary);
  max-width: 480px;
  font-size: 15px;
}

/* ===== CATEGORY / TOOL CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.tools-grid .cat-card {
  flex: 0 1 calc(33.333% - 12px);
  min-width: 240px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.cat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
  text-decoration: none;
}
.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.cat-icon.green { background: var(--gecko-light); }
.cat-icon.blue { background: #eef4fb; }
.cat-icon.mint { background: var(--gecko-light); }
.cat-icon.purple { background: #f0e8fd; }
.cat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.5;
}
.card-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 12px;
  white-space: nowrap;
}
.badge-green { background: var(--gecko-light); color: var(--gecko-dark); }
.badge-blue { background: #e8f2fd; color: #1d6fbf; }

/* ===== TRUST ===== */
.trust-section {
  padding: 48px 0;
  background: var(--bg-section);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading);
  display: block;
  line-height: 1.1;
}
.trust-item .number .accent { color: var(--gecko); }
.trust-item .label {
  font-size: 14px;
  color: var(--secondary);
  margin-top: 4px;
  display: block;
}

/* ===== GECKO'S PICK SPOTLIGHT ===== */
.gecko-pick {
  background: var(--white);
  border: 2px solid var(--gecko);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.gecko-pick-badge {
  position: absolute;
  top: -11px;
  left: 32px;
  background: var(--gecko);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 20px;
}
.gecko-pick-illustration {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.gecko-pick-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gecko-pick-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 4px;
}
.gecko-pick-stars { color: var(--star); font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
.gecko-pick-stars .rating { font-size: 13px; font-weight: 600; color: var(--heading); margin-left: 6px; }
.gecko-pick-desc {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.gecko-pick-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 16px;
}
.gecko-pick-features li {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.gecko-pick-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gecko);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.gecko-pick-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.gecko-pick-price { font-size: 13px; color: var(--muted); text-align: right; }
.gecko-pick-price .amount { font-size: 20px; font-weight: 700; color: var(--heading); }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  cursor: pointer;
}
.btn-cta:hover { background: var(--cta-hover); text-decoration: none; }

.btn-secondary {
  display: inline-block;
  background: var(--gecko);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--gecko-dark); text-decoration: none; }

/* ===== ABOUT SECTION ===== */
.about-section h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 16px;
}
.about-section p { margin-bottom: 14px; }
.about-section ul {
  list-style: none;
  margin: 16px 0;
}
.about-section ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 16px;
}
.about-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gecko);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== PROVIDER CARDS (money pages) ===== */
.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.provider-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gecko);
}
.provider-card.featured {
  border-color: var(--gecko);
  border-width: 2px;
}
.pc-logo { width: 48px; height: 48px; margin-bottom: 8px; }
.pc-rank { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.pc-name { font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.pc-stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }
.pc-rating { font-size: 13px; font-weight: 600; color: var(--heading); margin-top: 2px; }
.pc-price { font-size: 13px; color: var(--muted); margin-top: 6px; }
.pc-price .amount { font-size: 17px; font-weight: 700; color: var(--heading); }
.pc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.pc-desc { font-size: 15px; color: var(--secondary); line-height: 1.6; margin-bottom: 12px; }
.pc-pros, .pc-cons { list-style: none; margin-bottom: 8px; }
.pc-pros li, .pc-cons li { font-size: 14px; padding: 3px 0 3px 22px; position: relative; }
.pc-pros li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gecko);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.pc-cons li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ef4444;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.pc-cta {
  display: block;
  background: var(--cta);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.pc-cta:hover { background: var(--cta-hover); text-decoration: none; }

/* ===== TAG ===== */
.tag { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.tag-green { background: var(--gecko-light); color: var(--gecko-dark); }
.tag-blue { background: #e8f2fd; color: #1d6fbf; }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table th {
  background: var(--bg-section);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table tr:hover td { background: #fafbfc; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--muted); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  display: none;
  padding-top: 12px;
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* ===== NEWSLETTER CTA ===== */
.newsletter-cta {
  background: var(--gecko-light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.newsletter-cta h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.newsletter-cta p {
  color: var(--secondary);
  margin-bottom: 20px;
}

/* ===== FEATURED TOOLS ===== */
.tools-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.tools-featured-card {
  background: var(--bg-mint);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border: 1px solid var(--border);
}
.tools-featured-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
  text-decoration: none;
}
.tools-featured-card .cat-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}
.tools-featured-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.tools-featured-card p {
  font-size: 15px;
  color: var(--secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}
.featured-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--cta);
}
.tools-featured-card:hover .featured-cta { text-decoration: underline; }

/* ===== TOOL GROUPS ===== */
.tools-group { margin-bottom: 28px; }
.tools-group:last-child { margin-bottom: 0; }
.tools-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.tools-group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tools-group-grid .cat-card { min-width: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-inner > * { min-width: 0; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-illustration { order: -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin-left: auto; margin-right: auto; }
  .tools-featured { grid-template-columns: 1fr; }
  .tools-group-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-card { grid-template-columns: 1fr; }
  .gecko-pick { grid-template-columns: 1fr; }
  .gecko-pick-illustration { display: none; }
  .gecko-pick-right { align-items: stretch; }
  .gecko-pick-features { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero { padding: 48px 20px; }
  .cards-grid { grid-template-columns: 1fr; max-width: 380px; }
  .tools-group-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gecko-pick { padding: 24px; gap: 16px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}
