/* ===== GujaratiPDF — palette pulled from app icon / feature graphic ===== */
:root {
  --purple-900: #2E1065;
  --purple-800: #3E1F8C;
  --purple-700: #5B2FBF;
  --purple-600: #6D3FD6;
  --purple-500: #8257E5;
  --purple-400: #A78BFA;
  --purple-100: #EDE7FB;
  --purple-50:  #F6F3FD;
  --gold-500:   #F5B942;
  --gold-400:   #FBCB6B;
  --navy-900:   #1E1B3A;
  --ink:        #2B2745;
  --ink-soft:   #635E80;
  --white:      #FFFFFF;
  --shadow-lg:  0 24px 48px -16px rgba(46, 16, 101, 0.28);
  --shadow-md:  0 12px 28px -12px rgba(46, 16, 101, 0.22);
  --radius-lg:  28px;
  --radius-md:  18px;
  --radius-sm:  12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Noto Sans Gujarati', sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.text-accent { color: var(--purple-600); }

h1, h2, h3 {
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 12px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: var(--white);
  color: var(--purple-700);
  border-color: var(--purple-100);
}
.btn-ghost:hover { border-color: var(--purple-400); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 16, 101, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-900);
}
.brand-name strong { color: var(--purple-600); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav a:hover { color: var(--purple-600); }
.nav-cta {
  background: var(--purple-600);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--purple-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
  padding: 72px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero-sub { font-size: 1.05rem; max-width: 480px; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}
.hero-stats {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-stats li {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero-stats strong { color: var(--navy-900); display: block; font-size: 1.05rem; }

.hero-art { position: relative; display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: 260px;
  border-radius: 36px;
  border: 10px solid var(--navy-900);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-900);
  z-index: 2;
}
.phone-frame img { width: 100%; display: block; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
}
.blob-1 {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  top: -20px; right: 10px;
  opacity: 0.55;
}
.blob-2 {
  width: 220px; height: 220px;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  bottom: -40px; left: -20px;
  opacity: 0.35;
}

/* ===== Tool strip ===== */
.tool-strip { padding: 8px 0 56px; }
.tool-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.tool-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--purple-100);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 6px 16px -10px rgba(46,16,101,0.2);
}
.tool-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== Section head ===== */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head p { font-size: 1.02rem; }

/* ===== Features ===== */
.features { padding: 40px 0 80px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.icon-purple { background: var(--purple-100); color: var(--purple-700); }
.icon-orange { background: #FFE7DB; color: #E4602A; }
.icon-teal   { background: #DBF3EE; color: #16875E; }
.icon-gold   { background: #FCEBC8; color: #B8790A; }

/* ===== Screenshots ===== */
.screenshots {
  padding: 20px 0 88px;
  background: var(--purple-50);
}
.screens-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 12px 4px 20px;
  scroll-snap-type: x mandatory;
}
.screen-item {
  flex: 0 0 auto;
  width: 200px;
  margin: 0;
  scroll-snap-align: start;
  text-align: center;
}
.screen-item img {
  border-radius: 20px;
  border: 8px solid var(--navy-900);
  box-shadow: var(--shadow-md);
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}
.screen-item figcaption {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

/* ===== Trust strip ===== */
.trust-strip {
  background: linear-gradient(120deg, var(--purple-700), var(--purple-900));
  padding: 26px 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-item {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ===== FAQ ===== */
.faq { padding: 88px 0; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--purple-50);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--purple-600);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 12px; margin-bottom: 0; }

/* ===== Download CTA ===== */
.download-cta {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-900));
  padding: 88px 0;
  text-align: center;
}
.download-icon {
  width: 84px; height: 84px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}
.download-inner h2 {
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 14px;
}
.download-inner p {
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 32px;
}
.download-cta .btn-primary {
  background: var(--white);
  color: var(--purple-700);
}
.download-cta .btn-primary:hover { background: var(--gold-400); color: var(--navy-900); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-900); padding: 32px 0 16px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name strong { color: var(--gold-500); }
.footer-brand p { color: rgba(255,255,255,0.5); margin: 0 0 0 4px; font-size: 0.85rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold-400); }
.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin: 14px 0 0;
}

@media (max-width: 560px) {
  .footer-brand p { width: 100%; margin: 4px 0 0; }
}

/* ===== Legal pages (Privacy / Terms) ===== */
.legal-hero {
  background: linear-gradient(180deg, var(--purple-50) 0%, var(--white) 100%);
  padding: 64px 0 40px;
  text-align: center;
}
.legal-hero .eyebrow { margin-bottom: 10px; }
.legal-updated {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.legal-content { padding: 8px 0 88px; }
.legal-content .container { max-width: 820px; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 44px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
}
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin: 0 0 12px;
}
.legal-content li { margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--purple-600); }
.legal-content strong { color: var(--navy-900); }
.legal-note {
  background: var(--purple-50);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 24px 0;
}
.legal-note p:last-child { margin-bottom: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-art { margin-top: 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { width: 100%; padding: 10px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
