
    /* Page-specific: region landing page (bangalore, calicut, kochi share this template) */
    nav { transition: border-bottom .2s; border-bottom: none; }
    nav.scrolled { border-bottom: 1px solid var(--mid); }
    .section-divider { border: none; border-top: 1px solid var(--mid); margin: 0; }

    /* Dark hero */
    .page-hero { padding: 160px 0 0; background: var(--ink); overflow: hidden; }
    .page-hero-inner { max-width: 860px; padding-bottom: 80px; }
    .page-hero .label { display: block; margin-bottom: 32px; color: rgba(250,250,248,.35); }
    .page-hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 4.4rem);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -.01em;
      color: var(--white);
      margin-bottom: 28px;
      font-family: 'Poppins', sans-serif;
    }
    .page-hero h1 em { font-style: normal; color: var(--accent); }
    .page-hero-sub {
      font-size: 1.05rem;
      color: rgba(250,250,248,.55);
      max-width: 580px;
      line-height: 1.72;
    }

    /* Body sections */
    .region-section { padding: 80px 0; }
    .region-section--bg { background: var(--bg); }
    .region-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .region-section h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 24px; font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; }
    .region-section p { color: var(--stone); font-size: .975rem; margin-bottom: 16px; line-height: 1.72; }
    .region-section p:last-child { margin-bottom: 0; }

    /* Context grid */
    .context-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 40px; }
    .context-cell { background: var(--white); padding: 32px 28px; border-top: 3px solid var(--accent); }
    .context-cell h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 10px; }
    .context-cell p { font-size: .875rem; color: var(--stone); margin-bottom: 0; }

    /* FAQ accordion */
    .faq-section { padding: 80px 0; background: var(--white); }
    .faq-section h2 { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 48px; font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; }
    .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
    .faq-item { border-bottom: 1px solid var(--mid); }
    .faq-question { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq-question .faq-icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer { display: none; padding-bottom: 24px; font-size: .94rem; color: var(--stone); line-height: 1.72; }
    .faq-item.open .faq-answer { display: block; }

    /* CTA strip */
    .cta-section { background: var(--accent); padding: 80px 0; }
    .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    .cta-headline { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.4rem); color: var(--white); line-height: 1.15; max-width: 580px; }

    /* Region-specific responsive collapse */
    @media (max-width: 1100px) { :root { --pad: 48px; } }
    @media (max-width: 768px) {
      .region-two-col { grid-template-columns: 1fr; gap: 40px; }
      .context-grid { grid-template-columns: 1fr; }
      .cta-inner { flex-direction: column; align-items: flex-start; }
    }

    /* Sectors cross-link strip */
    .sectors-local { padding: 64px 0; background: var(--bg); }
    .sectors-local .local-label { display: block; margin-bottom: 16px; }
    .sectors-local h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
    .sectors-local p { color: var(--stone); font-size: .9rem; margin-bottom: 28px; max-width: 520px; line-height: 1.65; }
    .sector-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
    .sector-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid var(--mid); font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--ink); text-decoration: none; transition: border-color .18s, color .18s; }
    .sector-chip:hover { border-color: var(--accent); color: var(--accent); }
    .sector-chip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
  