/*
Theme Name: EarnWise Pro
Description: Clean, modern, trustworthy WordPress theme for realistic online earning websites. Fresh professional design with all pages included.
Version: 2.1
*/

/* ========== FRESH NEW DESIGN ========== */
:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #0f172a;
  --text-muted: #475569;
  --accent: #0f766e;
  --primary: #0f172a;
  --border: #e2e8f0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
}

h1, h2, h3 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero - Fresh Two Column */
.hero {
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
  padding: 85px 0 65px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero .subtitle {
  font-size: 1.22rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 38px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #0d5c57;
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 75px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.3rem;
}

/* Method Cards - Fresh Look */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 26px;
}

.method-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.08);
  transform: translateY(-4px);
}

.method-card h3 {
  font-size: 1.32rem;
  margin-bottom: 13px;
}

.method-card p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 0.97rem;
}

.method-card .btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 11px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-alt);
  padding: 26px 22px;
  border-radius: 14px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 0 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 0.08);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* General Page Styling */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 65px 24px;
}

.page-content h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.page-content ul, .page-content ol {
  margin: 16px 0 26px;
  padding-left: 22px;
}