/* Marketacik Landing Page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #222;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { text-decoration: none; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-login {
  font-weight: 600 !important;
  color: #ccc !important;
}

.nav-cta {
  background: #E31E24 !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.9; }

/* Section base */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Hero */
.hero {
  padding: 10rem 2rem 6rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #1a0a0a 0%, #0a0a0a 70%);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: rgba(227, 30, 36, 0.15);
  color: #E31E24;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(227, 30, 36, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: #999;
  max-width: 550px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.85rem;
  color: #666;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #E31E24;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: #ccc;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #444;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: #888; color: #fff; }

.btn-outline {
  display: inline-block;
  color: #E31E24;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid #E31E24;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}

.btn-outline:hover { background: rgba(227, 30, 36, 0.1); }

.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Features */
.features {
  padding: 6rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: #444;
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
  background: #0f0f0f;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.price-popular {
  border-color: #E31E24;
  box-shadow: 0 0 30px rgba(227, 30, 36, 0.15);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E31E24;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #ccc;
  border-bottom: 1px solid #1a1a1a;
}

/* FAQ */
.faq {
  padding: 6rem 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: #666;
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: #E31E24;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  padding-bottom: 1.25rem;
  color: #999;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  padding: 6rem 0;
  background: radial-gradient(ellipse at 50% 100%, #1a0a0a 0%, #0a0a0a 70%);
}

/* Footer */
.landing-footer {
  padding: 2rem 0;
  border-top: 1px solid #222;
}

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

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-links a:not(.nav-cta):not(.nav-login) { display: none; }
  h2 { font-size: 1.7rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
