.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,57,70,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  font-size: 13px;
  color: var(--white-dim);
}

.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}

.store-types {
  padding: 80px 24px;
  text-align: center;
}

.store-types h2,
.features-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.type-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: var(--transition);
}

.type-card:hover {
  border-color: var(--border-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.type-icon {
  width: 52px;
  height: 52px;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}

.type-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.type-card p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

.features-section {
  padding: 80px 24px;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-section .container {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  text-align: left;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.feature-item:hover {
  background: var(--white-faint);
}

.feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.5;
  margin: 0;
}

.cta-section {
  padding: 80px 24px;
}

.cta-card {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--border-red);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.cta-card h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--white-dim);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-brand p {
  color: var(--white-dim);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--white-dim);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 13px;
  color: var(--white-dim);
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat-div { width: 40px; height: 1px; }
  .cta-card { padding: 36px 20px; }
  .footer-top { flex-direction: column; }
}
