/* ========================================
   SnappyCorn Landing Page
   ======================================== */

/* Hero */
.sc-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1f14 100%);
  position: relative;
  overflow: hidden;
}

.sc-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(181, 112, 77, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.sc-hero__content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.sc-hero__badge {
  display: inline-block;
  background: rgba(181, 112, 77, 0.2);
  color: #b5704d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.sc-hero__title {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.sc-hero__corn {
  color: #b5704d;
}

.sc-hero__subtitle {
  font-size: 1.1rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.sc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.sc-btn-launch {
  background: #b5704d !important;
  border-color: #b5704d !important;
}

.sc-btn-launch:hover {
  background: #9d5f3f !important;
  border-color: #9d5f3f !important;
}

.sc-btn-launch i {
  margin-left: 8px;
  font-size: 0.8em;
}

.sc-btn-more {
  color: #ccc !important;
  border-color: #555 !important;
}

.sc-btn-more:hover {
  color: #fff !important;
  border-color: #999 !important;
}

.sc-hero__free-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b9a6b;
  font-size: 0.85rem;
  font-weight: 600;
}

.sc-hero__free-note i {
  font-size: 1rem;
}

/* Hero Visual / Mockup */
.sc-hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sc-hero__mockup {
  width: 100%;
  max-width: 420px;
  background: #252525;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.sc-mockup__header {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: #1e1e1e;
}

.sc-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}

.sc-mockup__dot:first-child { background: #ff5f57; }
.sc-mockup__dot:nth-child(2) { background: #ffbd2e; }
.sc-mockup__dot:nth-child(3) { background: #28c840; }

.sc-mockup__body {
  display: flex;
  min-height: 260px;
}

.sc-mockup__sidebar {
  width: 50px;
  background: #1e1e1e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 18px;
}

.sc-mockup__nav-item {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.sc-mockup__nav-item.active {
  background: rgba(181, 112, 77, 0.2);
  color: #b5704d;
}

.sc-mockup__content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-mockup__day {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-mockup__day-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #b5704d;
  width: 32px;
  font-family: 'Montserrat', sans-serif;
}

.sc-mockup__meal {
  background: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #ddd;
  flex: 1;
}

.sc-mockup__meal + .sc-mockup__meal {
  flex: 1;
}

/* Features Section */
.sc-features {
  padding: 80px 60px;
  text-align: center;
}

.sc-features__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.sc-features__subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sc-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sc-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sc-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(181, 112, 77, 0.1);
  color: #b5704d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.sc-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.sc-feature-card__desc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

/* Access / Pricing Section */
.sc-access {
  padding: 60px;
}

.sc-access__card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1f14 100%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.sc-access__left {
  flex: 1.2;
}

.sc-access__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}

.sc-access__desc {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 28px;
}

.sc-access__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-access__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 0.9rem;
}

.sc-access__perks li i {
  color: #6b9a6b;
  font-size: 0.85rem;
}

.sc-access__right {
  flex: 0.8;
}

.sc-access__price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
}

.sc-price-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #b5704d;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.sc-price-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.sc-price-period {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 24px;
}

.sc-price-btn {
  display: inline-block;
  width: 100%;
}

/* CTA Section */
.sc-cta {
  padding: 80px 60px;
  text-align: center;
  background: #fff;
}

.sc-cta__title {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}

.sc-cta__desc {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.sc-cta__btn {
  background: #b5704d !important;
  border-color: #b5704d !important;
  font-size: 1rem;
  padding: 14px 36px !important;
}

.sc-cta__btn:hover {
  background: #9d5f3f !important;
  border-color: #9d5f3f !important;
}

.sc-cta__btn i {
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .sc-hero {
    flex-direction: column;
    padding: 60px 30px;
    min-height: auto;
  }

  .sc-hero__title {
    font-size: 2.8rem;
  }

  .sc-hero__visual {
    width: 100%;
  }

  .sc-hero__mockup {
    max-width: 100%;
  }

  .sc-features {
    padding: 60px 30px;
  }

  .sc-access {
    padding: 30px;
  }

  .sc-access__card {
    flex-direction: column;
    padding: 40px 30px;
  }

  .sc-cta {
    padding: 60px 30px;
  }
}

@media (max-width: 600px) {
  .sc-hero__title {
    font-size: 2.2rem;
  }

  .sc-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .sc-features__grid {
    grid-template-columns: 1fr;
  }
}
