/* =============================================================
   SNS ID Solutions — Landing page styles (v2)
   Brand palette (from SNS Printing & Gifting logo):
     Cyan   #0EA5E9   (primary)
     Orange #F59E0B   (highlight)
     Pink   #EC4899   (accent)
   Neutrals: #0F172A text, #64748B muted, #F8FAFC bg-alt
   Typography: Plus Jakarta Sans (headings) + Manrope (body)
   ============================================================= */

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin: 0 0 .5em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img,svg { display: block; max-width: 100%; }
::selection { background: #0EA5E9; color: #fff; }

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

/* ---- Topbar ---- */
.topbar {
  background: #0F172A; color: #CBD5E1;
  font-size: 13px; font-weight: 500;
}
.topbar-inner {
  display: flex; gap: 28px; justify-content: center;
  padding: 10px 24px; flex-wrap: wrap;
}
.topbar-inner span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-inner i { width: 14px; height: 14px; color: #F59E0B; }
.topbar-hide-sm { display: none; }
@media (min-width: 700px) { .topbar-hide-sm { display: inline-flex; } }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.nav { display: flex; align-items: center; gap: 20px; height: 80px; }
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  flex: none;
}
.brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; background: #fff; }
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text { font-size: 18px; color: #0F172A; }
.brand-sub  { font-size: 11px; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.nav-links { display: none; gap: 28px; font-weight: 500; color: #334155; margin-left: auto; }
.nav-links a { transition: color .2s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: linear-gradient(90deg, #0EA5E9, #EC4899); transition: width .3s;
}
.nav-links a:hover { color: #0F172A; }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: none; gap: 10px; margin-left: auto; }
.nav-toggle { display: inline-flex; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; color: #0F172A; }
.nav-toggle i { width: 26px; height: 26px; }
@media (min-width: 1000px) {
  .nav-links, .nav-actions { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-links { margin-left: 32px; margin-right: auto; }
}

/* Mobile menu open state */
.nav.is-open .nav-links {
  display: flex; position: absolute; top: 80px; left: 0; right: 0;
  flex-direction: column; background: #fff; padding: 20px 24px;
  border-bottom: 1px solid #E2E8F0; gap: 18px;
}
.nav.is-open .nav-actions { display: flex; position: absolute; top: calc(80px + 260px); right: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer; line-height: 1;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn i { width: 18px; height: 18px; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%); color: #fff;
  box-shadow: 0 10px 26px -10px rgba(14,165,233,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(236,72,153,.5); }

.btn-outline {
  background: #fff; color: #0F172A;
  border: 2px solid #E2E8F0;
}
.btn-outline:hover { border-color: #0EA5E9; color: #0EA5E9; }

.btn-ghost { background: transparent; color: #0F172A; border: 1px solid #E2E8F0; }
.btn-ghost:hover { border-color: #0EA5E9; color: #0EA5E9; }

.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 26px -10px rgba(37,211,102,.5); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-1px); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 72px 0 88px; background: #F8FAFC; }
@media (min-width: 1000px) { .hero { padding: 104px 0 120px; } }
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; filter: blur(80px); opacity: .35; }
.blob { position: absolute; width: 340px; height: 340px; border-radius: 50%; }
.blob-cyan   { background: #0EA5E9; top: -80px;  left: -80px; }
.blob-orange { background: #F59E0B; bottom: -120px; left: 30%; }
.blob-pink   { background: #EC4899; top: 40%; right: -120px; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 72px; } }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.1); color: #0369A1;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(14,165,233,.2);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; box-shadow: 0 0 0 4px rgba(16,185,129,.2); }

.hero-title {
  margin-top: 20px;
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 800;
}
.g-cyan   { background: linear-gradient(135deg, #0EA5E9, #06B6D4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.g-pink   { background: linear-gradient(135deg, #EC4899, #F59E0B); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-sub { margin-top: 18px; max-width: 520px; font-size: 17px; color: #475569; }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-wrap: wrap; gap: 24px; color: #334155; font-size: 14px; font-weight: 500;
}
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges i { width: 18px; height: 18px; color: #0EA5E9; }

/* Hero visual (image + floating chips) */
.hero-visual { position: relative; }
.hero-img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(15,23,42,.25);
  aspect-ratio: 4/3; object-fit: cover;
  border: 6px solid #fff;
}
.hero-chip {
  position: absolute; background: #fff; padding: 10px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 14px 28px -10px rgba(15,23,42,.18); border: 1px solid #E2E8F0;
}
.hero-chip i { width: 16px; height: 16px; color: #10B981; }
.chip-top    { top: -16px; left: -12px; animation: floaty 5s ease-in-out infinite; }
.chip-bottom { bottom: -16px; right: -12px; animation: floaty 5s ease-in-out -2.5s infinite; color: #0F172A; }
.chip-bottom i { color: #EC4899; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- Stats bar ---- */
.stats-bar {
  background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%);
  color: #fff; padding: 28px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat strong {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 34px; font-weight: 800;
}
.stat span { font-size: 13px; opacity: .9; letter-spacing: .06em; text-transform: uppercase; }

/* ---- Trust bar (client logos marquee) ---- */
.trust-bar { padding: 52px 0; background: #fff; border-bottom: 1px solid #E2E8F0; }
.trust-label {
  text-align: center; margin: 0 0 32px;
  color: #64748B; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
}
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 48px; animation: scroll 40s linear infinite; width: max-content; align-items: center; }
@keyframes scroll { 0% { transform: translateX(0);} 100% { transform: translateX(-50%);} }
.client-logo {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  height: 110px; min-width: 180px;
  padding: 16px 22px; border-radius: 16px;
  border: 1px solid #E2E8F0; background: #FFFFFF;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.client-logo img {
  max-height: 78px; max-width: 180px;
  width: auto; height: auto;
  object-fit: contain;
  filter: saturate(1.02);
  transition: transform .3s;
}
.client-logo:hover {
  transform: translateY(-3px);
  border-color: #0EA5E9;
  box-shadow: 0 16px 32px -18px rgba(14,165,233,.4);
}
.client-logo:hover img { transform: scale(1.04); }

/* ---- Sections ---- */
.section { padding: 88px 0; }
@media (min-width: 900px) { .section { padding: 120px 0; } }
.section-alt { background: #F8FAFC; }
.section-dark { background: #0F172A; color: #F8FAFC; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 48px); margin: 14px 0 12px; }
.section-head p  { color: #475569; font-size: 17px; }
.section-head-light p { color: rgba(248,250,252,.75); }

.eyebrow {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #EC4899; background: rgba(236,72,153,.1);
  padding: 6px 14px; border-radius: 999px;
}
.section-head-light .eyebrow { color: #FB923C; background: rgba(251,146,60,.15); }

/* ---- Services ---- */
.services-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  position: relative; background: #fff;
  border: 1px solid #E2E8F0; border-radius: 20px;
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent, #0EA5E9);
}
.service-cyan   { --accent: #0EA5E9; }
.service-orange { --accent: #F59E0B; }
.service-pink   { --accent: #EC4899; }
.service-dark   { --accent: #0F172A; background: #0F172A; color: #F8FAFC; border-color: #1E293B; }
.service-dark h3 { color: #fff; } .service-dark p { color: rgba(248,250,252,.75); }
.service-dark .ticks li { color: rgba(248,250,252,.85); } .service-dark .ticks li::before { color: #F59E0B; }

.service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(15,23,42,.18); border-color: var(--accent); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-dark .service-icon { background: rgba(245,158,11,.15); color: #F59E0B; }
.service-icon i { width: 28px; height: 28px; }
.service-card h3 { font-size: 22px; margin-bottom: 8px; }
.service-card p  { color: #475569; margin: 0 0 18px; font-size: 15px; }

.ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ticks li {
  position: relative; padding-left: 26px;
  font-size: 14px; color: #334155;
}
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent, #0EA5E9); font-weight: 800;
}
.ticks-sm li { font-size: 13px; color: #CBD5E1; }
.ticks-sm li::before { color: #F59E0B; }

.cta-banner {
  margin-top: 56px; background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%);
  border-radius: 24px; padding: 40px; color: #fff;
  display: grid; gap: 24px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .cta-banner { grid-template-columns: 1.5fr auto; padding: 48px; } }
.cta-banner h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.cta-banner p  { margin: 0; opacity: .9; }
.cta-banner .btn { background: #fff; color: #0F172A; }
.cta-banner .btn:hover { background: #F8FAFC; }

/* ---- Why us ---- */
.why-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; padding: 28px;
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(15,23,42,.12); }
.why-card i {
  width: 26px; height: 26px; padding: 12px;
  background: linear-gradient(135deg, #0EA5E9, #EC4899); color: #fff;
  border-radius: 12px; margin-bottom: 18px;
}
.why-card h4 { font-size: 19px; margin-bottom: 4px; }
.why-card p  { margin: 0; color: #64748B; font-size: 14px; }

/* ---- How it works ---- */
.howit-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .howit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .howit-grid { grid-template-columns: repeat(4, 1fr); } }
.howit-card {
  position: relative; background: #fff;
  border: 1px solid #E2E8F0; border-radius: 20px;
  padding: 36px 28px 28px;
  transition: transform .3s, box-shadow .3s;
}
.howit-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(15,23,42,.12); }
.howit-num {
  position: absolute; top: 18px; right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 56px; line-height: 1; color: rgba(14,165,233,.12);
}
.howit-card i {
  width: 28px; height: 28px; padding: 12px;
  background: rgba(14,165,233,.1); color: #0EA5E9;
  border-radius: 12px; margin-bottom: 18px;
}
.howit-card h4 { font-size: 20px; margin-bottom: 6px; }
.howit-card p  { margin: 0; color: #64748B; font-size: 14px; }

/* ---- Pricing ---- */
.price-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative; background: #fff;
  border: 1px solid #E2E8F0; border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -24px rgba(15,23,42,.15); }
.price-card.featured {
  border: 0;
  background: #0F172A; color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -20px rgba(236,72,153,.35);
}
.price-card.featured h3, .price-card.featured .price-amount { color: #fff; }
.price-card.featured .ticks li { color: rgba(248,250,252,.85); }
.price-card.featured .ticks li::before { color: #F59E0B; }
.price-card.featured .price-min { color: rgba(248,250,252,.6); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #F59E0B, #EC4899); color: #fff;
  padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
}
.price-card h3 { font-size: 20px; font-weight: 700; margin: 0; }
.price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800;
  color: #0F172A; display: flex; align-items: baseline; gap: 8px;
}
.price-amount span { font-size: 14px; font-weight: 500; color: #94A3B8; }
.price-card.featured .price-amount span { color: rgba(248,250,252,.6); }
.price-min { font-size: 13px; color: #64748B; margin: -12px 0 0; }
.price-card .btn { margin-top: auto; }
.price-note { text-align: center; margin-top: 40px; color: #64748B; font-size: 15px; }
.price-note a { color: #EC4899; font-weight: 600; text-decoration: underline; }

/* ---- Combo offers ---- */
.combo-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  align-items: stretch; margin-bottom: 72px;
}
@media (min-width: 900px) { .combo-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.combo-card {
  position: relative; background: #fff;
  border: 2px solid #E2E8F0; border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(15,23,42,.2); }

.combo-card.combo-featured {
  border-color: transparent;
  box-shadow: 0 30px 60px -25px rgba(236,72,153,.35);
  transform: translateY(-8px);
}
.combo-card.combo-featured .combo-head {
  background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%); color: #fff;
}
.combo-card.combo-featured .combo-head h3,
.combo-card.combo-featured .combo-tag,
.combo-card.combo-featured .combo-rupee,
.combo-card.combo-featured .combo-amount,
.combo-card.combo-featured .combo-unit { color: #fff; }

.combo-head {
  background: linear-gradient(135deg, #F1F5F9 0%, #FFFFFF 100%);
  padding: 32px 32px 28px;
  border-bottom: 1px solid #E2E8F0;
}
.combo-card.combo-featured .combo-head { border-bottom-color: rgba(255,255,255,.15); }

.combo-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #0EA5E9; margin-bottom: 8px;
}
.combo-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px;
  font-weight: 800; margin: 0 0 18px;
}
.combo-price { display: flex; align-items: baseline; gap: 6px; }
.combo-rupee { font-size: 28px; font-weight: 700; color: #0F172A; }
.combo-amount {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 64px; font-weight: 800; line-height: 1;
  color: #0F172A;
  background: linear-gradient(135deg, #0EA5E9, #EC4899);
  -webkit-background-clip: text; background-clip: text;
}
.combo-card:not(.combo-featured) .combo-amount { color: transparent; }
.combo-card.combo-featured .combo-amount {
  background: none; -webkit-background-clip: initial; background-clip: initial; color: #fff;
}
.combo-unit { font-size: 14px; color: #64748B; margin-left: 6px; line-height: 1.3; }
.combo-unit small { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }

.combo-body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.combo-body h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #64748B; margin: 0;
}
.ticks-combo li { font-size: 15px; color: #334155; }
.ticks-combo li::before { color: #0EA5E9; font-size: 15px; }
.ticks-combo li strong { color: #0F172A; }

.combo-free {
  background: linear-gradient(135deg, rgba(245,158,11,.08) 0%, rgba(236,72,153,.08) 100%);
  border: 1px dashed rgba(245,158,11,.4);
  border-radius: 16px; padding: 22px;
}
.combo-free-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: #D97706; font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.combo-free-label i { width: 18px; height: 18px; }

.free-list {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.free-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.free-list i {
  flex: none; width: 18px; height: 18px;
  padding: 9px; border-radius: 8px;
  background: #fff; color: #EC4899;
  box-shadow: 0 4px 10px -4px rgba(236,72,153,.3);
}
.free-list li strong { display: block; color: #0F172A; font-size: 14px; }
.free-list li span   { display: block; color: #94A3B8; font-size: 12px; font-weight: 500; }

.combo-savings {
  display: flex; justify-content: space-between; align-items: center;
  background: #0F172A; color: #fff;
  padding: 12px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
}
.combo-savings strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, #F59E0B, #EC4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.combo-card .price-badge {
  position: absolute; top: 16px; right: 16px; left: auto; transform: none;
  background: linear-gradient(135deg, #F59E0B, #EC4899); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  z-index: 2;
}

/* ---- Detailed rate card ---- */
.rate-card {
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 24px; padding: 40px;
  box-shadow: 0 24px 48px -30px rgba(15,23,42,.12);
}
.rate-head { text-align: center; margin-bottom: 32px; }
.rate-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; margin: 0 0 6px;
}
.rate-head p { color: #64748B; margin: 0; font-size: 15px; }

.rate-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px)  { .rate-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.rate-block {
  background: #F8FAFC; border: 1px solid #E2E8F0;
  border-radius: 16px; padding: 22px;
  transition: border-color .2s, background .2s;
}
.rate-block:hover { border-color: #0EA5E9; background: #fff; }

.rate-block-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 14px;
  border-bottom: 1px solid #E2E8F0;
}
.rate-block-head i {
  flex: none; width: 22px; height: 22px; padding: 10px;
  background: linear-gradient(135deg, #0EA5E9, #EC4899); color: #fff;
  border-radius: 10px;
}
.rate-block-head h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; margin: 0 0 2px; color: #0F172A;
}
.rate-block-head span { font-size: 12px; color: #64748B; }

.rate-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.rate-table th, .rate-table td {
  padding: 10px 8px; text-align: left;
  border-bottom: 1px solid #E2E8F0;
}
.rate-table th {
  font-size: 11px; color: #64748B;
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600;
}
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table td:last-child {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; color: #0F172A; text-align: right; white-space: nowrap;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  margin: 0; position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 20px; color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,.9) 100%);
  display: flex; flex-direction: column; gap: 6px;
}
.gallery-item .cat {
  display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.2); padding: 3px 10px; border-radius: 999px;
  font-weight: 600; align-self: flex-start;
}
.gallery-item strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; }

/* ---- Testimonials ---- */
.tes-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .tes-grid { grid-template-columns: repeat(3, 1fr); } }
.tes-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 32px; margin: 0;
  transition: transform .3s, background .3s;
}
.tes-card:hover { transform: translateY(-4px); background: rgba(14,165,233,.08); }
.tes-stars { color: #F59E0B; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.tes-card blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 500;
  color: #F8FAFC; margin: 0 0 22px; line-height: 1.5;
}
.tes-card figcaption {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px;
}
.tes-card figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.tes-card figcaption strong { display: block; font-size: 15px; color: #fff; }
.tes-card figcaption span  { display: block; font-size: 13px; color: rgba(248,250,252,.6); }

/* ---- FAQ ---- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: #0EA5E9; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 16px;
  color: #0F172A;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { width: 20px; height: 20px; color: #0EA5E9; transition: transform .3s; flex: none; }
.faq-item[open] summary i { transform: rotate(45deg); color: #EC4899; }
.faq-item p { padding: 0 24px 22px; color: #475569; margin: 0; font-size: 15px; }

.faq-cta {
  margin-top: 48px; padding: 32px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(236,72,153,.1));
  border: 1px solid rgba(14,165,233,.2);
  text-align: center;
}
.faq-cta strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; margin-bottom: 6px; }
.faq-cta p { color: #475569; margin: 0 0 18px; }

/* ---- Quote / Contact ---- */
.section-quote { background: #F8FAFC; }
.quote-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 900px) { .quote-grid { grid-template-columns: 1fr 1.15fr; gap: 64px; } }
.quote-copy h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 14px 0 14px; }
.quote-copy > p { color: #475569; font-size: 17px; max-width: 480px; margin-bottom: 30px; }

.contact-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list i {
  width: 18px; height: 18px; padding: 11px;
  background: #fff; border: 1px solid #E2E8F0; color: #0EA5E9;
  border-radius: 12px; flex: none;
}
.contact-list span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: #64748B; font-weight: 700; margin-bottom: 2px; }
.contact-list a { color: #0F172A; font-weight: 600; }
.contact-list a:hover { color: #0EA5E9; }

.guarantee {
  margin-top: 30px; padding: 24px;
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(245,158,11,.08));
  border: 1px solid rgba(14,165,233,.2); border-radius: 16px;
}
.guarantee h4 { display: flex; align-items: center; gap: 10px; font-size: 17px; margin-bottom: 8px; }
.guarantee h4 i { color: #0EA5E9; width: 22px; height: 22px; }
.guarantee p { color: #475569; font-size: 14px; margin: 0 0 14px; }
.guarantee .ticks li { color: #334155; }
.guarantee .ticks li::before { color: #EC4899; }

.quote-form {
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 24px; padding: 36px;
  box-shadow: 0 40px 80px -40px rgba(15,23,42,.15);
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 6px; }
.field input,
.field select,
.field textarea {
  background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 10px;
  padding: 13px 14px; font: inherit; color: #0F172A;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: #0EA5E9;
  box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .row { grid-template-columns: 1fr 1fr; } }

.form-note { font-size: 13px; color: #64748B; text-align: center; margin: 14px 0 0; }
.form-feedback { margin: 14px 0 0; min-height: 20px; font-size: 14px; font-weight: 500; text-align: center; }
.form-feedback.ok    { color: #16A34A; }
.form-feedback.error { color: #DC2626; }

/* ---- Footer ---- */
.site-footer { background: #0F172A; color: #CBD5E1; padding: 72px 0 28px; }
.footer-grid {
  display: grid; gap: 40px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 36px; } }
.brand-footer { color: #fff; margin-bottom: 16px; }
.brand-footer .brand-logo { background: #fff; padding: 4px; }
.brand-footer .brand-text { color: #fff; }
.brand-footer .brand-sub { color: #94A3B8; }
.footer-desc { max-width: 380px; color: rgba(203,213,225,.7); font-size: 15px; }
.socials { display: inline-flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center;
  color: #CBD5E1; transition: background .2s, color .2s;
}
.socials a:hover { background: linear-gradient(135deg, #0EA5E9, #EC4899); color: #fff; }
.socials i { width: 18px; height: 18px; }
.site-footer h4 {
  color: #fff; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer li { font-size: 14px; color: rgba(203,213,225,.85); }
.contact-ul li { display: flex; gap: 10px; align-items: flex-start; }
.contact-ul i { width: 16px; height: 16px; color: #F59E0B; margin-top: 3px; flex: none; }
.site-footer a { color: rgba(203,213,225,.85); transition: color .2s; }
.site-footer a:hover { color: #0EA5E9; }
.footer-bottom {
  margin-top: 52px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: rgba(203,213,225,.55); font-size: 13px;
}

/* ---- Floating WhatsApp ---- */
.whatsapp-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(37,211,102,.6);
  transition: transform .25s ease;
  animation: pulseWA 2.4s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 14px 32px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); }
  50%     { box-shadow: 0 14px 32px -10px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0);   }
}

/* ---- Scroll reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---- Login page ---- */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,.2), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(236,72,153,.2), transparent 40%),
    #F8FAFC;
}
.login-card {
  width: 100%; max-width: 460px;
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 24px; padding: 40px;
  box-shadow: 0 40px 80px -30px rgba(15,23,42,.2);
}
.login-card .brand { justify-content: center; margin: 0 auto 22px; }
.login-card h1 { font-size: 26px; text-align: center; }
.login-card p.lead { text-align: center; color: #64748B; margin: 0 0 28px; font-size: 14px; }
.login-hint {
  margin-top: 18px; text-align: center; font-size: 12px; color: #94A3B8;
  background: #F8FAFC; padding: 10px; border-radius: 8px;
}
.login-error {
  background: rgba(220,38,38,.1); color: #B91C1C;
  border: 1px solid rgba(220,38,38,.2); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; margin-bottom: 16px;
}
.login-back { text-align: center; margin-top: 20px; font-size: 14px; }
.login-back a { color: #0EA5E9; font-weight: 600; }

/* ---- Dashboard ---- */
.dash-top {
  background: #fff; border-bottom: 1px solid #E2E8F0; padding: 16px 0;
}
.dash-top .nav { height: auto; }
.dash-body { padding: 48px 0; background: #F8FAFC; min-height: 60vh; }
.dash-welcome {
  background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%);
  color: #fff; padding: 36px; border-radius: 20px; margin-bottom: 32px;
}
.dash-welcome h1 { color: #fff; margin: 0 0 8px; font-size: 28px; }
.dash-welcome p  { margin: 0; opacity: .9; }
.dash-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .dash-grid { grid-template-columns: repeat(3, 1fr); } }
.dash-tile {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 18px;
  padding: 26px; transition: transform .2s, box-shadow .2s;
}
.dash-tile:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(15,23,42,.15); }
.dash-tile i {
  width: 24px; height: 24px; padding: 12px;
  background: linear-gradient(135deg, #0EA5E9, #EC4899); color: #fff;
  border-radius: 12px; margin-bottom: 16px;
}
.dash-tile h3 { font-size: 18px; margin-bottom: 4px; }
.dash-tile p  { margin: 0; color: #64748B; font-size: 14px; }

/* =============================================================
   TESTIMONIAL AVATARS (initials)
   ============================================================= */
.tes-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16px; color: #fff;
  flex: none; letter-spacing: .02em;
}
.tes-avatar-1 { background: linear-gradient(135deg, #0EA5E9, #06B6D4); }
.tes-avatar-2 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.tes-avatar-3 { background: linear-gradient(135deg, #EC4899, #8B5CF6); }

/* =============================================================
   MOBILE-FIRST APP FEEL
   Everything below refines the experience for phones (≤ 720px).
   Goal: feel like a native app – compact, touch-friendly, fast.
   ============================================================= */

/* Safe areas for iPhone notch / gesture bar */
body {
  padding-left:  env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ---- Phone breakpoint ---- */
@media (max-width: 720px) {

  /* Global type scaling — compress for mobile */
  body { font-size: 15px; line-height: 1.55; }
  .container { padding: 0 18px; }

  /* Topbar: collapse to a single centered line */
  .topbar-inner { gap: 14px; padding: 8px 14px; font-size: 11.5px; }
  .topbar-hide-sm { display: none !important; }
  .topbar-inner i { width: 12px; height: 12px; }

  /* Header: slimmer nav, compact brand */
  .nav { height: 64px; gap: 10px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text { font-size: 15px; }
  .brand-sub  { font-size: 9px; letter-spacing: .08em; }
 
 .nav-mobile-controls {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.nav-toggle {
  display: inline-flex !important;
}
  .nav-mobile-login {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 12px; border-radius: 999px;
    background: #F8FAFC; border: 1px solid #E2E8F0;
    color: #0F172A; font-weight: 600; font-size: 13px;
    transition: background .2s, border-color .2s, transform .15s;
  }
  .nav-mobile-login i { width: 15px; height: 15px; color: #0EA5E9; }
  .nav-mobile-login:active { transform: scale(.96); background: #EFF6FF; border-color: #0EA5E9; }
  .nav-toggle {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%);
    color: #fff;
    border: 0;
  }
  .nav-toggle i { width: 22px; height: 22px; color: #fff; position: absolute; transition: opacity .2s, transform .2s; }
  .nav-toggle .icon-close { opacity: 0; transform: rotate(-90deg); }
  .nav-toggle.is-open .icon-menu  { opacity: 0; transform: rotate(90deg); }
  .nav-toggle.is-open .icon-close { opacity: 1; transform: rotate(0); }

  /* Buttons — larger touch targets */
  .btn     { padding: 13px 22px; font-size: 15px; }
  .btn-sm  { padding: 10px 16px; font-size: 13.5px; }
  .btn-lg  { padding: 16px 24px; font-size: 15.5px; }
  .btn-block { padding: 15px 20px; }

  /* Section spacing — compressed but comfortable */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 28px; line-height: 1.2; }
  .section-head p  { font-size: 15px; }
  .eyebrow { font-size: 11px; padding: 5px 12px; }

  /* --- Hero --- */
  .hero { padding: 40px 0 56px; }
  .hero-grid { gap: 32px; }
  .pill { padding: 6px 12px; font-size: 12px; }
  .hero-title { font-size: 32px; margin-top: 16px; line-height: 1.15; }
  .hero-sub   { font-size: 15px; margin-top: 14px; }
  .hero-cta   { margin-top: 22px; gap: 10px; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .hero-badges {
    gap: 14px; margin-top: 26px; font-size: 12.5px;
  }
  .hero-badges li i { width: 15px; height: 15px; }
  .hero-img { border: 4px solid #fff; border-radius: 16px; }
  .hero-chip {
    padding: 7px 12px; font-size: 11px; gap: 6px;
  }
  .hero-chip i { width: 13px; height: 13px; }
  .chip-top    { top: -10px; left: -4px; }
  .chip-bottom { bottom: -10px; right: -4px; }

  /* --- Stats bar: 2x2 grid, tighter --- */
  .stats-bar { padding: 20px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
  .stat strong { font-size: 26px; }
  .stat span   { font-size: 11px; letter-spacing: .04em; }

  /* --- Trust bar / partner logos: SMALL on mobile --- */
  .trust-bar { padding: 32px 0; }
  .trust-label { margin-bottom: 18px; font-size: 11px; }
  .logo-marquee { mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .logo-track  { gap: 16px; animation-duration: 28s; }
  .client-logo {
    height: 64px; min-width: 110px;
    padding: 8px 12px; border-radius: 12px;
  }
  .client-logo img { max-height: 44px; max-width: 100px; }

  /* --- Services --- */
  .services-grid { gap: 14px; }
  .service-card  { padding: 22px 20px; border-radius: 16px; }
  .service-card h3 { font-size: 18px; }
  .service-card p  { font-size: 14px; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 14px; border-radius: 12px; }
  .service-icon i { width: 22px; height: 22px; }
  .ticks li { font-size: 13.5px; padding-left: 22px; }

  .cta-banner {
    margin-top: 40px; padding: 28px 22px; border-radius: 18px;
    text-align: center;
  }
  .cta-banner h3 { font-size: 20px; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* --- Why us --- */
  .why-grid { gap: 12px; }
  .why-card { padding: 20px 18px; border-radius: 14px; }
  .why-card h4 { font-size: 16px; }
  .why-card p  { font-size: 13px; }
  .why-card i {
    width: 20px; height: 20px; padding: 10px;
    border-radius: 10px; margin-bottom: 12px;
  }

  /* --- How it works --- */
  .howit-grid { gap: 14px; }
  .howit-card { padding: 26px 20px 22px; border-radius: 16px; }
  .howit-card h4 { font-size: 17px; }
  .howit-card p  { font-size: 13.5px; }
  .howit-num { font-size: 44px; top: 14px; right: 20px; }
  .howit-card i { width: 22px; height: 22px; padding: 10px; border-radius: 10px; margin-bottom: 14px; }

  /* ============================================================
     COMBO OFFERS — refined mobile layout
     ============================================================ */
  .combo-grid { gap: 20px; margin-bottom: 40px; }
  .combo-card {
    border-radius: 20px;
    transform: none !important;   /* kill desktop lift on featured */
  }
  .combo-card.combo-featured { transform: none !important; }

  .combo-head {
    padding: 22px 20px 20px;
  }
  .combo-tag { font-size: 10.5px; letter-spacing: .1em; margin-bottom: 6px; }
  .combo-head h3 { font-size: 21px; margin-bottom: 14px; }
  .combo-price { gap: 4px; align-items: flex-start; }
  .combo-rupee  { font-size: 22px; padding-top: 8px; }
  .combo-amount { font-size: 50px; }
  .combo-unit   { font-size: 12.5px; }
  .combo-unit small { font-size: 10px; }

  .combo-body { padding: 20px 20px 24px; gap: 16px; }
  .combo-body h4 { font-size: 11.5px; letter-spacing: .08em; }
  .ticks-combo li { font-size: 14px; }

  .combo-free { padding: 16px 16px 14px; border-radius: 14px; }
  .combo-free-label { font-size: 11.5px; margin-bottom: 10px; }
  .combo-free-label i { width: 15px; height: 15px; }
  .free-list { gap: 10px; margin-bottom: 12px; }
  .free-list li { font-size: 13px; gap: 10px; }
  .free-list i  { padding: 8px; width: 15px; height: 15px; border-radius: 7px; }
  .free-list li strong { font-size: 13px; }
  .free-list li span   { font-size: 11px; }

  .combo-savings {
    padding: 10px 12px; font-size: 12px; border-radius: 9px;
  }
  .combo-savings strong { font-size: 17px; }

  .combo-card .price-badge {
    top: 10px; right: 10px;
    font-size: 10px; padding: 5px 11px;
  }

  /* --- Rate card --- */
  .rate-card { padding: 24px 18px; border-radius: 18px; }
  .rate-head { margin-bottom: 22px; }
  .rate-head h3 { font-size: 19px; }
  .rate-head p  { font-size: 13.5px; }
  .rate-grid { gap: 14px; }
  .rate-block { padding: 18px 16px; border-radius: 14px; }
  .rate-block-head { padding-bottom: 12px; margin-bottom: 12px; gap: 10px; }
  .rate-block-head i { padding: 8px; width: 18px; height: 18px; border-radius: 8px; }
  .rate-block-head h4 { font-size: 14.5px; }
  .rate-block-head span { font-size: 11px; }
  .rate-table { font-size: 13px; }
  .rate-table th { font-size: 10px; }
  .rate-table th, .rate-table td { padding: 8px 6px; }

  /* --- Gallery --- */
  .gallery-grid { gap: 12px; }
  .gallery-item { border-radius: 14px; }
  .gallery-item figcaption { padding: 14px; }
  .gallery-item strong { font-size: 16px; }
  .gallery-item .cat { font-size: 10px; padding: 2px 8px; }

  /* --- Testimonials --- */
  .tes-grid { gap: 14px; }
  .tes-card { padding: 22px 20px; border-radius: 18px; }
  .tes-stars { font-size: 15px; margin-bottom: 10px; letter-spacing: 1px; }
  .tes-card blockquote { font-size: 14.5px; margin-bottom: 16px; }
  .tes-card figcaption { padding-top: 14px; gap: 12px; }
  .tes-avatar { width: 40px; height: 40px; font-size: 14px; }
  .tes-card figcaption strong { font-size: 14px; }
  .tes-card figcaption span   { font-size: 12px; }

  /* --- FAQ --- */
  .faq-list { gap: 8px; }
  .faq-item { border-radius: 12px; }
  .faq-item summary {
    padding: 16px 18px; font-size: 14.5px; gap: 12px;
  }
  .faq-item summary i { width: 18px; height: 18px; }
  .faq-item p { padding: 0 18px 18px; font-size: 13.5px; }
  .faq-cta { margin-top: 32px; padding: 24px 20px; border-radius: 16px; }
  .faq-cta strong { font-size: 18px; }
  .faq-cta .btn { width: 100%; }

  /* --- Quote / Contact --- */
  .quote-grid { gap: 28px; }
  .quote-copy h2 { font-size: 26px; }
  .quote-copy > p { font-size: 15px; margin-bottom: 22px; }
  .contact-list { gap: 14px; margin-bottom: 22px; }
  .contact-list li { gap: 12px; }
  .contact-list i { padding: 9px; width: 16px; height: 16px; border-radius: 10px; }
  .contact-list span { font-size: 10.5px; }
  .contact-list a { font-size: 14px; }
  .guarantee { padding: 18px; border-radius: 14px; }
  .guarantee h4 { font-size: 15px; }
  .guarantee p  { font-size: 13px; }

  .quote-form { padding: 22px 18px; border-radius: 18px; }
  .field { margin-bottom: 14px; }
  .field label { font-size: 12.5px; }
  .field input, .field select, .field textarea {
    padding: 12px 13px; font-size: 15px; border-radius: 10px;
  }
  .form-note { font-size: 12px; }

  /* --- Footer --- */
  .site-footer { padding: 48px 0 100px; }    /* extra bottom = room for FAB */
  .footer-grid { gap: 28px; }
  .footer-desc { font-size: 13.5px; }
  .site-footer h4 { font-size: 12px; margin-bottom: 12px; }
  .site-footer li { font-size: 13.5px; }
  .footer-bottom { margin-top: 32px; font-size: 12px; flex-direction: column; text-align: center; gap: 4px; }

  /* --- Floating WhatsApp — ensure it stays above iOS gesture bar --- */
  .whatsapp-fab {
    width: 54px; height: 54px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* --- Login / Dashboard --- */
  .login-wrap { padding: 40px 16px; }
  .login-card { padding: 28px 22px; border-radius: 20px; }
  .login-card h1 { font-size: 22px; }
  .dash-welcome { padding: 24px 20px; border-radius: 16px; }
  .dash-welcome h1 { font-size: 22px; }
  .dash-welcome p  { font-size: 14px; }
  .dash-grid { gap: 12px; }
  .dash-tile { padding: 20px 18px; border-radius: 14px; }
  .dash-tile h3 { font-size: 16px; }
  .dash-tile p  { font-size: 13px; }
}

/* Extra-small phones (≤ 380px) */
@media (max-width: 380px) {
  .hero-title { font-size: 28px; }
  .section-head h2 { font-size: 24px; }
  .combo-amount { font-size: 42px; }
  .combo-head h3 { font-size: 19px; }
  .stat strong { font-size: 22px; }
  .client-logo { height: 56px; min-width: 95px; padding: 6px 10px; }
  .client-logo img { max-height: 36px; max-width: 80px; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .logo-track { animation: none !important; }
}

/* =============================================================
   MOBILE DRAWER (app-style)
   ============================================================= */

/* Desktop defaults: hide mobile controls + drawer */
/* ===== FIX START ===== */

/* Default (Desktop) */
.nav-mobile-controls {
  display: none;
}



/* ===== FIX END ===== */
.mobile-drawer,
.mobile-drawer-backdrop { display: none; }

@media (max-width: 1000px) {
  .mobile-drawer-backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0);
    z-index: 48;
    pointer-events: none;
    transition: background .28s ease;
  }
  .mobile-drawer-backdrop.is-open {
    background: rgba(15, 23, 42, .45);
    pointer-events: auto;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 380px);
    background: #FFFFFF;
    z-index: 49;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    box-shadow: -20px 0 50px -10px rgba(15, 23, 42, .25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-drawer.is-open { transform: translateX(0); }

  .mobile-drawer-inner {
    padding: 22px 18px 28px;
    display: flex; flex-direction: column;
  }

  .mobile-drawer-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: #94A3B8;
    margin: 14px 6px 6px;
  }
  .mobile-drawer-label:first-child { margin-top: 4px; }

  .mobile-drawer a {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 14px; margin: 2px 0;
    border-radius: 14px;
    color: #0F172A; font-weight: 600; font-size: 15.5px;
    background: #F8FAFC;
    border: 1px solid transparent;
    transition: background .18s, border-color .18s, transform .15s;
    position: relative;
  }
  .mobile-drawer a:active { transform: scale(.98); background: #EFF6FF; border-color: #0EA5E9; }
  .mobile-drawer a > i:first-child {
    width: 18px; height: 18px; color: #0EA5E9; flex: none;
  }
  .mobile-drawer a > span {
    flex: 1;
  }
  .mobile-drawer a .chev {
    width: 16px; height: 16px; color: #CBD5E1;
  }

  .mobile-drawer-cta {
    margin-top: 22px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .mobile-drawer-cta .btn { width: 100%; padding: 14px; font-size: 14.5px; }

  .mobile-drawer-contact {
    margin: 22px 6px 0;
    padding-top: 18px; border-top: 1px solid #E2E8F0;
    color: #64748B; font-size: 12.5px;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: wrap;
  }
  .mobile-drawer-contact i { width: 14px; height: 14px; color: #0EA5E9; }

  /* Lock body scroll while drawer is open */
  body.drawer-open { overflow: hidden; }
}

/* =============================================================
   PRODUCTS PAGE
   ============================================================= */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #F8FAFC;
  padding: 64px 0 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(14,165,233,.25), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(236,72,153,.22), transparent 40%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff; font-size: clamp(32px, 4.5vw, 48px); margin: 14px 0 12px;
}
.page-hero p  { color: rgba(248,250,252,.75); font-size: 17px; max-width: 560px; }
.page-hero .eyebrow {
  background: rgba(14,165,233,.15); color: #38BDF8; border: 1px solid rgba(14,165,233,.3);
}
.breadcrumbs {
  color: rgba(248,250,252,.6); font-size: 13px; margin-bottom: 14px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumbs a { color: #38BDF8; }
.breadcrumbs i { width: 14px; height: 14px; }

.products-layout {
  padding: 56px 0 96px;
  background: #F8FAFC;
}

.category-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-pill {
  padding: 10px 18px; border-radius: 999px;
  background: #fff; border: 1px solid #E2E8F0;
  font-weight: 600; font-size: 14px; color: #334155;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.cat-pill:hover { border-color: #0EA5E9; color: #0EA5E9; }
.cat-pill.is-active {
  background: linear-gradient(135deg, #0EA5E9, #EC4899);
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(14,165,233,.5);
}

.products-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

.product-card {
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -24px rgba(15,23,42,.18);
  border-color: #0EA5E9;
}
.product-thumb {
  aspect-ratio: 1/1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: #F1F5F9;
  overflow: hidden;
}
.product-thumb-inner {
  width: 80%; height: 80%;
  display: flex; align-items: center; justify-content: center;
}
.product-thumb .p-badge {
  position: absolute; top: 10px; left: 10px;
  background: #EC4899; color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.product-body {
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.product-cat {
  font-size: 11px; color: #64748B; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
}
.product-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: #0F172A;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 42px;
}
.product-desc {
  font-size: 13px; color: #64748B;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin: 0;
}
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 10px;
}
.product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 18px; color: #0F172A;
}
.product-price small { font-size: 11px; color: #94A3B8; font-weight: 500; }
.product-price s     { color: #94A3B8; font-weight: 500; margin-right: 6px; font-size: 13px; }
.product-whatsapp {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.product-whatsapp:hover { transform: scale(1.08); box-shadow: 0 8px 16px -6px rgba(37,211,102,.6); }
.product-whatsapp i { width: 18px; height: 18px; }

/* Thumbnail visual variants (CSS-only, no images) */
.thumb-id {
  background: linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 100%);
}
.thumb-id .mini-card {
  width: 90%; aspect-ratio: 1.58/1; background: #fff;
  border-radius: 8px; padding: 12px;
  display: flex; gap: 10px; align-items: center;
  box-shadow: 0 12px 24px -10px rgba(15,23,42,.25);
  border-top: 5px solid #0EA5E9;
}
.thumb-id .mini-photo { width: 30px; height: 30px; border-radius: 50%; background: #CBD5E1; flex: none; }
.thumb-id .mini-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.thumb-id .mini-lines span { height: 5px; background: #E2E8F0; border-radius: 3px; }
.thumb-id .mini-lines span:last-child { width: 55%; background: #EC4899; }

.thumb-progress {
  background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 100%);
  padding: 18px;
}
.thumb-progress .doc {
  width: 100%; height: 100%; background: #fff;
  border-radius: 6px; padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 12px 24px -10px rgba(15,23,42,.2);
  border-left: 4px solid #F59E0B;
}
.thumb-progress .doc span { height: 6px; background: #E2E8F0; border-radius: 3px; }
.thumb-progress .doc span:first-child { width: 60%; background: #0F172A; height: 9px; }

.thumb-cert {
  background: linear-gradient(135deg, #FDF4FF 0%, #FCE7F3 100%);
  padding: 18px; flex-direction: column; gap: 6px;
}
.thumb-cert .ribbon {
  width: 34px; height: 34px; background: #EC4899;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.thumb-cert .cert-title { width: 65%; height: 8px; background: #0F172A; border-radius: 3px; margin-top: 6px; }
.thumb-cert .cert-line  { width: 48%; height: 5px; background: #CBD5E1; border-radius: 3px; }

.thumb-badge {
  background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
}
.thumb-badge .circle {
  width: 75%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F59E0B, #C2410C);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; font-size: 24px; letter-spacing: .04em;
  box-shadow: 0 0 0 6px rgba(255,255,255,.15), 0 20px 36px -10px rgba(245,158,11,.5);
}

.thumb-cal {
  background: #fff; padding: 14px;
  flex-direction: column; gap: 6px; align-items: stretch;
}
.thumb-cal .head { height: 6px; background: #EC4899; border-radius: 2px; }
.thumb-cal .grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; flex: 1; }
.thumb-cal .grid span { background: #F1F5F9; border-radius: 2px; }
.thumb-cal .grid span:nth-child(5),
.thumb-cal .grid span:nth-child(10) { background: #FED7AA; }

.thumb-lanyard {
  background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
  flex-direction: column; gap: 0;
}
.thumb-lanyard .strap {
  width: 8px; height: 40%;
  background: linear-gradient(180deg, #16A34A, #0EA5E9);
  border-radius: 4px;
}
.thumb-lanyard .tag {
  width: 70%; aspect-ratio: 1.58/1;
  background: #fff; border-top: 4px solid #0EA5E9;
  border-radius: 4px;
  margin-top: -2px;
  box-shadow: 0 10px 20px -8px rgba(15,23,42,.25);
}

.thumb-pocket-badge {
  background: linear-gradient(135deg, #EEF2FF 0%, #DDD6FE 100%);
}
.thumb-pocket-badge .ellipse {
  width: 75%; aspect-ratio: 1.6/1;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.2), 0 18px 30px -10px rgba(139,92,246,.5);
}

.thumb-sticker {
  background: linear-gradient(135deg, #FEF9C3 0%, #FDE68A 100%);
  padding: 14px;
}
.thumb-sticker .sheet {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(0deg, #fff, #fff 24%, #FEF3C7 24%, #FEF3C7 25%);
  border-radius: 6px; border: 1px dashed #F59E0B;
  box-shadow: 0 10px 24px -10px rgba(15,23,42,.2);
}

.thumb-pvc {
  background: linear-gradient(135deg, #CFFAFE 0%, #A5F3FC 100%);
}
.thumb-pvc .card {
  width: 85%; aspect-ratio: 1.58/1;
  background: linear-gradient(135deg, #0EA5E9 0%, #1E40AF 100%);
  border-radius: 10px;
  box-shadow: 0 14px 28px -10px rgba(14,165,233,.55);
  position: relative;
}
.thumb-pvc .card::after {
  content: ""; position: absolute; bottom: 18%; left: 10%; right: 10%;
  height: 4px; background: rgba(255,255,255,.3); border-radius: 2px;
}

/* Page footer/CTA for products */
.page-cta {
  background: linear-gradient(135deg, #0EA5E9 0%, #EC4899 100%);
  color: #fff; padding: 44px 28px;
  border-radius: 24px; text-align: center;
  margin-top: 48px;
}
.page-cta h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.page-cta p  { margin: 0 0 20px; opacity: .92; }
.page-cta .btn { background: #fff; color: #0F172A; }

/* =============================================================
   LEGAL / POLICY PAGES
   ============================================================= */
.legal-wrap {
  background: #F8FAFC;
  padding: 56px 0 96px;
}
.legal-card {
  max-width: 820px; margin: 0 auto;
  background: #fff; border: 1px solid #E2E8F0;
  border-radius: 24px; padding: 48px;
  box-shadow: 0 24px 60px -30px rgba(15,23,42,.15);
}
.legal-card .updated {
  display: inline-block;
  font-size: 12px; color: #64748B;
  background: #F1F5F9; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.legal-card h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 40px); margin: 0 0 8px;
}
.legal-card h2 {
  font-size: 20px; margin: 32px 0 10px; color: #0F172A;
  padding-top: 20px; border-top: 1px solid #F1F5F9;
}
.legal-card h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-card h3 {
  font-size: 16px; margin: 18px 0 8px; color: #334155;
}
.legal-card p, .legal-card li {
  color: #475569; font-size: 15px; line-height: 1.65;
}
.legal-card ul, .legal-card ol { padding-left: 22px; margin: 10px 0; }
.legal-card li { margin-bottom: 6px; }
.legal-card a { color: #0EA5E9; font-weight: 600; text-decoration: underline; }
.legal-card strong { color: #0F172A; }
.legal-card .highlight-box {
  background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(236,72,153,.06));
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 14px; padding: 20px; margin: 20px 0;
}
.legal-card .highlight-box p { margin: 0; color: #0F172A; }

/* Mobile tweaks for new pages */
@media (max-width: 720px) {
  .legal-card { padding: 28px 22px; border-radius: 18px; }
  .legal-card h2 { font-size: 17px; margin-top: 26px; }
  .legal-card p, .legal-card li { font-size: 14px; }
  .page-hero { padding: 40px 0 36px; }
  .products-layout { padding: 32px 0 60px; }
  .category-pills { gap: 8px; margin-bottom: 22px; }
  .cat-pill { padding: 8px 14px; font-size: 12.5px; }
  .products-grid { gap: 12px; }
  .product-body { padding: 12px 12px 14px; }
  .product-name { font-size: 14px; min-height: 36px; }
  .product-desc { font-size: 12px; }
  .product-price { font-size: 16px; }
  .product-whatsapp { width: 32px; height: 32px; }
  .product-whatsapp i { width: 15px; height: 15px; }
  .page-cta { padding: 28px 20px; border-radius: 18px; margin-top: 32px; }
  .page-cta h3 { font-size: 19px; }
}
/* ===== FINAL LOGIN FIX ===== */

/* Desktop */
@media (min-width: 1000px) {
  .nav-actions {
    display: inline-flex !important;
  }
  .nav-mobile-controls {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 999px) {
  .nav-actions {
    display: none !important;
  }
  .nav-mobile-controls {
    display: flex !important;
  }
}
/* ===== GALLERY SLIDER ===== */

.gallery-slider {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: auto; /* disable snap for smooth */
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.gallery-slide {
  flex: 0 0 auto;
  width: 280px;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #f1f5f9;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

/* Desktop */
@media (min-width: 768px) {
  .gallery-slide {
    width: 360px;
    height: 220px;
  }
}

/* ===== LIGHTBOX ===== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}
/* Navigation buttons */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #00e0ff;
}
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.lightbox-video {
  max-width: 90%;
  max-height: 90%;
  display: none;
  border-radius: 10px;
}