/* ========================================================
   SetMyHub – Global Stylesheet
   ======================================================== */

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

:root {
  --primary:       #2563EB;
  --primary-dark:  #1E40AF;
  --primary-light: #DBEAFE;
  --accent:        #7C3AED;
  --accent-light:  #EDE9FE;
  --success:       #10B981;
  --text-primary:  #0F172A;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --bg:            #F8FAFC;
  --surface:       #FFFFFF;
  --border:        #E2E8F0;
  --radius:        16px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}
.logo-icon { font-size: 1.4rem; }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #7C3AED 100%);
  padding: 48px 0 56px;
}
/* inner wrapper keeps content centred and max-width constrained */
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 340px;
  min-width: 0;
  max-width: 580px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.shape-1 { width: 500px; height: 500px; background: #fff; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: #fff; bottom: -100px; left: -80px; }
.shape-3 { width: 200px; height: 200px; background: #fff; top: 40%; left: 30%; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(90deg, #FCD34D, #FDE68A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 1.5rem; font-weight: 900; color: #fff; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

/* ── SECTIONS COMMON ─────────────────────────────────── */
.how-it-works, .features { padding: 96px 0; }
.how-it-works { background: #fff; }
.features { background: var(--bg); }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.section-label.light {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.section-title.light { color: #fff; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.section-subtitle.light { color: rgba(255,255,255,.75); }

/* ── HOW IT WORKS ────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  position: relative;
}
.step-number {
  font-size: .78rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .4;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  font-size: 1.6rem;
  color: var(--border);
  padding: 0 12px;
  flex-shrink: 0;
}

/* ── FEATURES GRID ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.6; }

/* ── HERO MOBILE DOWNLOAD STRIP (hidden on desktop) ─── */
.hero-download-strip { display: none; }

/* ── DOWNLOAD ────────────────────────────────────────── */
.download { padding: 96px 0; }
.download-card {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 55%, #7C3AED 100%);
  border-radius: 28px;
  padding: 60px 56px;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 24px 80px rgba(37,99,235,.3);
}
.download-content { flex: 1; min-width: 280px; }
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 14px 22px;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.store-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.store-icon { font-size: 1.6rem; }
.store-btn small { display: block; font-size: .72rem; opacity: .75; }
.store-btn strong { display: block; font-size: .92rem; font-weight: 700; }

/* ── QR CODES ────────────────────────────────────────── */
.download-qr-section { flex-shrink: 0; order: -1; }
.qr-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.qr-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 20px;
}
.qr-card { display: flex; flex-direction: column; align-items: center; }
.qr-card > div:not(.qr-title) { display: flex; gap: 20px; }
.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.qr-wrapper svg {
  background: #fff;
  border-radius: 12px;
  padding: 6px;
}
.qr-label-top {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.qr-label-bottom {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
}

/* ── HERO APP IMAGE ──────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-app-image {
  width: 300px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.3));
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1E40AF, #2563EB 60%, #7C3AED);
  padding: 80px 24px 64px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 14px; }
.page-hero p { font-size: 1rem; opacity: .8; max-width: 520px; margin: 0 auto; }

/* ── CONTENT SECTIONS (inner pages) ─────────────────── */
.content-section { padding: 72px 24px; background: #fff; }
.content-section + .content-section { background: var(--bg); }
.content-box {
  max-width: 800px;
  margin: 0 auto;
}
.content-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--primary-light);
}
.content-box h2:first-child { margin-top: 0; }
.content-box p, .content-box li {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.content-box ul { padding-left: 20px; list-style: disc; }
.content-box li { margin-bottom: 6px; }
.content-box .last-updated {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.contact-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.contact-card h3 { font-size: .9rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.contact-card a { font-size: 1rem; font-weight: 600; color: var(--primary); }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: .85rem; color: var(--text-secondary); margin-top: 6px; }

/* ── DATA DELETION HIGHLIGHT ─────────────────────────── */
.deletion-highlight {
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 20px 0 28px;
}
.deletion-highlight p {
  font-size: .95rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.7;
}

/* ── ABOUT COMPANY ───────────────────────────────────── */
.company-banner {
  background: linear-gradient(135deg, #F0F9FF, #EDE9FE);
  border: 1px solid #DBEAFE;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  margin-top: 40px;
}
.company-banner h3 { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.company-banner p { font-size: .9rem; color: var(--text-secondary); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1E293B;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* make white/light logo visible on dark footer */
  filter: brightness(0) invert(1);
}
.footer-tagline { font-size: .88rem; line-height: 1.6; margin-bottom: 10px; }
.footer-vertical { font-size: .8rem; color: #64748B; }
.footer-vertical strong { color: #94A3B8; }
.footer-links-group h4 {
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 16px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: .88rem;
  color: #64748B;
  transition: color .2s;
}
.footer-links-group a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: .78rem; color: #64748B; transition: color .2s; }
.footer-legal-links a:hover { color: #fff; }

/* ========================================================
   DEALS SECTION
   ======================================================== */

.deals {
  padding: 96px 0;
  background: linear-gradient(180deg, #F0F7FF 0%, #F8FAFC 100%);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

/* deals-grid removed — Bootstrap row/col used instead */
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #E8F0FE;
}
.deal-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(37,99,235,.13); }

.deal-card-soon { opacity: .85; border-style: dashed; border-color: #CBD5E1; }
.deal-card-soon:hover { transform: none; box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.deal-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, #EF4444, #F97316);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239,68,68,.35);
}
.soon-badge { background: linear-gradient(135deg, #6366F1, #8B5CF6); box-shadow: 0 2px 8px rgba(99,102,241,.35); }

.deal-image-wrap {
  width: 100%;
  height: 200px;
  background: #F8FAFF;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #E8F0FE;
}
.deal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .4s ease;
  background: #F8FAFF;
}
.deal-card:hover .deal-image { transform: scale(1.06); }
.deal-image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
}

.deal-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.deal-brand {
  font-size: .75rem; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase; letter-spacing: .8px;
  background: var(--primary-light);
  display: inline-block;
  padding: 3px 10px; border-radius: 20px;
  align-self: flex-start;
}

.deal-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); line-height: 1.35; }
.deal-desc { font-size: .83rem; color: var(--text-secondary); line-height: 1.55; }

.deal-price-block { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.deal-mrp { font-size: .78rem; color: var(--text-muted); text-decoration: line-through; }
.deal-price { font-size: 1.45rem; font-weight: 800; color: #16A34A; }
.deal-savings { font-size: .75rem; font-weight: 600; color: #fff; background: #16A34A; padding: 2px 8px; border-radius: 20px; }

.deal-progress-wrap { display: flex; flex-direction: column; gap: 6px; }
.deal-progress-info { display: flex; justify-content: space-between; align-items: center; }
.deal-joined { font-size: .8rem; font-weight: 600; color: var(--text-primary); }
.deal-target { font-size: .75rem; color: var(--text-muted); }
.deal-progress-track { height: 8px; background: #E2E8F0; border-radius: 99px; overflow: hidden; }
.deal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #10B981);
  border-radius: 99px;
  animation: progressGrow 1.2s ease-out forwards;
}
@keyframes progressGrow { from { width: 0 !important; } }
.deal-progress-label { font-size: .72rem; color: #EF4444; font-weight: 600; }

.deal-features { display: flex; flex-wrap: wrap; gap: 6px; }
.deal-tag { font-size: .72rem; font-weight: 500; color: var(--text-secondary); background: #F1F5F9; padding: 3px 10px; border-radius: 20px; border: 1px solid #E2E8F0; }

.deal-cta { display: flex; flex-direction: column; align-items: stretch; gap: 8px; margin-top: 4px; }
.razorpay-wrap { width: 100%; text-align: center; }
.razorpay-wrap form { display: inline-block; width: 100%; }
.razorpay-wrap .razorpay-payment-button {
  width: 100% !important;
  padding: 13px 24px !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #2563EB, #1E40AF) !important;
  border: none !important;
  border-radius: 12px !important;
  color: #fff !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(37,99,235,.35) !important;
}
.razorpay-wrap .razorpay-payment-button:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(37,99,235,.45) !important; }

.deal-note { font-size: .72rem; color: var(--text-muted); text-align: center; }
.deal-notify { margin-top: 4px; }
.btn-sm { padding: 10px 18px !important; font-size: .83rem !important; }


/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0 52px; }
  .hero-inner { gap: 32px; }
  .hero-app-image { width: 240px; }
  .download-card { padding: 40px 28px; }
  .how-it-works, .features { padding: 64px 0; }
  .download { padding: 64px 0; }
  .deals { padding: 64px 0; }
  .deals-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .deal-image-wrap { height: 170px; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px; }

  /* Hero */
  .hero { padding: 28px 0 36px; }
  .hero-inner { gap: 0; flex-direction: column; }
  .hero-content { max-width: 100%; width: 100%; }
  .hero-visual { display: none; }
  .hero-title { margin-bottom: 10px; }
  .hero-subtitle { font-size: .93rem; margin-bottom: 18px; }
  .hero-cta { margin-bottom: 0; gap: 10px; }
  .hero-stats { gap: 16px; margin-top: 20px; }
  .stat-number { font-size: 1.2rem; }

  .hero-download-strip {
    display: block;
    margin-top: 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(8px);
  }
  .hero-store-row { display: flex; gap: 10px; margin-bottom: 14px; }
  .hero-store-btn {
    flex: 1; display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px; padding: 10px 12px; color: #fff; font-size: .78rem; text-decoration: none;
  }
  .hero-store-btn span { font-size: 1.1rem; }
  .hero-store-btn small { display: block; opacity: .7; font-size: .65rem; }
  .hero-store-btn strong { display: block; font-size: .8rem; font-weight: 700; }
  .hero-qr-row { display: flex; gap: 12px; justify-content: center; }
  .hero-qr-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .hero-qr-item svg { background: #fff; border-radius: 8px; padding: 4px; display: block; }
  .hero-qr-item span { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.8); }

  .download { display: none; }

  /* Sections */
  .how-it-works, .features { padding: 48px 0; }
  .section-label { font-size: .72rem; }
  .section-title { font-size: 1.5rem; margin-bottom: 8px; }
  .section-subtitle { font-size: .9rem; margin-bottom: 24px; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: stretch; gap: 12px; }
  .step-connector { display: none; }
  .step-card { padding: 20px 18px; min-width: unset; max-width: unset; }
  .step-icon { font-size: 1.6rem; margin-bottom: 10px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 22px 18px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.3rem; margin-bottom: 12px; }

  /* Download */
  .download-card { padding: 28px 16px; gap: 28px; }
  .store-buttons { gap: 10px; }
  .store-btn { padding: 12px 16px; }
  .qr-card > div:not(.qr-title) { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr; gap: 14px; }
  .contact-card { padding: 24px 18px; }

  /* Buttons */
  .btn-outline { padding: 12px 20px; font-size: .88rem; }

  /* Deals — single column on mobile */
  .deals { padding: 40px 0; }
  .deals-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
  .deal-image-wrap { height: 200px; }
  .deal-body { padding: 16px; gap: 10px; }
  .deal-name { font-size: 1rem; }
  .deal-price { font-size: 1.3rem; }
  .razorpay-wrap .razorpay-payment-button { font-size: .9rem !important; padding: 12px !important; }
}

