:root {
  --loktej-red: #b11226;
  --loktej-red-dark: #8f0d1d;
  --loktej-red-soft: #fff0f2;
  --text-dark: #171717;
  --text-muted: #666666;
  --border-soft: #eeeeee;
  --bg-soft: #fafafa;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.08);
  --radius-large: 28px;
  --radius-card: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Noto Sans Devanagari", "Noto Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
  color: #303030;
}

.main-nav a:hover {
  color: var(--loktej-red);
}

.header-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--loktej-red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(177, 18, 38, 0.24);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0 86px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(135deg, #220207 0%, #7c0c1b 48%, #bc152b 100%);
  color: var(--white);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% -12%;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-3deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-logo {
  width: 250px;
  height: auto;
  margin-bottom: 22px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.hero-subline {
  max-width: 650px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.store-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
}

.store-button img {
  height: 48px;
  width: auto;
}

.store-button span {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--loktej-red);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.store-button.disabled {
  opacity: 0.9;
  cursor: default;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 2;
}

.phone-shot {
  width: 250px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 8px solid rgba(255, 255, 255, 0.92);
}

.phone-shot.secondary {
  width: 205px;
  transform: translateY(-28px);
  opacity: 0.94;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading span,
.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--loktej-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.experience-content h2,
.share-content h2,
.contact-card h2 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.section-heading p,
.experience-content p,
.share-content p,
.contact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.local-map-section {
  padding: 48px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.local-map-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.local-map-content h2 {
  margin: 0 0 14px;
  color: var(--text-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.22;
}

.local-map-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.local-map-visual {
  padding: 20px;
  border-radius: 24px;
  background: #f3f3f3;
  overflow: hidden;
}

.local-map-visual img {
  width: 100%;
  border-radius: 18px;
}

.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.feature-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--loktej-red), #ef5a6a);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.experience-section {
  background: var(--bg-soft);
}

.experience-grid,
.share-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.experience-image {
  display: flex;
  justify-content: center;
}

.experience-image img {
  width: 320px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 10px solid var(--white);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
  color: #333333;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--loktej-red);
  color: var(--white);
  font-size: 13px;
}

.share-section {
  background: var(--white);
}

.share-grid {
  grid-template-columns: 1fr 0.8fr;
}

.share-card-preview {
  display: flex;
  justify-content: center;
}

.share-card-preview img {
  width: 310px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.network-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fff6f7 100%);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.network-card {
  display: block;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.network-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.network-card h3 {
  margin: 0 0 8px;
  color: var(--loktej-red);
  font-size: 24px;
}

.network-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.network-card span {
  font-weight: 900;
}

.contact-section {
  background: #141414;
  color: var(--white);
}

.contact-section .section-tag {
  color: #ffffff;
  background: var(--loktej-red);
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-card {
  min-height: 100%;
  padding: 34px;
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.publisher-box {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.publisher-box strong {
  color: var(--white);
}

.publisher-box span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
}

.contact-list a {
  display: inline-flex;
  width: fit-content;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--loktej-red);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.social-link.whatsapp {
  background: #e9fff0;
  color: #16833a;
}

.site-footer {
  padding: 30px 0;
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-inner img {
  height: 34px;
  width: auto;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #ffffff;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .experience-grid,
  .share-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 10px;
  }

  .phone-stack {
    left: auto;
    transform: none;
    justify-content: center;
  }

  .features-grid,
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .local-map-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    height: 34px;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 12px;
  }

  .hero-section {
    padding: 42px 0 46px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-logo {
    width: 190px;
  }

  .store-button img {
    height: 42px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 12px;
  }

  .phone-stack {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .phone-shot {
    width: 170px;
    border-radius: 22px;
    border-width: 6px;
  }

  .phone-shot.secondary {
    width: 132px;
    transform: translateY(10px);
  }

  .section {
    padding: 58px 0;
  }

  .features-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .network-card,
  .contact-card {
    padding: 24px;
  }

  .experience-image img,
  .share-card-preview img {
    width: 260px;
  }

  .social-links a {
    font-size: 12px;
  }

  .local-map-card {
    padding: 24px;
  }

  .local-map-visual {
    padding: 14px;
  }
}