/* ============================================
   SETLY — Landing Page Stylesheet
   ============================================ */

:root {
  --bg: #faf8f4;
  --fg: #1a1a1a;
  --accent: #f5a623;
  --accent-dark: #c47d0e;
  --green: #1a3a2f;
  --green-mid: #243e32;
  --muted: #7a7a72;
  --border: #e0dcd4;
  --card-bg: #ffffff;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 8vw 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: var(--green);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-right: 6vw;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 32px;
}

/* Hero Graphic */
.hero-graphic {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.calendar-ring {
  width: 320px;
  height: 320px;
  position: relative;
}

.calendar-ring svg {
  width: 100%;
  height: 100%;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.orbit-1 {
  width: 400px;
  height: 400px;
  top: -40px;
  left: -40px;
  animation: pulse 4s ease-in-out infinite;
}

.orbit-2 {
  width: 460px;
  height: 460px;
  top: -70px;
  left: -70px;
  animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ===================== SECTION LABELS ===================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===================== HOW IT WORKS ===================== */
.how {
  padding: 100px 8vw;
  background: var(--green);
  color: #fff;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  max-width: 540px;
  margin: 0 auto;
}

.how-header .section-label {
  color: var(--accent);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 0 28px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}

.step h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(245, 166, 35, 0.3);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===================== NICHES ===================== */
.niches {
  padding: 100px 8vw;
  background: var(--bg);
}

.niches .section-label {
  margin-bottom: 12px;
}

.niches > h2 {
  display: none;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.niche-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.niche-card:hover {
  background: #fff;
}

.niche-icon {
  margin-bottom: 20px;
}

.niche-card h3 {
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 12px;
}

.niche-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===================== PRICING ===================== */
.pricing {
  padding: 100px 8vw;
  background: #fff;
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.pricing-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  background: var(--bg);
}

.price-card.featured {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.12);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.price-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.price-per {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
}

.price-guarantee {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 0.875rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===================== MANIFESTO ===================== */
.manifesto {
  padding: 100px 8vw;
  background: var(--green);
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin-bottom: 32px;
}

.manifesto-text:last-of-type {
  margin-bottom: 0;
}

.manifesto-signature {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sig-bar {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
}

.manifesto-signature span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-meta p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6vw 80px;
    min-height: auto;
  }

  .hero::before {
    width: 100%;
    height: 50%;
    top: 50%;
    clip-path: none;
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  }

  .hero-inner {
    padding-right: 0;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-graphic {
    min-height: 260px;
  }

  .calendar-ring {
    width: 200px;
    height: 200px;
  }

  .orbit-1, .orbit-2 {
    display: none;
  }

  .steps {
    flex-direction: column;
    gap: 48px;
  }

  .step-connector {
    display: none;
  }

  .niches-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    padding: 0;
    min-width: 120px;
  }
}