/* ========================================
   PAYDAY LANDING - MINIMAL & CLEAN 2025
   ======================================== */

:root {
  --primary: #6366f1;
  --text: #0a0a0a;
  --text-secondary: #525252;
  --bg: #ffffff;
  --bg-secondary: #fafafa;
  --border: #e5e5e5;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Display', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.highlight {
  color: var(--primary);
}

.highlight-white {
  color: rgba(255, 255, 255, 0.95);
}

/* === BUTTONS === */
.btn-primary,
.btn-white {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .btn-primary,
  .btn-white {
    width: 100%;
    text-align: center;
    padding: 13px 24px;
    font-size: 15px;
  }
}

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .hero {
    padding: 60px 0 50px;
  }
  
  .hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

/* === STORIES === */
.stories {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.stories h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 56px;
}

.story-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.story {
  background: var(--bg);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.story h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.story p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.story p strong {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .stories {
    padding: 60px 0;
  }
  
  .stories h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .story-grid {
    gap: 20px;
  }
  
  .story {
    padding: 24px;
  }
  
  .story h3 {
    font-size: 17px;
  }
  
  .story p {
    font-size: 14px;
  }
}

/* === HOW === */
.how {
  padding: 80px 0;
}

.how h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 56px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}

.how-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.how-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .how {
    padding: 60px 0;
  }
  
  .how h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .how-steps {
    gap: 32px;
  }
  
  .step-num {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .how-step h3 {
    font-size: 18px;
  }
  
  .how-step p {
    font-size: 15px;
  }
}

/* === BENEFITS === */
.benefits {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.benefits h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 56px;
}

.benefits-list {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.benefit {
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.benefit h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

.benefit p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .benefits {
    padding: 60px 0;
  }
  
  .benefits h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .benefits-list {
    gap: 16px;
  }
  
  .benefit {
    padding: 20px;
  }
  
  .benefit h4 {
    font-size: 15px;
  }
  
  .benefit p {
    font-size: 13px;
  }
}

/* === CTA === */
.cta {
  padding: 100px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta > .container > p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .cta {
    padding: 60px 0;
  }
  
  .cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .cta > .container > p {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

/* === FOOTER === */
.footer {
  padding: 48px 0 32px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand strong {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 28px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
