/* =========================================================
   GAURI GLOBALS — Main Stylesheet
   ========================================================= */

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

/* ---- CSS Variables ---- */
:root {
  /* Brand */
  --pink:         #e91e8c;
  --pink-hover:   #c0176e;
  --pink-light:   #fce7f3;
  --purple:       #7c3aed;
  --purple-light: #f3e8ff;
  --gradient:     linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);

  /* Vertical Accent Colors */
  --homes:         #f59e0b;
  --homes-light:   #fef3c7;
  --stores:        #10b981;
  --stores-light:  #d1fae5;
  --assist:        #7c3aed;
  --assist-light:  #f3e8ff;
  --gorra:         #ec4899;
  --gorra-light:   #fce7f3;
  --shecare:       #8b5cf6;
  --shecare-light: #ede9fe;

  /* Neutrals */
  --dark:       #1a1035;
  --text:       #374151;
  --text-light: #6b7280;
  --white:      #ffffff;
  --bg:         #f9fafb;
  --border:     #e5e7eb;

  /* Utility */
  --radius:     16px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(124,58,237,.10);
  --shadow-lg:  0 10px 48px rgba(124,58,237,.18);
  --transition: .25s ease;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
ul   { list-style: none; }
a    { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(233,30,140,.3); }
  70%  { box-shadow: 0 0 0 16px rgba(233,30,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(233,30,140,0); }
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,16,53,.05);
  will-change: box-shadow;
  transition: box-shadow .3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,16,53,.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
  gap: 1rem;
  min-height: 64px;
}

/* Brand mark */
.navbar__brand {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-g      { font-size: 1.5rem; font-weight: 800; color: var(--pink); letter-spacing: -1px; }
.brand-globals { font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: .5px; }

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: .45rem .9rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  background: var(--pink-light);
  color: var(--pink);
}

.btn-nav {
  background: var(--gradient) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: .5rem 1.3rem !important;
  box-shadow: 0 3px 12px rgba(233,30,140,.28) !important;
}

.btn-nav:hover {
  opacity: .9 !important;
  transform: translateY(-1px) !important;
  background: var(--pink-light) !important; /* override for non-nav usage */
  color: var(--pink) !important;
}

/* Fix btn-nav hover – only for actual nav button */
.navbar__links .btn-nav:hover {
  background: var(--gradient) !important;
  color: var(--white) !important;
  opacity: .88 !important;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
  position: relative;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}



/* Sub-page card grid — full width 2x2 */
.assist-service-cards--full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin-inline: auto;
}

/* Sub-page hero — matches assist-hero theme */
.assist-hero--sub {
  min-height: auto;
  padding: 4rem 0 3.5rem;
}

.assist-hero--sub .assist-hero__inner {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.assist-hero--sub .assist-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.assist-hero--sub .assist-hero__ctas {
  margin-bottom: 0;
}

/* ---- Assist sub-page extra sections ---- */
.assist-detail-section {
  padding: 4rem 0;
  background: var(--white);
}

.assist-detail-section--alt {
  background: var(--bg);
}

.assist-detail-section--dark {
  background: linear-gradient(135deg, #1a1035 0%, #2d1a6e 60%, #4c1d95 100%);
  position: relative;
  overflow: hidden;
}

.assist-detail-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,30,140,.12) 0%, transparent 55%);
  pointer-events: none;
}

.assist-detail-section--dark .section-title,
.assist-detail-section--dark h3 { color: var(--white); }
.assist-detail-section--dark .section-sub,
.assist-detail-section--dark p  { color: rgba(255,255,255,.72); }

/* Why-choose grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-card__icon { font-size: 2rem; margin-bottom: .85rem; display: block; }
.why-card h4 { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.why-card p  { font-size: .85rem; color: var(--text); line-height: 1.65; }

/* Detailed list */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin-inline: auto;
}

.detail-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.detail-list__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.detail-list__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-list__text h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.detail-list__text p  { font-size: .85rem; color: var(--text); line-height: 1.65; }

/* FAQ inline (for sub-pages) */
.assist-faq-list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

/* Dark variant cards */
.why-card--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.why-card--dark h4 { color: var(--white); }
.why-card--dark p  { color: rgba(255,255,255,.65); }

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

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

/* =========================================================
   SHARED SECTION PARTS
   ========================================================= */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(233,30,140,.08);
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.section-pill--purple { background: rgba(124,58,237,.08); color: var(--purple); }
.section-pill--white  { background: rgba(255,255,255,.15); color: var(--white); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: .75rem;
}

.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
}

.section-sub--white { color: rgba(255,255,255,.75); max-width: 560px; }

.section-header { margin-bottom: 2rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-inline: auto; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 16px rgba(233,30,140,.28);
}

.btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  white-space: nowrap;
  border: 2px solid var(--border);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--pink-light);
  color: var(--pink);
  border-color: var(--pink);
  transform: translateY(-2px);
}

.btn-outline--white {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}

.btn-outline--white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

/* =========================================================
   HERO – Home Page
   ========================================================= */
.hero {
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 35%, #ede9fe 65%, #e0f2fe 100%);
  padding: 3.5rem 0;
  overflow: hidden;
  position: relative;
  min-height: calc(100vh - 64px);
  min-height: calc(100svh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(124,58,237,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(233,30,140,.1);
  color: var(--pink);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  animation: pulse-ring 2.5s infinite;
}

.hero__title {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -.5px;
}

.hero__title .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero visual: brand badge grid */
.hero__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.hbadge {
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.hbadge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hbadge__icon { font-size: 1.75rem; margin-bottom: .4rem; }
.hbadge__name { font-size: .78rem; font-weight: 700; color: var(--dark); }
.hbadge__sub  { font-size: .68rem; color: var(--text-light); margin-top: .15rem; }

.hbadge--featured {
  grid-column: span 3;
  background: var(--gradient);
  border-color: transparent;
  padding: 1.4rem;
}

.hbadge--featured .hbadge__icon { font-size: 2rem; }
.hbadge--featured .hbadge__name { font-size: .9rem; color: var(--white); }
.hbadge--featured .hbadge__sub  { color: rgba(255,255,255,.8); }

/* Per-vertical accent on badges */
.hbadge.vert-homes  { border-color: var(--homes-light); }
.hbadge.vert-stores { border-color: var(--stores-light); }
.hbadge.vert-assist { border-color: var(--assist-light); }
.hbadge.vert-gorra  { border-color: var(--gorra-light); }
.hbadge.vert-shecare{ border-color: var(--shecare-light); }

/* =========================================================
   VERTICALS GRID – Home Page
   ========================================================= */
.verticals {
  padding: 4rem 0;
  background: var(--white);
}

/* 3 cols, 5 items → row 2 has 2 centered */
.verticals__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.vcard {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.vcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--vc-color, var(--gradient));
  border-radius: var(--radius) var(--radius) 0 0;
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Center last two cards in row 2 */
.vcard:nth-child(4) { grid-column: 2 / span 2; }
.vcard:nth-child(5) { grid-column: 4 / span 2; }

.vcard__icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  background: var(--vc-bg, var(--pink-light));
}

.vcard__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--vc-color, var(--pink));
  margin-bottom: .35rem;
}

.vcard h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .55rem;
}

.vcard p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.vcard__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--vc-color, var(--pink));
  transition: gap var(--transition);
}

.vcard__link:hover { gap: .7rem; }

/* Vertical theme vars */
.vc-homes   { --vc-color: var(--homes);   --vc-bg: var(--homes-light);   }
.vc-stores  { --vc-color: var(--stores);  --vc-bg: var(--stores-light);  }
.vc-assist  { --vc-color: var(--assist);  --vc-bg: var(--assist-light);  }
.vc-gorra   { --vc-color: var(--gorra);   --vc-bg: var(--gorra-light);   }
.vc-shecare { --vc-color: var(--shecare); --vc-bg: var(--shecare-light); }

/* ---- Channel pills on vertical cards ---- */
.vcard__channels {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.1rem;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  padding: .28rem .75rem;
  border-radius: 50px;
  letter-spacing: .3px;
}

.channel-pill--offline {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.channel-pill--online {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* =========================================================
   TRUST PILLARS – Home Page
   ========================================================= */
.trust {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 50%, #ede9fe 100%);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.tcard:hover { transform: translateY(-5px); }

.tcard__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.35rem;
  box-shadow: 0 4px 16px rgba(233,30,140,.22);
}

.tcard h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .55rem;
}

.tcard p { font-size: .875rem; color: var(--text); line-height: 1.7; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band {
  background: var(--gradient);
  padding: 2.5rem 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat__num sup { font-size: 55%; opacity: .85; }

.stat__lbl {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  padding: 3.5rem 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,30,140,.18) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner { position: relative; }

.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -.3px;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0d0821;
  padding: 3.5rem 0 2rem;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand { margin-bottom: 1rem; }
.footer__brand .brand-g      { color: var(--pink); }
.footer__brand .brand-globals { color: var(--white); }

.footer__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 230px;
  margin-top: .75rem;
}

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 1.25rem;
}

.footer__col li { margin-bottom: .65rem; }

.footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--pink); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy { font-size: .78rem; color: rgba(255,255,255,.28); }

.footer__social { display: flex; gap: .65rem; }

.soc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
}

.soc-icon:hover { background: var(--pink); transform: translateY(-2px); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 45%, #ede9fe 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.page-hero__inner { max-width: 700px; }

.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -.4px;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 580px;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.service-sections { background: var(--white); }

.ss {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.ss:last-child { border-bottom: none; }

.ss:nth-child(even) { background: var(--bg); }

.ss__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.ss__inner.flip { grid-template-columns: 1fr 280px; }
.ss__inner.flip .ss__meta    { order: 2; }
.ss__inner.flip .ss__content { order: 1; }

/* Meta column */
.ss__badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: var(--ss-bg, var(--pink-light));
}

.ss__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--ss-color, var(--pink));
  margin-bottom: .4rem;
}

.ss__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: .75rem;
}

.ss__desc {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.ss__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  padding: .65rem 1.5rem;
  border-radius: 50px;
  background: var(--ss-bg, var(--pink-light));
  color: var(--ss-color, var(--pink));
  transition: all var(--transition);
}

.ss__cta:hover {
  background: var(--ss-color, var(--pink));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* Offerings */
.offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.oitem {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.oitem:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--ss-color, var(--pink));
}

.oitem__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .38rem;
  background: var(--ss-color, var(--pink));
}

.oitem p { font-size: .875rem; font-weight: 500; color: var(--dark); line-height: 1.5; }

/* Service section color themes */
/* ---- Hybrid channel split (Gauri Stores) ---- */
.channel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.channel-card {
  border-radius: 12px;
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.channel-card--offline {
  background: #fffbeb;
  border-color: #fcd34d;
}

.channel-card--online {
  background: #f0fdf4;
  border-color: #6ee7b7;
}

.channel-card__header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
}

.channel-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.channel-card--offline .channel-card__icon { background: #fef3c7; }
.channel-card--online  .channel-card__icon { background: #d1fae5; }

.channel-card__type {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.channel-card--offline .channel-card__type { color: #b45309; }
.channel-card--online  .channel-card__type { color: #047857; }

.channel-card__title {
  font-size: .93rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}

.channel-card__desc {
  font-size: .8rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: .85rem;
}

/* Marketplace badges */
.marketplace-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 6px;
  letter-spacing: .2px;
}

.mp-badge--amazon  { background: #ff9900; color: #111; }
.mp-badge--meesho  { background: #f43397; color: #fff; }
.mp-badge--india   { background: #e5e7eb; color: var(--dark); }

/* Responsive: channel split stacks on narrow */
@media (max-width: 500px) {
  .channel-split { grid-template-columns: 1fr; }
}

.ss-homes,  .pill-homes  { --ss-color: var(--homes);   --ss-bg: var(--homes-light);   }
.ss-stores, .pill-stores { --ss-color: var(--stores);  --ss-bg: var(--stores-light);  }
.ss-assist, .pill-assist { --ss-color: var(--assist);  --ss-bg: var(--assist-light);  }
.ss-gorra,  .pill-gorra  { --ss-color: var(--gorra);   --ss-bg: var(--gorra-light);   }
.ss-shecare,.pill-shecare{ --ss-color: var(--shecare); --ss-bg: var(--shecare-light); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-story {
  padding: 4rem 0;
  background: var(--white);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story p {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.85;
}

.about-story p + p { margin-top: 1rem; }

.vm-stack { display: flex; flex-direction: column; gap: 1.25rem; }

.vm-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--pink);
}

.vm-card--purple { border-color: var(--purple); }

.vm-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.vm-card p { font-size: .875rem; color: var(--text); line-height: 1.7; }

/* Mission bullet list inside vm-card */
.vm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .25rem;
}

.vm-list li {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}

.vm-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* About page — What We Do vertical cards */
.about-verticals {
  padding: 4rem 0;
  background: var(--white);
}

.about-vert-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-vert-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-vert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.about-vert-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.about-vert-card__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: .35rem;
}

.about-vert-card__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.about-vert-card__content p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: .85rem;
}

.about-vert-card__link {
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}

.about-vert-card__link:hover { gap: .6rem; }

/* Values */
.values-sec {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 100%);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.val-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.val-card:hover { transform: translateY(-5px); }

.val-card__icon { font-size: 2.1rem; margin-bottom: 1rem; display: block; }

.val-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .45rem;
}

.val-card p { font-size: .85rem; color: var(--text); line-height: 1.65; }

/* Roadmap */
.roadmap-sec {
  padding: 4rem 0;
  background: var(--white);
}

.roadmap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.roadmap__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--gradient);
  opacity: .2;
}

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

.rm-item__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 18px rgba(233,30,140,.25);
}

.rm-item__phase {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--pink);
  margin-bottom: .35rem;
}

.rm-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.rm-item p { font-size: .875rem; color: var(--text); line-height: 1.65; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page {
  padding: 4rem 0;
  background: var(--white);
}

/* Centered single-column layout */
.contact-centered {
  max-width: 520px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}

.ccard--large {
  padding: 1.75rem 2rem;
}

.ccard--large .ccard__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  font-size: 1.7rem;
}

.ccard--large .ccard__val {
  font-size: 1.1rem;
}

.contact-verticals__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.contact-verticals__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}

/* Legacy two-col layout kept for reference but unused */
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}

.contact-left > p {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.ccard {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ccard[href]:hover, a.ccard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}

.ccard__icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ccard--whatsapp .ccard__icon { background: #d1fae5; }
.ccard--email    .ccard__icon { background: var(--purple-light); }
.ccard--address  .ccard__icon { background: var(--homes-light); }
.ccard--hours    .ccard__icon { background: var(--stores-light); }

.ccard__lbl {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text-light);
  margin-bottom: .2rem;
}

.ccard__val {
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
}

.ccard__hint { font-size: .8rem; color: var(--text-light); margin-top: .1rem; }

/* Contact right (map + hours) */
.contact-right { display: flex; flex-direction: column; gap: 1.5rem; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.map-wrap iframe { width: 100%; display: block; }

.hours-card {
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
}

.hours-card h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  opacity: .75;
  margin-bottom: 1.1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; }

/* =========================================================
   CONTACT — HELP GRID
   ========================================================= */
.contact-help {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 50%, #ede9fe 100%);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.help-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.help-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.help-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .55rem;
}

.help-card p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.7;
}

/* =========================================================
   CONTACT — PROCESS STEPS
   ========================================================= */
.contact-process {
  padding: 4rem 0;
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.process-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(233,30,140,.25);
}

.process-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .55rem;
}

.process-step__body p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.7;
}

.process-step__body a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.process-step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  opacity: .25;
  flex-shrink: 0;
  margin-top: 29px; /* align with centre of the number circle */
}

/* =========================================================
   CONTACT — FAQ
   ========================================================= */
.contact-faq {
  padding: 4rem 0;
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--pink-light);
  box-shadow: 0 4px 20px rgba(233,30,140,.07);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

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

.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--pink);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item[open] .faq-item__q {
  background: #fdf4ff;
}

.faq-item[open] .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.faq-item__a p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
  padding-top: 1rem;
}

.faq-item__a strong { color: var(--dark); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---- Global: prevent horizontal overflow (clip keeps position:sticky working) ---- */
html { overflow-x: clip; }
body { overflow-x: clip; }

/* ---- Word-break for long strings (emails, URLs) ---- */
.ccard__val, .footer__col a { word-break: break-word; }

/* ---- Section padding scale ---- */
@media (max-width: 768px) {
  .verticals, .trust, .contact-help,
  .contact-process, .contact-faq,
  .about-story, .about-verticals, .values-sec,
  .roadmap-sec, .service-sections .ss,
  .contact-page { padding-top: 2.5rem; padding-bottom: 2.5rem; }

  .stats-band, .cta-band { padding: 2rem 0; }
  .footer { padding-top: 2.5rem; }
}

/* ---- Large tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .values__grid       { grid-template-columns: 1fr 1fr; }
  .stats-band__grid   { grid-template-columns: 1fr 1fr; }
}

/* ---- Tablet (≤ 900px) ---- */
@media (max-width: 900px) {
  /* Hero */
  .hero__inner        { grid-template-columns: 1fr; }
  .hero__visual       { order: -1; grid-template-columns: repeat(3, 1fr); }
  .hbadge--featured   { grid-column: span 3; }
  .hero__desc         { max-width: 100%; }

  /* Verticals grid: collapse 6-col → 2-col */
  .verticals__grid    { grid-template-columns: 1fr 1fr; }
  .vcard, .vcard:nth-child(4), .vcard:nth-child(5) { grid-column: span 1; }

  /* Trust: 3 cards → full-width column */
  .trust__grid        { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  /* Services inner */
  .ss__inner,
  .ss__inner.flip     { grid-template-columns: 1fr; gap: 2.5rem; }
  .ss__inner.flip .ss__meta    { order: 0; }
  .ss__inner.flip .ss__content { order: 0; }

  /* About */
  .about-story__inner  { grid-template-columns: 1fr; gap: 3rem; }
  .about-vert-card     { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .roadmap__grid       { grid-template-columns: 1fr 1fr; }
  .roadmap__grid::before { display: none; }

  /* Contact */
  .contact-page__inner { grid-template-columns: 1fr; gap: 3rem; }
  .help-grid           { grid-template-columns: 1fr 1fr; }

  /* Process steps: vertical */
  .process-steps      { flex-direction: column; align-items: center; gap: 1rem; }
  .process-step       { padding: 0; max-width: 480px; width: 100%; }
  .process-step__connector { width: 2px; height: 36px; margin-top: 0; }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  /* Nav — hamburger visible */
  .navbar__toggle { display: flex; }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: .75rem 1rem 1.25rem;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    gap: .25rem;
    z-index: 201;
  }

  .nav-open .navbar__links { display: flex; }
  .nav-open .navbar__inner { position: relative; z-index: 201; }

  /* X animation when menu is open */
  .nav-open .navbar__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-open .navbar__toggle span:nth-child(2) { opacity: 0; }
  .nav-open .navbar__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Touch-friendly nav links */
  .navbar__links a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-size: .95rem;
  }

  .assist-service-cards--full {
    grid-template-columns: 1fr;
  }

  /* Touch-friendly buttons */
  .btn-primary, .btn-outline { min-height: 44px; }

  /* Hero */
  .hero                { padding: 2.5rem 0; min-height: calc(100svh - 64px); }
  .hero__visual        { grid-template-columns: 1fr 1fr; }
  .hbadge--featured    { grid-column: span 2; }

  /* Verticals */
  .verticals__grid     { grid-template-columns: 1fr 1fr; }
  .vcard               { grid-column: span 1; }

  /* Trust */
  .trust__grid         { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  /* Services offerings */
  .offerings           { grid-template-columns: 1fr; }
  .channel-split       { grid-template-columns: 1fr; }

  /* Contact help */
  .help-grid           { grid-template-columns: 1fr 1fr; }

  /* About */
  .values__grid        { grid-template-columns: 1fr 1fr; }
  .about-vert-card     { padding: 1.25rem; }
  .roadmap__grid       { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* Footer */
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand-col   { grid-column: span 2; }
  .footer__tagline     { max-width: 100%; }

  /* Stats */
  .stats-band__grid    { grid-template-columns: 1fr 1fr; }

  /* FAQ padding */
  .faq-item__q         { padding: 1rem 1.25rem; font-size: .9rem; }
  .faq-item__a         { padding: 0 1.25rem 1rem; }

  /* Compact card padding */
  .vcard               { padding: 1.25rem; }
  .tcard               { padding: 1.5rem 1.25rem; }
  .val-card            { padding: 1.25rem 1rem; }

  /* Section sub text */
  .section-sub         { font-size: .9rem; }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  /* Single column verticals */
  .verticals__grid     { grid-template-columns: 1fr; }
  .vcard, .vcard:nth-child(4), .vcard:nth-child(5) { grid-column: span 1; }

  /* Hero badges — 3 col stays but compact */
  .hbadge              { padding: .7rem .5rem; }
  .hbadge__icon        { font-size: 1.3rem; margin-bottom: .25rem; }
  .hbadge__name        { font-size: .68rem; }
  .hbadge__sub         { font-size: .6rem; }
  .hbadge--featured    { padding: 1rem; }

  /* Help grid: single col on very small */
  .help-grid           { grid-template-columns: 1fr; }

  /* Values single col */
  .values__grid        { grid-template-columns: 1fr; }

  /* Footer single col */
  .footer__grid        { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__brand-col   { grid-column: span 1; }

  /* Stats: 2×2 stays */
  .stats-band__grid    { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* CTA buttons stack */
  .cta-btns            { flex-direction: column; align-items: center; }
  .hero__ctas          { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  /* Compact padding */
  .verticals, .trust, .contact-help,
  .contact-process, .contact-faq,
  .about-story, .about-verticals, .values-sec,
  .roadmap-sec, .service-sections .ss,
  .contact-page        { padding-top: 2rem; padding-bottom: 2rem; }
  .cta-band, .stats-band { padding: 1.75rem 0; }
  .page-hero           { padding: 2rem 0 1.75rem; }

  /* Roadmap single col already; help-grid single col */
  .process-steps       { gap: .75rem; }
}

/* =========================================================
   SHE ASSIST PAGE
   ========================================================= */

/* ---- Assist colour tokens ---- */
:root {
  --assist-hr:          #e91e8c;
  --assist-hr-light:    #fce7f3;
  --assist-comp:        #7c3aed;
  --assist-comp-light:  #f3e8ff;
  --assist-mkt:         #0ea5e9;
  --assist-mkt-light:   #e0f2fe;
  --assist-ops:         #10b981;
  --assist-ops-light:   #d1fae5;
}

/* ---- Assist Sub-Nav ---- */
.assist-nav {
  position: sticky;
  top: 0;
  z-index: 190;
  background: rgba(26,16,53,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(26,16,53,.3);
}

.assist-nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .65rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.assist-nav__inner::-webkit-scrollbar { display: none; }

.assist-nav__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  color: var(--white);
}

.assist-brand-icon { font-size: 1rem; }
.assist-brand-name { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.6); white-space: nowrap; }
.assist-brand-name strong { color: var(--white); }
.assist-brand-tagline {
  font-size: .7rem;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #f9a8d4 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  letter-spacing: .3px;
  padding-left: .5rem;
  border-left: 1px solid rgba(255,255,255,.15);
}

.assist-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.assist-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
}

.assist-nav__links {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.assist-nav__links::-webkit-scrollbar { display: none; }

.assist-nav__link {
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: .38rem .9rem;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}

.assist-nav__link:hover,
.assist-nav__link.active {
  background: rgba(233,30,140,.18);
  color: var(--white);
}

.assist-nav__cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: 0 3px 14px rgba(233,30,140,.35) !important;
  margin-left: .5rem;
}

.assist-nav__cta:hover {
  opacity: .9 !important;
  transform: translateY(-1px);
}

/* ---- Assist Hero ---- */
.assist-hero {
  background: linear-gradient(135deg, #1a1035 0%, #2d1a6e 45%, #1a1035 100%);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 128px); /* below both navbars */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.assist-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 60%, rgba(233,30,140,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 30%, rgba(124,58,237,.15) 0%, transparent 55%);
  pointer-events: none;
}

.assist-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.assist-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(233,30,140,.15);
  border: 1px solid rgba(233,30,140,.3);
  color: #f9a8d4;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.assist-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -.5px;
}

.assist-hero__title .gradient-text {
  background: linear-gradient(135deg, #f9a8d4 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.assist-hero__slogan {
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #f9a8d4 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: .5px;
}

.assist-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.assist-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.assist-hero__ctas .btn-outline {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}

.assist-hero__ctas .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.assist-hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.assist-stat__num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.assist-stat__num sup { font-size: 55%; opacity: .8; }

.assist-stat__lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-top: .2rem;
}

/* Hero visual cards */
.assist-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.assist-mission-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.assist-mission-card__icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}

.assist-mission-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.assist-mission-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

.assist-why-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.assist-why-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

.assist-why-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Assist Sections ---- */
.assist-section {
  padding: 4rem 0;
  background: var(--white);
}

.assist-section--light {
  background: var(--bg);
}

/* Two-column service layout */
.assist-service-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.assist-service-layout.flip {
  grid-template-columns: 1fr 340px;
}

.assist-service-layout.flip .assist-service-meta { order: 2; }
.assist-service-layout.flip .assist-service-cards { order: 1; }

.assist-service-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -3px;
}

.assist-service-meta .section-pill { margin-bottom: 1rem; }
.assist-service-meta .section-title { margin-bottom: .85rem; }
.assist-service-meta .section-sub { margin-bottom: 2rem; }

/* Service cards grid (2×2) */
.assist-service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.asc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.asc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.asc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.asc-card__icon {
  font-size: 1.5rem;
  margin-bottom: .85rem;
  display: block;
}

.asc-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.asc-card p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.65;
}

/* Card accent colours */
.asc-card--compliance::before { background: var(--assist-comp); }
.asc-card--compliance:hover { border-color: var(--assist-comp-light); }

.asc-card--hr::before { background: var(--assist-hr); }
.asc-card--hr:hover { border-color: var(--assist-hr-light); }

.asc-card--marketing::before { background: var(--assist-mkt); }
.asc-card--marketing:hover { border-color: var(--assist-mkt-light); }

.asc-card--ops::before { background: var(--assist-ops); }
.asc-card--ops:hover { border-color: var(--assist-ops-light); }

/* ---- Beneficiary Grid ---- */
.beneficiary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.ben-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}

.ben-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.ben-card__icon { font-size: 2.25rem; margin-bottom: .85rem; display: block; }

.ben-card h4 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.ben-card p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.65;
}

.assist-setup-cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.assist-setup-cta p {
  font-size: .97rem;
  color: var(--text-light);
}

/* ---- Packages ---- */
.assist-packages {
  background: linear-gradient(135deg, #1a1035 0%, #2d1a6e 60%, #1a1035 100%);
  position: relative;
  overflow: hidden;
}

.assist-packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233,30,140,.15) 0%, transparent 60%);
  pointer-events: none;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.pkg-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(8px);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233,30,140,.4);
  box-shadow: 0 12px 48px rgba(233,30,140,.18);
}

.pkg-card--featured {
  background: rgba(255,255,255,.1);
  border-color: rgba(233,30,140,.5);
  box-shadow: 0 8px 36px rgba(233,30,140,.2);
  transform: scale(1.03);
}

.pkg-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pkg-card__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.pkg-card__badge {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.5);
  margin-bottom: .4rem;
}

.pkg-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pkg-card__price span {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-left: .15rem;
}

.pkg-card__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-top: .5rem;
}

.pkg-card__note {
  display: inline-block;
  margin-top: .75rem;
  padding: .25rem .75rem;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 6px;
  color: #fb923c;
  font-size: .78rem;
  font-weight: 600;
}

.pkg-card__features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}

.pkg-card__features li {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  padding-left: .25rem;
}

.pkg-card__btn {
  display: block;
  text-align: center;
  justify-content: center;
}

.pkg-card .btn-outline {
  border-color: rgba(255,255,255,.25);
  color: var(--white);
}

.pkg-card .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  transform: translateY(-2px);
}

.packages-note {
  text-align: center;
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-top: 2rem;
}

.packages-note a {
  color: #f9a8d4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- How It Works ---- */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin-inline: auto;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}

.how-step__num {
  font-size: .72rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 1px;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.how-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 18px rgba(233,30,140,.25);
  flex-shrink: 0;
}

.how-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .55rem;
}

.how-step p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.7;
}

.how-step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  opacity: .2;
  flex-shrink: 0;
  margin-top: 32px;
}

/* ---- Assist Contact / Get Assistance ---- */
.assist-contact {
  background: linear-gradient(135deg, #1a1035 0%, #2d1a6e 60%, #1a1035 100%);
  position: relative;
  overflow: hidden;
}

.assist-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(124,58,237,.2) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(233,30,140,.12) 0%, transparent 50%);
  pointer-events: none;
}

.assist-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.assist-contact__info {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 2rem 0;
}

.assist-contact__info-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}

.assist-contact__info-item a {
  color: #f9a8d4;
  font-weight: 600;
}

.assist-contact__info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}

.assist-contact__checks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Contact Form */
.assist-contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.assist-contact__form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.assist-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.assist-form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.assist-form__group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .2px;
}

.assist-form__group input,
.assist-form__group select,
.assist-form__group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.assist-form__group input:focus,
.assist-form__group select:focus,
.assist-form__group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,.1);
  background: var(--white);
}

.assist-form__group textarea { resize: vertical; min-height: 80px; }

/* =========================================================
   CONTACT FORM (shared across pages)
   ========================================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.contact-form__group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .2px;
}
.contact-form__group label .required {
  color: var(--pink);
}
.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,.1);
  background: var(--white);
}
.contact-form__group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form status messages */
.form-status {
  text-align: center;
  font-size: .88rem;
  font-weight: 500;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: .5rem;
  transition: opacity var(--transition);
}
.form-status:empty {
  display: none;
}
.form-status--success {
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
}
.form-status--error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

/* Button loading state */
button[type="submit"]:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* ---- Contact page: form + sidebar layout ---- */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ---- Index page: quick contact ---- */
.quick-contact {
  padding: 5rem 0;
  background: var(--bg);
}
.quick-contact__wrap {
  max-width: 680px;
  margin: 2rem auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .quick-contact__wrap {
    padding: 1.5rem;
  }
}

/* =========================================================
   SHE ASSIST — RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .assist-service-layout,
  .assist-service-layout.flip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .assist-service-layout.flip .assist-service-meta { order: 0; }
  .assist-service-layout.flip .assist-service-cards { order: 0; }

  .beneficiary-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid    { grid-template-columns: 1fr 1fr; }
  .pkg-card--featured { transform: none; }
  .pkg-card--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .assist-hero__inner { grid-template-columns: 1fr; }
  .assist-hero__visual { display: none; }
  .assist-contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .how-steps { flex-direction: column; align-items: center; gap: 1rem; }
  .how-step  { max-width: 440px; width: 100%; }
  .how-step__connector { width: 2px; height: 32px; margin-top: 0; }
}

@media (max-width: 768px) {
  /* Assist sub-nav hamburger */
  .assist-nav__toggle { display: flex; }
  .assist-nav__brand  { flex-shrink: 0; }
  .assist-brand-tagline { display: none; }

  .assist-nav__inner {
    overflow: visible;
    position: static;
  }

  .assist-nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(26,16,53,.98);
    flex-direction: column;
    padding: .5rem 1rem 1rem;
    gap: .1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    z-index: 189;
    overflow: visible;
  }

  .assist-nav__links.open { display: flex; }

  .assist-nav__link {
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  .assist-nav__cta { margin-left: 0; }

  .assist-nav { position: relative; z-index: 180; }

  .assist-service-cards { grid-template-columns: 1fr; }
  .beneficiary-grid     { grid-template-columns: 1fr; }
  .packages-grid        { grid-template-columns: 1fr; }
  .assist-hero          { padding: 3.5rem 0 3.5rem; }
  .assist-section       { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .assist-hero__ctas     { flex-direction: column; }
  .assist-hero__stats    { gap: 1.5rem; }
  .assist-contact__form  { padding: 1.5rem; }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  /* Hero visual: 2-col */
  .hero__visual      { grid-template-columns: 1fr 1fr; }
  .hbadge--featured  { grid-column: span 2; }
  .hbadge            { padding: .85rem .65rem; }
  .hbadge__icon      { font-size: 1.4rem; }

  /* Verticals: single column */
  .verticals__grid   { grid-template-columns: 1fr; }

  /* Trust */
  .trust__grid       { grid-template-columns: 1fr; max-width: 100%; }

  /* Values */
  .values__grid      { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid      { grid-template-columns: 1fr; }
  .footer__brand-col { grid-column: span 1; }

  /* Buttons full-width */
  .cta-btns         { flex-direction: column; align-items: stretch; }
  .hero__ctas       { flex-direction: column; }
  .btn-primary, .btn-outline {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Section pills wrap on small screens */
  .section-pill      { font-size: .72rem; }

  /* Roadmap single col */
  .roadmap__grid     { max-width: 100%; }

  /* Process step full width */
  .process-step      { max-width: 100%; }
}


/* =========================================================
   GAURI STORES — Product Catalog Styles
   ========================================================= */

/* ---- Store Hero ---- */
.store-hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.store-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
}

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

.store-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.store-hero__badges {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--stores);
  color: var(--stores);
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
}

/* ---- Filter Bar ---- */
.store-filter {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 100;
}

.store-filter__inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.store-filter__inner::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: .82rem;
  font-weight: 500;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--stores);
  color: var(--stores);
}

.filter-btn.active {
  background: var(--stores);
  border-color: var(--stores);
  color: var(--white);
}

.store-count {
  margin-left: auto;
  font-size: .82rem;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ---- Product Grid ---- */
.store-grid {
  padding: 2.5rem 0 4rem;
  background: var(--bg);
}

.store-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* ---- Product Card ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--stores);
}

.product-card__img {
  position: relative;
  aspect-ratio: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.product-card__img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.06);
}

.product-card__discount {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: #ef4444;
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 4px;
}

.product-card__body {
  padding: 1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.product-card__cat {
  font-size: .72rem;
  font-weight: 600;
  color: var(--stores);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.product-card__name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.product-card__price .now {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.product-card__price .was {
  font-size: .82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card__cta {
  display: flex;
  gap: .4rem;
  margin-top: .5rem;
}

.product-card__cta a {
  flex: 1;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  padding: .4rem .4rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .2px;
  line-height: 1.3;
  transition: all var(--transition);
}

.btn-view {
  background: var(--white);
  color: var(--stores);
  border: 1.5px solid var(--stores);
}

.btn-view:hover {
  background: var(--stores);
  color: var(--white);
}

.btn-amazon {
  background: #ff9900;
  color: var(--white);
  border: 1.5px solid #ff9900;
}

.btn-amazon:hover {
  background: #e88b00;
  border-color: #e88b00;
}

/* ---- Product Detail Page ---- */
.product-detail {
  padding: 2.5rem 0 4rem;
  background: var(--white);
}

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-detail__main-img {
  aspect-ratio: 1;
  background: #f8f9fa;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.product-detail__main-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-detail__thumbs {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
}

.product-detail__thumbs img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  padding: 4px;
  cursor: pointer;
  background: #f8f9fa;
  transition: border-color var(--transition);
}

.product-detail__thumbs img:hover,
.product-detail__thumbs img.active {
  border-color: var(--stores);
}

.product-detail__info h1 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: .5rem;
}

.product-detail__cat {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--stores);
  background: var(--stores-light);
  padding: .3rem .8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.product-detail__pricing {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.product-detail__pricing .now {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.product-detail__pricing .was {
  font-size: 1.05rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-detail__pricing .off {
  font-size: .85rem;
  font-weight: 700;
  color: #ef4444;
  background: #fef2f2;
  padding: .25rem .6rem;
  border-radius: 4px;
}

.product-detail__desc {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-detail__features {
  margin-bottom: 2rem;
}

.product-detail__features h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.product-detail__features ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.product-detail__features li {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.product-detail__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--stores);
  font-weight: 700;
}

.product-detail__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-buy-amazon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #ff9900;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-buy-amazon:hover {
  background: #e68a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,153,0,.35);
}

.btn-back-store {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--stores);
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--stores);
  transition: all var(--transition);
  text-decoration: none;
}

.btn-back-store:hover {
  background: var(--stores-light);
}

/* ---- Related Products ---- */
.related-products {
  padding: 3rem 0;
  background: var(--bg);
}

.related-products h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ---- Breadcrumb ---- */
.store-breadcrumb {
  padding: 1rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.store-breadcrumb a,
.store-breadcrumb span {
  font-size: .82rem;
  color: var(--text-light);
}

.store-breadcrumb a:hover { color: var(--stores); }
.store-breadcrumb .sep { margin: 0 .4rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .product-detail__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .store-grid__items {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  .product-card__body { padding: .8rem; }
  .product-card__name { font-size: .82rem; }
  .product-card__cta { flex-direction: column; }
  .store-hero { padding: 3.5rem 0 2.5rem; }
  .product-detail__actions { flex-direction: column; }
  .btn-buy-amazon, .btn-back-store { justify-content: center; }
}

@media (max-width: 480px) {
  .store-grid__items {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .product-card__body { padding: .6rem; }
  .product-card__cat { font-size: .65rem; }
  .product-card__name { font-size: .78rem; -webkit-line-clamp: 2; }
  .product-card__price .now { font-size: .95rem; }
  .product-card__price .was { font-size: .72rem; }
}

/* =========================================================
   INDIA BRAND IDENTITY — Made in India Additions
   ========================================================= */

/* Hinglish tagline */
.hinglish-tag {
  font-size: .88rem;
  font-style: italic;
  color: var(--text-light);
  display: block;
  margin-top: .35rem;
}

/* India Positioning Section */
.india-position {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #fff8f0 0%, #f0fdf4 100%);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.india-position__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.india-position__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff3cd;
  color: #854d0e;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.india-position__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.india-position__desc {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.india-pillars {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.india-pillar {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
}

.india-pillar__icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

.india-badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.india-badge-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.india-badge-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.india-badge-card__icon { font-size: 2.4rem; flex-shrink: 0; }

.india-badge-card__label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .2rem;
}

.india-badge-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.india-badge-card__desc { font-size: .82rem; color: var(--text-light); }

/* Indian Business Services Section */
.india-services {
  padding: 5rem 0;
  background: var(--white);
}

.india-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.india-service-cat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.india-service-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.india-service-cat__icon { font-size: 2rem; margin-bottom: .75rem; }

.india-service-cat__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
}

.india-service-items {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.india-service-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text);
  font-weight: 500;
}

.india-service-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* Why Choose Us — India focused */
.why-india {
  padding: 5rem 0;
  background: var(--bg);
}

.why-india__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card__icon { font-size: 2rem; margin-bottom: .75rem; }

.why-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.why-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  padding: .8rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,.48);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,.58);
}

.wa-float__icon { font-size: 1.3rem; line-height: 1; }

/* Contact quick-action buttons */
.contact-quick-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cqa-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1.6rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.cqa-btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 3px 14px rgba(37,211,102,.38);
}

.cqa-btn--whatsapp:hover { background: #20bc5a; transform: translateY(-1px); }

.cqa-btn--phone {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 3px 14px rgba(26,16,53,.22);
}

.cqa-btn--phone:hover { background: #2d1a6e; transform: translateY(-1px); }

/* India Services responsive */
@media (max-width: 900px) {
  .india-position__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .india-services__grid  { grid-template-columns: 1fr; }
  .why-india__grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .india-position, .india-services, .why-india { padding: 2.5rem 0; }
}

@media (max-width: 640px) {
  .why-india__grid       { grid-template-columns: 1fr; }
  .india-position__title { font-size: 1.45rem; }
  .contact-quick-actions { flex-direction: column; }

  .wa-float {
    padding: .8rem;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    justify-content: center;
  }
  .wa-float__text { display: none; }
  .wa-float__icon { font-size: 1.6rem; }
}
