/* ApniDukaan marketing site */
:root {
  --navy: #2d4a35;
  --navy-dark: #1a2e22;
  --green: #5c8a5d;
  --green-hover: #4a704b;
  --accent: #bf7424;
  --bg: #f4f7f4;
  --card: #ffffff;
  --text: #1a1d21;
  --muted: #5c6470;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(45, 74, 53, 0.1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 74, 53, 0.1);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
}

.site-nav__brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.site-nav__brand img {
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 2px 12px rgba(45, 74, 53, 0.18);
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  font-size: 0.92rem;
}

.site-nav__links a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav__links a:hover {
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 42%, #3d6b45 100%);
  color: #fff;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 1.5rem 5rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-hover);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__art-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__art-wrap img.hero__banner {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: block;
}

.hero__logo-float {
  position: absolute;
  bottom: -12px;
  right: 12px;
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  object-fit: contain;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section__title {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section__subtitle {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .visual-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.visual-strip__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.visual-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(26, 46, 34, 0.88));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 74, 53, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(45, 74, 53, 0.14);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--navy);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

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

.step {
  position: relative;
  background: var(--card);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 1rem;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.95rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.cta-band {
  margin: 2rem 1.5rem 3rem;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, #3d6b45 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.92;
  font-size: 0.98rem;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 1.5rem;
  font-size: 0.88rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__fine {
  font-size: 0.78rem;
  opacity: 0.7;
  max-width: 44rem;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.play-badge svg {
  flex-shrink: 0;
}
