*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Google Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

ul li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #01875f;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #018f5e;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg:not([fill]) {
  fill: currentColor;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table tr {
  line-height: 40px
}

[lang|="hi"],
[lang|="ta"],
[lang|="te"] {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.8;
}

:root {
  --store-teal: #01875f;
  --store-teal-light: #e6f4ef;
  --store-teal-hover: #016b4c;
  --store-blue: #1a73e8;
  --store-text: #202124;
  --store-text-secondary: #5f6368;
  --store-text-tertiary: #80868b;
  --store-bg: #ffffff;
  --store-surface: #ffffff;
  --store-surface-hover: #f8f9fa;
  --store-border: #dadce0;
  --store-border-light: #e8eaed;
  --store-star: #e8710a;
  --store-badge-bg: #01875f;
  --store-red: #d93025;
  --store-orange: #e8710a;

  --shadow-card: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  --shadow-card-hover: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  --shadow-header: 0 1px 2px rgba(60, 64, 67, 0.1);

  --space-unit: 0.25rem;
  --space-1: calc(1 * var(--space-unit));
  --space-4: calc(4 * var(--space-unit));
  --space-8: calc(8 * var(--space-unit));

  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease-in-out;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 50px;
}

html {
  font-size: 16px;
}

h1,
.text-4xl {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--store-text);
  letter-spacing: 0;
}

h2,
.text-3xl {
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--store-text);
  letter-spacing: 0;
}

p {
  display: block;
  line-height: 1.6;
  margin-bottom: var(--space-1);
  color: var(--store-text-secondary);
  font-size: 14px;
}

p strong {
  color: var(--store-text);
  font-weight: 500;
}

p a {
  color: var(--store-teal);
  font-weight: 500;
}

ol {
  padding: 0 30px;
  color: var(--store-text-secondary);
  font-size: 14px;
}

ol li {
  margin-bottom: 4px;
}

.currency {
  letter-spacing: -0.025em;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-inline: var(--space-8);
  }
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.15s var(--ease-in-out), box-shadow 0.15s, background 0.15s;
}

.button:active {
  transform: scale(0.97);
}

@media (pointer: coarse) {
  .button {
    min-width: 48px;
    min-height: 48px;
  }
}

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

.uppercase {
  letter-spacing: 0.05em;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.loading-pulse {
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

img {
  content-visibility: auto;
  loading: lazy;
  max-width: 100%;
  height: auto;
}

.download-btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

@media (pointer: coarse) {
  .download-btn {
    min-height: 44px;
    padding: 0.6rem 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }
}

@viewport {
  width: device-width;
}

.section--bonuses {
  background: var(--store-surface-hover);
}

.section__header {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.section__list-item {
  position: relative;
  padding-left: 1.5rem;
}

.section__list-item::before {
  content: "•";
  color: var(--store-teal);
  position: absolute;
  left: 0;
}

.download-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, opacity 0.4s;
  opacity: 0;
}

.download-btn:hover::after {
  width: 200%;
  height: 200%;
  opacity: 0;
}

.skeleton {
  animation: skeleton-loading 1.5s infinite linear;
  background: #e8eaed;
  background-image: linear-gradient(90deg,
      #e8eaed 25%,
      #f1f3f4 50%,
      #e8eaed 75%);
  background-size: 200% 100%;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ===== BODY ===== */
body {
  background: #f1f3f4;
  line-height: 1.5;
  color: var(--store-text);
}

/* ===== HEADER (App Store Style) ===== */
.header {
  background: var(--store-bg);
  padding: 0 1rem;
  text-align: center;
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-link {
  color: var(--store-text);
  text-decoration: none;
  padding: 0.75rem;
  font-size: 18px;
  font-weight: 500;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header {
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: clamp(1rem, 27vw, 27%);
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  z-index: 9999;
}

.nav-item {
  color: var(--store-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s, background 0.2s;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
}

.nav-item:hover {
  color: var(--store-teal);
  background: var(--store-teal-light);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 22px;
  height: 2px;
  background: var(--store-text-secondary);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Header responsive - simplified */
@media (min-width: 2560px) {
  .header {
    padding-inline: clamp(1rem, 27vw, 27%);
  }
}

@media (min-width: 2401px) and (max-width: 2559px) {
  .header {
    padding-inline: clamp(1rem, 25vw, 25%);
  }
}

@media (min-width: 2241px) and (max-width: 2400px) {
  .header {
    padding-inline: clamp(1rem, 23vw, 23%);
  }
}

@media (min-width: 2081px) and (max-width: 2240px) {
  .header {
    padding-inline: clamp(1rem, 21vw, 21%);
  }
}

@media (min-width: 1921px) and (max-width: 2080px) {
  .header {
    padding-inline: clamp(1rem, 19vw, 19%);
  }
}

@media (min-width: 1761px) and (max-width: 1920px) {
  .header {
    padding-inline: clamp(1rem, 17vw, 17%);
  }
}

@media (min-width: 1601px) and (max-width: 1760px) {
  .header {
    padding-inline: clamp(1rem, 15vw, 15%);
  }
}

@media (min-width: 1521px) and (max-width: 1600px) {
  .header {
    padding-inline: clamp(1rem, 13vw, 13%);
  }
}

@media (min-width: 1441px) and (max-width: 1520px) {
  .header {
    padding-inline: clamp(1rem, 11vw, 11%);
  }
}

@media (min-width: 1367px) and (max-width: 1440px) {
  .header {
    padding-inline: clamp(1rem, 9vw, 9%);
  }
}

@media (min-width: 1321px) and (max-width: 1366px) {
  .header {
    padding-inline: clamp(1rem, 7vw, 7%);
  }
}

@media (min-width: 1281px) and (max-width: 1320px) {
  .header {
    padding-inline: clamp(1rem, 5vw, 5%);
  }
}

@media (max-width:1280px) {
  .header {
    padding: 0px 5%;
    height: 56px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--store-bg);
    flex-direction: column;
    padding: 80px 1rem;
    transition: 0.3s var(--ease-in-out);
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-item {
    padding: 12px 20px;
    border-radius: 0;
    font-size: 15px;
  }

  .nav-item:hover {
    background: var(--store-surface-hover);
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links.active {
    right: 0;
  }
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

/* ===== MAIN CONTENT ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  min-height: 807px;
}

.section {
  background: var(--store-surface);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0;
  box-shadow: var(--shadow-card);
  border: none;
  transition: box-shadow 0.2s;
}

.section:hover {
  box-shadow: var(--shadow-card-hover);
}

h1 {
  color: var(--store-text);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

h2 {
  color: var(--store-text);
  font-size: 1.25rem;
  margin: 1rem 0 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
  text-align: left;
  font-weight: 500;
}

/* ===== DOWNLOAD CTA (Featured Banner) ===== */
.download-cta {
  text-align: center;
  background: var(--store-surface);
  color: var(--store-text);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-top: 0.75rem;
}

.download-cta h1 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--store-text);
  margin-bottom: 0.5rem;
}

.download-cta p {
  color: var(--store-text-secondary);
  font-size: 14px;
}

/* ===== DOWNLOAD BUTTON (Install Style) ===== */
.download-btn {
  background: var(--store-teal);
  color: white;
  padding: 0.6rem 2rem;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  margin: 0.75rem 0;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: none;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
}

.download-btn:hover {
  background: var(--store-teal-hover);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.download-btn:active {
  transform: scale(0.97);
}

/* ===== FEATURES GRID ===== */
.features {
  display: grid;
  gap: .5rem;
  margin-top: 0.75rem;
}

.feature-card {
  text-align: left;
  padding: 1rem;
  background: var(--store-surface-hover);
  border-radius: var(--radius-sm);
  border: 1px solid var(--store-border-light);
}

/* ===== USER REVIEWS ===== */
.review-card {
  background: var(--store-surface);
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-left: 3px solid var(--store-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.rating {
  color: var(--store-star);
  font-size: 13px;
  margin: 0.25rem 0;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: #f1f3f4;
  color: var(--store-text-secondary);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--store-border);
  font-size: 13px;
}

.footer a {
  color: var(--store-text-secondary);
}

.footer a:hover {
  color: var(--store-teal);
}

.disclaimer {
  background: #fce8e6;
  color: var(--store-red);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.375rem;
  }

  .download-btn {
    width: 100%;
  }

  .download-cta p:first-of-type {
    display: none
  }
}


/* ===== FAQ (App Store Style) ===== */
.faq-list {
  margin-top: 1rem;
  border: 1px solid var(--store-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--store-border-light);
  transition: background 0.2s;
}

.faq-item[open] {
  background: var(--store-surface-hover);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
  color: var(--store-text);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span {
  color: var(--store-text);
}

.arrow {
  width: 20px;
  height: 20px;
  fill: var(--store-text-tertiary);
  transition: transform 0.2s;
}

details[open] .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--store-text-secondary);
  font-size: 14px;
}

.faq-answer ol,
.faq-answer ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

@media (hover: hover) {
  .faq-item:hover:not([open]) {
    background: var(--store-surface-hover);
  }
}


/* ===== CONTACT ===== */
.contact-info {
  background: transparent;
  padding: 1.5rem 0;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

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

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--store-teal);
}

.contact-title {
  color: var(--store-text);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-detail {
  color: var(--store-text-secondary);
  line-height: 1.5;
  font-size: 13px;
}

.contact-detail a {
  color: var(--store-teal);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: row;
    align-items: center;
  }
}

/* ===== TABLES (Clean Store Style) ===== */
table {
  width: 100%;
  border: none;
}

table tr {
  border-bottom: 1px solid var(--store-border-light);
}

table tr:nth-child(even) {
  background: var(--store-surface-hover);
}

table tr:hover {
  background: #e8f0fe;
}

table th {
  background: var(--store-surface-hover);
  color: var(--store-text);
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
}

table td {
  padding: 0.5rem 1rem;
  color: var(--store-text-secondary);
  font-size: 14px;
  text-align: left;
}

/* ==================================
           APP LIST — Google Play Store Style
           ================================== */
.app-list {
  max-width: 1080px;
  margin: 0 auto;
}

.app-list>h2 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--store-text);
  margin: 0 0 1rem;
  padding: 0;
}

.app-item {
  display: flex;
  gap: 1rem;
  background: var(--store-surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.5rem;
  box-shadow: none;
  border: 1px solid var(--store-border-light);
  transition: background 0.15s;
  align-items: center;
}

.app-item:hover {
  background: var(--store-surface-hover);
  transform: none;
}

.app-rank {
  width: 28px;
  height: 28px;
  background: none;
  color: var(--store-text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  border: none;
}

.app-main {
  flex: 1;
  min-width: 0;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.app-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app-title {
  color: var(--store-text);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.app-meta {
  display: flex;
  gap: 0.75rem;
  color: var(--store-text-secondary);
  font-size: 12px;
}

.bonus {
  color: var(--store-teal);
  font-weight: 500;
  font-size: 12px;
}

.downloads {
  color: var(--store-text-tertiary);
  font-size: 12px;
}

.app-details {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.withdrawal {
  background: var(--store-teal-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  gap: 0.25rem;
  border: none;
  font-size: 12px;
}

.withdrawal .label {
  color: var(--store-text-secondary);
  font-size: 12px;
}

.withdrawal .value {
  color: var(--store-teal);
  font-weight: 500;
  font-size: 12px;
}

.app-desc {
  color: var(--store-text-secondary);
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.app-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  min-width: 100px;
}

.app-actions .download-btn {
  background: var(--store-teal);
  color: white;
  padding: 0.45rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  font-size: 14px;
  font-weight: 500;
  min-width: 90px;
  box-shadow: none;
}

.app-actions .download-btn:hover {
  background: var(--store-teal-hover);
}

.file-size {
  display: block;
  font-size: 11px;
  color: var(--store-text-tertiary);
  margin-top: 0.2rem;
}

.rating {
  color: var(--store-star);
  font-size: 12px;
  text-align: right;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .app-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    align-items: stretch;
  }

  .app-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
    display: flex;
  }

  .app-details {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: left;
    display: flex;
  }

  .app-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: row;
    justify-content: space-between;
  }

  .app-actions .download-btn {
    width: auto;
    flex: 1;
  }

  .rating {
    text-align: center;
    display: flex;
    align-items: center;
  }

  .withdrawal {
    display: inline-flex
  }
}

@media (max-width: 480px) {
  .app-meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .app-desc {
    font-size: 12px;
  }
}