:root {
  --primary: #31181E;
  --primary-light: #5A3A40;
  --accent: #CA1F48;
  --accent-dark: #a8173a;
  --cream: #FFF9F2;
  --off-white: #FFFDF9;
  --beige: #F6EDE3;
  --rose: #FBE8ED;
  --text-dark: #25171A;
  --text-muted: #76676A;
  --gold: #C99A45;
  --logo-bg: #31181E;
  --border: rgba(49, 24, 30, .13);
  --shadow: 0 22px 55px rgba(49, 24, 30, .13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

h1,
h2,
h3 {
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 5.3vw, 5.35rem);
}

h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.65rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.section-pad {
  padding: 110px 0;
  position: relative;
}

.section-pad-sm {
  padding: 66px 0;
  position: relative;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 14px;
}

.btn {
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary-custom {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 12px 28px rgba(202, 31, 72, .24);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline-custom {
  color: var(--primary);
  border: 1px solid rgba(49, 24, 30, .45);
  background: rgba(255, 255, 255, .68);
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.sam-navbar {
  padding: 14px 0;
  background: var(--logo-bg);
  transition: background .28s ease, box-shadow .28s ease, padding .28s ease;
}

.sam-navbar.scrolled {
  background: var(--logo-bg);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(49, 24, 30, .28);
  padding: 7px 0;
}

.navbar-brand img {
  width: 140px;
  height: auto;
}

.nav-links {
  gap: 0;
}

.nav-link {
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
  font-size: .84rem;
  padding: 10px 8px !important;
  position: relative;
  white-space: nowrap;
}

.sam-navbar .nav-link,
.sam-navbar .nav-link.active,
.sam-navbar .nav-link.show,
.sam-navbar .nav-link:hover,
.sam-navbar .nav-link:focus {
  color: #fff !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-modal-link {
  border: 0;
  background: transparent;
}

.nav-app-links {
  gap: 8px;
  align-items: center;
  margin-left: 10px;
}

.nav-app-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  font-size: .84rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-app-links a:first-child {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(202, 31, 72, .22);
}

.nav-app-links a:hover,
.nav-app-links a:focus {
  transform: translateY(-2px);
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .2s ease;
}

.mobile-offcanvas {
  background: var(--off-white);
  max-width: min(92vw, 390px);
}

.mobile-offcanvas:not(.show):not(.showing) {
  display: none;
}

.mobile-offcanvas.show,
.mobile-offcanvas.showing {
  display: flex;
}

.mobile-offcanvas .offcanvas-body {
  overflow-y: auto;
}

.mobile-links a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--primary);
}

.mobile-links button {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--primary);
  text-align: left;
  font-weight: 700;
}

.mobile-note {
  display: grid;
  gap: 4px;
  margin: 26px 0;
  padding: 16px;
  color: var(--primary);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.mobile-note span {
  color: var(--text-muted);
  font-size: .9rem;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--beige);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background:
    radial-gradient(circle at 15% 18%, rgba(201, 154, 69, .24), transparent 28%),
    radial-gradient(circle at 86% 34%, rgba(202, 31, 72, .12), transparent 27%),
    linear-gradient(130deg, var(--cream), #fff6ec 58%, #fbede3);
  overflow: hidden;
}

.hero::before,
.download-panel::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(201, 154, 69, .16);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 15deg, rgba(201, 154, 69, .08) 0 3deg, transparent 3deg 9deg);
  mask: radial-gradient(circle, transparent 30%, #000 31%, #000 71%, transparent 72%);
  pointer-events: none;
}

.hero::before {
  right: -150px;
  top: 80px;
}

.hero::before {
  animation: mandalaDrift 18s ease-in-out infinite alternate;
}

.hero h1 span {
  color: var(--accent);
}

.hero .lead {
  max-width: 630px;
  font-size: 1.08rem;
  color: #614f53;
}

.app-info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.app-info-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--primary);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(49, 24, 30, .15);
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(49, 24, 30, .08);
}

.app-info-pills i {
  color: var(--accent);
}

.trust-line {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary-light);
}

.hero-visual {
  position: relative;
  min-height: 690px;
  max-width: 640px;
  margin-left: auto;
}

.ritual-arch {
  position: absolute;
  inset: 72px 88px 20px 28px;
  border-radius: 190px 190px 18px 18px;
  overflow: hidden;
  border: 9px solid rgba(255, 253, 249, .8);
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone {
  position: absolute;
  width: min(36vw, 244px);
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(49, 24, 30, .32));
  border-radius: 30px;
}

.phone-main {
  right: 12px;
  top: 10px;
}

.phone-alt {
  left: 0;
  bottom: 0;
  width: min(30vw, 206px);
}

.diya-glow {
  position: absolute;
  right: 110px;
  bottom: 54px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 199, 79, .55), rgba(255, 199, 79, 0) 68%);
  border-radius: 50%;
}

.video-chip {
  position: absolute;
  left: 55px;
  top: 88px;
  padding: 11px 14px;
  background: var(--off-white);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.petals span {
  position: absolute;
  width: 10px;
  height: 16px;
  background: #d74b62;
  opacity: .25;
  border-radius: 10px 10px 10px 0;
}

.petals span:nth-child(1) {
  left: 8%;
  top: 24%;
}

.petals span:nth-child(2) {
  left: 44%;
  top: 19%;
}

.petals span:nth-child(3) {
  right: 12%;
  top: 72%;
}

.petals span:nth-child(4) {
  left: 20%;
  bottom: 14%;
}

.stats-band {
  padding: 30px 0;
  background: var(--primary);
  color: #fff;
}

.scripture-band {
  padding: 48px 0;
  background: var(--primary);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item i {
  color: var(--gold);
  font-size: 1.35rem;
}

.stat-item strong {
  font-family: var(--serif);
  font-size: 2.9rem;
  color: #fff;
  line-height: 1;
}

.stat-item span {
  color: rgba(255, 255, 255, .77);
  font-weight: 600;
}

.quote-section {
  background: linear-gradient(180deg, var(--off-white), var(--cream));
}

.gita-quote {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  border-top: 1px solid rgba(201, 154, 69, .45);
  border-bottom: 1px solid rgba(201, 154, 69, .45);
}

.gita-quote blockquote {
  margin: 0 0 18px;
  color: var(--primary);
  font-family: "Noto Serif Devanagari", serif;
  font-size: clamp(1.65rem, 4vw, 3.15rem);
  line-height: 1.55;
}

.gita-quote p {
  margin: 0 0 6px;
  color: var(--primary-light);
  font-size: 1.08rem;
}

.gita-quote span {
  color: var(--gold);
  font-weight: 800;
}

.gita-quote-light {
  padding: 0;
  border: 0;
}

.gita-quote-light blockquote,
.gita-quote-light p {
  color: #fff;
}

.gita-quote-light span {
  color: var(--gold);
}

.intro-section,
.samagri-section,
.faq-section {
  background: var(--off-white);
}

.intro-section {
  padding-top: 82px;
  padding-bottom: 84px;
}

.about-container {
  max-width: 1280px;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: 215px 215px;
  gap: 12px;
  align-items: stretch;
}

.about-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(49, 24, 30, .12);
}

.about-image-grid img:first-child {
  grid-row: 1 / span 2;
  border-radius: 18px 18px 18px 88px;
}

.about-copy {
  max-width: none;
}

.about-copy .section-kicker {
  margin-bottom: 10px;
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 4vw, 4.65rem);
}

.about-copy p {
  margin-bottom: 10px;
}

.about-lead {
  max-width: 760px;
  color: var(--primary-light);
  font-size: 1.04rem;
  font-weight: 500;
}

.about-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 22px 0 18px;
}

.about-text-grid article {
  padding-top: 16px;
  border-top: 2px solid rgba(201, 154, 69, .42);
}

.about-text-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-text-grid h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.about-text-grid p {
  margin-bottom: 9px;
  font-size: .96rem;
  line-height: 1.68;
}

.about-text-grid p:last-child {
  margin-bottom: 0;
}

.legacy-line {
  margin-top: 16px;
  padding: 10px 0 10px 16px;
  color: var(--primary);
  font-weight: 600;
  border-left: 4px solid var(--accent);
}

.feature-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 9px 11px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
}

.feature-list i {
  color: var(--accent);
}

.about-actions {
  margin-top: 18px;
}

.vision-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 154, 69, .18), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--off-white));
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.vision-mission article {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(49, 24, 30, .08);
}

.vision-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(202, 31, 72, .2);
}

.vision-icon i {
  font-size: 1.45rem;
}

.vision-mission h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.vision-mission p {
  margin: 0;
}

.apps-section {
  background:
    linear-gradient(180deg, var(--cream), var(--beige));
}

.app-showcase {
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  align-items: center;
  gap: 42px;
  padding: 44px;
  margin-top: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 249, .82);
  box-shadow: var(--shadow);
  border-radius: 18px;
}

.pandit-app {
  grid-template-columns: .75fr 1.1fr;
  background: #fff5f0;
}

.role-label {
  display: inline-block;
  padding: 8px 12px;
  background: var(--rose);
  color: var(--accent);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.check-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.app-feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin-top: 22px;
}

.app-feature-columns .check-grid {
  grid-template-columns: 1fr;
  margin: 0;
}

.check-grid li {
  color: var(--primary-light);
  font-weight: 600;
}

.check-grid li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  margin-right: 8px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-phone-wrap {
  justify-self: center;
  position: relative;
}

.app-phone-wrap img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 28px 32px rgba(49, 24, 30, .28));
}

.services-section {
  background: var(--cream);
}

.service-card {
  height: auto;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(49, 24, 30, .08);
}

.service-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card div {
  padding: 22px;
}

.service-card p {
  min-height: 76px;
}

.service-card small {
  display: block;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--accent);
  background: var(--rose);
  border: 1px solid rgba(202, 31, 72, .13);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 800;
}

.swiper {
  max-width: 100%;
  overflow: hidden;
}

.service-swiper,
.samagri-swiper,
.screenshot-swiper {
  padding-bottom: 18px;
}

.service-swiper .swiper-pagination,
.samagri-swiper .swiper-pagination,
.screenshot-swiper .swiper-pagination {
  position: static;
  margin-top: 28px;
  line-height: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.samagri-swiper {
  padding: 4px 0 44px;
  overflow: hidden;
}

.samagri-pin {
  height: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(49, 24, 30, .09);
}

.samagri-pin img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .45s ease;
}

.samagri-pin.tall img {
  height: 380px;
}

.samagri-pin:hover img {
  transform: scale(1.045);
}

.samagri-pin div {
  padding: 20px;
}

.samagri-pin h3 {
  font-size: 1.48rem;
  margin-bottom: 8px;
}

.samagri-pin p {
  margin: 0;
  font-size: .94rem;
}

.timeline-section {
  background: linear-gradient(180deg, var(--cream), var(--off-white));
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 45px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step {
  position: relative;
  padding: 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(49, 24, 30, .06);
}

.step b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.step h3 {
  font-size: 1.35rem;
}

.pandit-steps {
  background: var(--primary);
}

.pandit-steps h2,
.pandit-steps h3 {
  color: #fff;
}

.pandit-steps p {
  color: rgba(255, 255, 255, .74);
}

.pandit-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  counter-reset: flow;
}

.pandit-flow span {
  counter-increment: flow;
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  border-radius: 12px;
  font-weight: 700;
}

.pandit-flow span::before {
  content: counter(flow, decimal-leading-zero);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.online-section {
  background: var(--cream);
}

.online-panel {
  display: grid;
  grid-template-columns: 1fr .78fr;
  align-items: center;
  gap: 42px;
  padding: 44px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-list.compact {
  grid-template-columns: 1fr;
}

.video-mock {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  border: 14px solid var(--primary);
  border-radius: 32px;
  overflow: hidden;
  background: var(--primary);
  box-shadow: 0 28px 40px rgba(49, 24, 30, .28);
}

.video-mock img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.call-bar {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
}

.call-bar span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
}

.call-bar span:nth-child(2) {
  background: var(--accent);
}

.call-bar span:nth-child(3) {
  background: var(--gold);
}

.why-section {
  background: var(--off-white);
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 18px;
}

.benefit-layout article {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 12px;
}

.benefit-layout article:nth-child(2),
.benefit-layout article:nth-child(5) {
  transform: translateY(28px);
  background: #fff;
}

.benefit-layout i {
  color: var(--accent);
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.benefit-layout h3 {
  font-size: 1.38rem;
}

.screenshots-section {
  background: var(--beige);
}

.tab-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -16px 0 34px;
}

.tab-controls button {
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--primary);
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 800;
}

.tab-controls button.active {
  background: var(--primary);
  color: #fff;
}

.screenshot-swiper {
  padding: 18px 0 42px;
}

.screenshot-card {
  display: grid;
  place-items: center;
  height: 560px;
}

.screenshot-card img {
  height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(49, 24, 30, .25));
  border-radius: 28px;
}

.screenshot-swiper .swiper-slide-active img {
  transform: scale(1.06);
  transition: transform .25s ease;
}

.pandit-feature {
  background: var(--cream);
}

.download-section {
  background: var(--cream);
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: 60px 42px;
  background: var(--primary);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.download-panel::before {
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  opacity: .8;
}

.download-panel h2,
.download-panel h3 {
  color: #fff;
}

.download-panel p {
  color: rgba(255, 255, 255, .76);
}

.download-panel .section-kicker {
  color: var(--gold);
}

.download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: center;
}

.download-grid article {
  text-align: center;
  padding: 26px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.app-download-card {
  padding: 34px 22px;
  scroll-margin-top: 120px;
}

.app-download-grid {
  grid-template-columns: minmax(230px, 1fr) minmax(300px, 1.1fr) minmax(230px, 1fr);
  max-width: 1180px;
  margin: 0 auto;
}

.download-note {
  max-width: 410px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  line-height: 1.7;
}

.only-download-buttons .store-small {
  min-width: 148px;
  justify-content: center;
}

.store-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  font-size: .86rem;
}

.download-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 470px;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .38));
}

.download-phones img {
  max-height: 520px;
  width: auto;
  margin: 0 -34px;
}

.download-phones img:first-child {
  transform: rotate(-5deg);
}

.download-phones img:last-child {
  transform: rotate(5deg);
}

.qr {
  width: 96px;
  height: 96px;
  margin: 22px auto 0;
  border: 8px solid #fff;
  background:
    linear-gradient(90deg, #fff 10px, transparent 10px) 0 0 / 20px 20px,
    linear-gradient(#fff 10px, transparent 10px) 0 0 / 20px 20px,
    var(--gold);
  border-radius: 8px;
}

.accordion {
  max-width: 940px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 10px;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 800;
  color: var(--primary);
  background: #fff;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--rose);
  color: var(--primary);
}

.site-footer {
  background: #31181E;
  color: #fff;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 30px;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

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

.site-footer a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-bottom: 8px;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer a:hover,
.footer-modal-link:hover {
  transform: translateX(3px);
}

.site-footer a i,
.footer-modal-link i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  color: var(--gold);
  background: rgba(201, 154, 69, .11);
  border-radius: 50%;
  font-size: 1.12rem;
}

.site-footer .social-row a {
  display: grid;
  margin: 0;
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.site-footer .social-row a i {
  width: auto;
  height: auto;
  display: block;
  color: var(--gold);
  background: transparent;
  border-radius: 0;
  font-size: 1rem;
}

.footer-brand {
  padding-right: 28px;
}

.footer-brand img {
  width: min(230px, 100%);
  height: auto;
}

.footer-column {
  padding-left: 22px;
}

.footer-modal-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font: inherit;
  text-align: left;
  transition: color .2s ease, transform .2s ease;
}

.footer-modal-link:hover,
.footer-modal-link:focus {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(202, 31, 72, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.partner-modal .modal-content {
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}

.partner-modal .modal-header {
  background: var(--logo-bg);
  color: #fff;
}

.partner-modal .modal-title {
  color: #fff;
  font-size: 1.8rem;
}

.partner-modal .btn-close {
  filter: invert(1);
}

.partner-form .modal-body {
  display: grid;
  gap: 14px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dark);
  background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(202, 31, 72, .16);
}

.partner-status {
  min-height: 24px;
  color: var(--primary-light);
  font-weight: 700;
}

.partner-status.success {
  color: #166534;
}

.partner-status.error {
  color: var(--accent-dark);
}

.legal-page {
  background: var(--cream);
  padding-top: 104px;
}

.legal-navbar {
  z-index: 1000;
}

.legal-main {
  padding: 72px 0;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin-bottom: 26px;
}

.legal-card h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  margin-top: 34px;
}

.legal-card h3 {
  font-size: 1.3rem;
  margin-top: 24px;
}

.legal-card li {
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.legal-footer {
  padding-top: 24px;
}

.about-page .legal-main {
  padding: 0;
}

.about-full-page {
  padding: 78px 0 92px;
}

.about-page-header {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.about-page-header .section-kicker {
  justify-content: center;
}

.about-page-header h1 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.3vw, 5.6rem);
}

.about-page-header .about-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.about-page .about-visual-column {
  position: sticky;
  top: 136px;
}

.about-page .about-image-grid {
  grid-template-rows: 240px 240px;
}

.about-story {
  max-width: 760px;
}

.about-story::before {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--gold);
}

.about-story p {
  margin-bottom: 18px;
  color: var(--primary-light);
  font-size: 1.01rem;
  line-height: 1.86;
}

.about-story .feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.about-story .legacy-line {
  margin-top: 26px;
  color: var(--primary);
  line-height: 1.8;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(202, 31, 72, .45);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
    margin: 0 auto;
  }

  .phone {
    width: 230px;
  }

  .phone-alt {
    width: 190px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-copy {
    text-align: center;
  }

  .button-row,
  .app-info-pills {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-showcase,
  .pandit-app,
  .online-panel,
  .download-grid,
  .app-download-grid {
    grid-template-columns: 1fr;
  }

  .pandit-app .app-phone-wrap {
    order: 2;
  }

  .steps-line {
    grid-template-columns: 1fr;
  }

  .steps-line::before {
    left: 24px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }

  .step {
    padding-left: 78px;
  }

  .step b {
    position: absolute;
    left: 20px;
    top: 20px;
  }

  .benefit-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-layout article:nth-child(2),
  .benefit-layout article:nth-child(5) {
    transform: none;
  }

  .download-phones {
    min-height: 390px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-brand img {
    width: 142px;
  }

  .about-copy {
    max-width: none;
    margin-left: 0;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-page .about-visual-column {
    position: static;
  }

  .about-story {
    max-width: none;
  }

  .about-text-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(2rem, 8.7vw, 2.85rem);
    line-height: 1.12;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .container {
    --bs-gutter-x: 1.35rem;
  }

  .container>.row {
    margin-left: 0;
    margin-right: 0;
  }

  .container>.row>* {
    padding-left: 0;
    padding-right: 0;
  }

  .section-pad {
    padding: 68px 0;
  }

  .intro-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .section-pad-sm {
    padding: 48px 0;
  }

  .sam-navbar {
    padding: 8px 0;
  }

  .navbar-brand img {
    width: 116px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  html {
    scroll-padding-top: 104px;
  }

  .hero {
    align-items: flex-start;
    padding-top: 122px;
    overflow: hidden;
  }

  .hero .lead {
    font-size: .98rem;
    line-height: 1.65;
  }

  .app-info-pills span {
    width: 100%;
    justify-content: center;
    padding: 11px 12px;
  }

  .trust-line {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .gita-quote {
    padding: 28px 12px;
  }

  .vision-mission,
  .app-feature-columns {
    grid-template-columns: 1fr;
  }

  .about-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .about-lead {
    font-size: .98rem;
  }

  .about-page-header {
    margin-bottom: 28px;
    text-align: left;
  }

  .about-page-header .section-kicker {
    justify-content: flex-start;
  }

  .about-page-header h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .about-story::before {
    margin-bottom: 18px;
  }

  .about-story p {
    margin-bottom: 15px;
    font-size: .96rem;
    line-height: 1.78;
  }

  .about-story .feature-list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 18px 0 14px;
  }

  .about-text-grid article {
    padding-top: 13px;
  }

  .about-image-grid {
    grid-template-rows: 180px 180px;
    gap: 10px;
  }

  .about-image-grid img,
  .about-image-grid img:first-child {
    border-radius: 14px;
  }

  .hero-visual {
    min-height: 480px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .ritual-arch {
    inset: 78px 26px 48px 26px;
  }

  .phone-main {
    right: 0;
    width: min(48vw, 158px);
  }

  .phone-alt {
    left: 0;
    width: min(42vw, 136px);
  }

  .video-chip {
    left: 10px;
    top: 74px;
    font-size: .76rem;
  }

  .trust-line span::before {
    margin: 0 6px 2px;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .feature-list,
  .check-grid,
  .pandit-flow,
  .benefit-layout,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    gap: 8px;
    margin: 14px 0;
  }

  .feature-list span {
    min-height: 42px;
  }

  .app-showcase,
  .online-panel,
  .download-panel {
    padding: 28px 18px;
    border-radius: 14px;
  }

  .app-phone-wrap img {
    max-height: 430px;
  }

  .service-card img {
    height: 210px;
  }

  .samagri-pin img,
  .samagri-pin.tall img {
    height: 330px;
  }

  .video-mock img {
    height: 440px;
  }

  .screenshot-card {
    height: 470px;
  }

  .screenshot-card img {
    height: 430px;
  }

  .download-phones {
    min-height: 330px;
  }

  .download-phones img {
    max-height: 360px;
    margin: 0 -44px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand,
  .footer-column {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
  }

  .legal-page {
    padding-top: 86px;
  }

  .legal-main {
    padding: 44px 0;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.92rem, 8.4vw, 2.2rem);
  }

  .phone-main {
    width: 138px;
  }

  .phone-alt {
    width: 118px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .feature-image {
    min-height: 330px;
  }

  .tab-controls {
    flex-direction: column;
  }

  .download-phones img {
    max-height: 320px;
    margin: 0 -52px;
  }

  .about-image-grid {
    grid-template-rows: 150px 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    margin: 18px 0 14px;
  }

  .about-text-grid article {
    padding-top: 13px;
  }

  .about-image-grid {
    grid-template-rows: 180px 180px;
    gap: 10px;
  }

  .about-image-grid img,
  .about-image-grid img:first-child {
    border-radius: 14px;
  }

  .hero-visual {
    min-height: 480px;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .ritual-arch {
    inset: 78px 26px 48px 26px;
  }

  .phone-main {
    right: 0;
    width: min(48vw, 158px);
  }

  .phone-alt {
    left: 0;
    width: min(42vw, 136px);
  }

  .video-chip {
    left: 10px;
    top: 74px;
    font-size: .76rem;
  }

  .trust-line span::before {
    margin: 0 6px 2px;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .feature-list,
  .check-grid,
  .pandit-flow,
  .benefit-layout,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    gap: 8px;
    margin: 14px 0;
  }

  .feature-list span {
    min-height: 42px;
  }

  .app-showcase,
  .online-panel,
  .download-panel {
    padding: 28px 18px;
    border-radius: 14px;
  }

  .app-phone-wrap img {
    max-height: 430px;
  }

  .service-card img {
    height: 210px;
  }

  .samagri-pin img,
  .samagri-pin.tall img {
    height: 330px;
  }

  .video-mock img {
    height: 440px;
  }

  .screenshot-card {
    height: 470px;
  }

  .screenshot-card img {
    height: 430px;
  }

  .download-phones {
    min-height: 330px;
  }

  .download-phones img {
    max-height: 360px;
    margin: 0 -44px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand,
  .footer-column {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
  }

  .legal-page {
    padding-top: 86px;
  }

  .legal-main {
    padding: 44px 0;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.92rem, 8.4vw, 2.2rem);
  }

  .phone-main {
    width: 138px;
  }

  .phone-alt {
    width: 118px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .feature-image {
    min-height: 330px;
  }

  .tab-controls {
    flex-direction: column;
  }

  .download-phones img {
    max-height: 320px;
    margin: 0 -52px;
  }

  .about-image-grid {
    grid-template-rows: 150px 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes mandalaDrift {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(12deg);
  }
}

/* Account Deletion Page Styling */
.deletion-box {
  background: rgba(254, 243, 199, 0.4);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}

.deletion-box h3 {
  color: #92400e;
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deletion-box ol, .deletion-box ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.deletion-box li {
  margin-bottom: 8px;
  color: #78350f;
}

.deletion-box li:last-child {
  margin-bottom: 0;
}

.deletion-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-top: 32px;
}

.deletion-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-dark, #1f2937);
  border-bottom: none;
  padding-bottom: 0;
}

.deletion-form-card p.form-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.deletion-form .form-group {
  margin-bottom: 20px;
}

.deletion-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: #374151;
  margin-bottom: 6px;
}

.deletion-form .form-control,
.deletion-form .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1f2937;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.deletion-form .form-control:focus,
.deletion-form .form-select:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
  outline: none;
}

.deletion-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}

.deletion-form .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #dc2626;
  cursor: pointer;
}

.deletion-form .form-check-label {
  font-size: 0.9rem;
  color: #4b5563;
  cursor: pointer;
  line-height: 1.5;
}

.btn-delete-submit {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.btn-delete-submit:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  color: #ffffff;
}

.deletion-success-msg {
  display: none;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
}

.deletion-success-msg i {
  margin-right: 8px;
  font-size: 1.1rem;
}
