/* HostStack India light theme — premium SaaS depth (not flat white). Works with or without Tailwind app.css. */
[data-hs-pipeline="india-conversion"] {
  --hs-in-blue: #2563eb;
  --hs-in-purple: #7c3aed;
  --hs-in-slate-900: #0f172a;
  --hs-in-slate-100: #f1f5f9;
  --hs-in-slate-200: #e2e8f0;
  --hs-in-surface: #ffffff;
  --hs-in-band: #f1f5f9;
  --hs-in-band-warm: #f8fafc;
}

@layer base {
  body,
  [data-hs-pipeline="india-conversion"] {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  /* Page canvas: cool grey + subtle mesh + fine dot grid (not pure #fff) */
  html[data-hs-pipeline="india-conversion"] {
    background: linear-gradient(180deg, #dde5f0 0%, #e8edf4 38%, #eef2f8 100%);
    scroll-behavior: smooth;
  }

  html[data-hs-pipeline="india-conversion"] body.hs-in-page {
    position: relative;
    color: var(--hs-in-slate-900);
    background-color: transparent;
    min-height: 100%;
  }

  html[data-hs-pipeline="india-conversion"] body.hs-in-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(ellipse 100% 60% at 50% -18%, rgba(37, 99, 235, 0.2), transparent 55%),
      radial-gradient(ellipse 80% 50% at 100% 15%, rgba(124, 58, 237, 0.14), transparent 48%),
      radial-gradient(ellipse 70% 45% at 0% 55%, rgba(37, 99, 235, 0.1), transparent 52%),
      radial-gradient(ellipse 50% 35% at 50% 100%, rgba(100, 116, 139, 0.06), transparent 60%),
      radial-gradient(circle at 1px 1px, rgba(100, 116, 139, 0.28) 1px, transparent 0);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 26px 26px;
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  html[data-hs-pipeline="india-conversion"] body.hs-in-page > * {
    position: relative;
    z-index: 1;
  }

  [data-hs-pipeline="india-conversion"] h1,
  [data-hs-pipeline="india-conversion"] h2,
  [data-hs-pipeline="india-conversion"] h3 {
    color: #0f172a;
  }
}

@layer components {
  /* Sticky bottom padding */
  .hs-in-m {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0));
  }
  @media (min-width: 768px) {
    .hs-in-m {
      padding-bottom: 1.5rem;
    }
  }

  /* Floating header (any depth under body) */
  html[data-hs-pipeline="india-conversion"] body.hs-in-page header {
    background: rgba(255, 255, 255, 0.92) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.07), 0 12px 40px -18px rgba(15, 23, 42, 0.12);
  }

  .hs-in-promo-bar {
    background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%) !important;
    border-color: #fde68a;
    box-shadow: 0 1px 0 rgba(180, 83, 9, 0.1);
  }

  /* Hero: soft mesh + light noise grid */
  .hs-in-hero {
    position: relative;
    isolation: isolate;
    min-height: min(42vh, 28rem);
    background: linear-gradient(168deg, #dbeafe 0%, #ede9fe 28%, #ffffff 65%, #f1f5f9 100%) !important;
    border-bottom: 1px solid rgba(100, 116, 139, 0.35) !important;
    box-shadow: 0 24px 48px -32px rgba(15, 23, 42, 0.12);
  }

  @media (min-width: 640px) {
    .hs-in-hero {
      min-height: min(38vh, 32rem);
    }
  }

  .hs-in-hero__title strong {
    background: linear-gradient(100deg, #1d4ed8 0%, #5b21b6 55%, #5b21b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  @supports not (background-clip: text) {
    .hs-in-hero__title strong {
      color: #1d4ed8;
      background: none;
    }
  }

  .hs-in-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.65;
    background-image: radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.24) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .hs-in-hero > * {
    position: relative;
    z-index: 1;
  }

  .hs-in-hero__badge {
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  }

  .hs-in-hero__blob--tr {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 70%) !important;
  }

  .hs-in-hero__blob--bl {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.24) 0%, transparent 70%) !important;
  }

  /* Full-bleed section bands */
  .hs-in-band {
    position: relative;
    z-index: 1;
  }

  .hs-in-band--pricing {
    background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 18%, #f8fafc 100%);
    border-top: 1px solid rgba(100, 116, 139, 0.28);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 32px -20px rgba(15, 23, 42, 0.08);
  }

  .hs-in-band--white {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  }

  .hs-in-band--muted {
    background: linear-gradient(180deg, #e8edf1 0%, #f1f5f9 12%, #e8edf1 100%);
    border-top: 1px solid rgba(100, 116, 139, 0.22);
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
  }

  .hs-in-band--perf {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .hs-in-band--final {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.3);
  }

  .hs-in-cta-slab {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.9) 100%);
    border: 1px solid rgba(147, 197, 253, 0.5);
    box-shadow: 0 16px 48px -20px rgba(37, 99, 235, 0.2), 0 4px 16px rgba(15, 23, 42, 0.06);
    border-radius: 1rem;
  }

  .hs-in-perf-block {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95) 0%, rgba(245, 243, 255, 0.92) 100%) !important;
    border: 1px solid rgba(147, 197, 253, 0.45) !important;
    border-radius: 1rem;
    box-shadow: 0 12px 40px -16px rgba(37, 99, 235, 0.18), 0 4px 14px rgba(15, 23, 42, 0.06);
  }

  a.hs-in-btn-primary,
  .hs-in-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, var(--hs-in-blue) 0%, var(--hs-in-purple) 100%) !important;
    color: #fff !important;
    font-weight: 800;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  a.hs-in-btn-primary:hover,
  .hs-in-btn-primary:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  }
  a.hs-in-btn-primary--pill,
  .hs-in-btn-primary--pill {
    border-radius: 9999px;
  }

  a.hs-in-btn-blue,
  .hs-in-btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--hs-in-blue) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  a.hs-in-btn-blue:hover,
  .hs-in-btn-blue:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
  }

  a.hs-in-btn-wa,
  .hs-in-btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 10rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: #fff !important;
    color: #047857 !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none !important;
    border: 2px solid #a7f3d0;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.12);
  }

  a.hs-in-btn-ghost-violet,
  .hs-in-btn-ghost-violet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: #f5f3ff !important;
    color: #5b21b6 !important;
    font-weight: 800;
    font-size: 0.875rem;
    text-decoration: none !important;
    border: 2px solid #ddd6fe;
  }
  a.hs-in-btn-ghost-blue,
  .hs-in-btn-ghost-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: #eff6ff !important;
    color: #1e40af !important;
    font-weight: 800;
    font-size: 0.875rem;
    text-decoration: none !important;
    border: 1px solid #bfdbfe;
  }

  .hs-in-sticky a.hs-in-btn-primary {
    min-height: 3rem;
    width: 100%;
    max-width: none;
  }

  .hs-in-pill,
  a.hs-in-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  }

  .hs-in-pricing-popular {
    border: 2px solid #93c5fd !important;
    background: linear-gradient(180deg, #ffffff, #eff6ff) !important;
    border-radius: 1rem;
    box-shadow: 0 12px 40px -8px rgba(37, 99, 235, 0.28), 0 4px 12px rgba(15, 23, 42, 0.07);
  }

  .hs-in-pricing-card {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }
  .hs-in-pricing-card:hover {
    box-shadow: 0 12px 36px -8px rgba(15, 23, 42, 0.12);
    transform: translateY(-3px);
    border-color: #cbd5e1;
  }

  .hs-in-card-feature {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }
  .hs-in-card-feature:hover {
    box-shadow: 0 12px 32px -6px rgba(37, 99, 235, 0.15);
    transform: translateY(-3px);
    border-color: #bfdbfe;
  }

  @media (prefers-reduced-motion: reduce) {
    .hs-in-pricing-card:hover,
    .hs-in-card-feature:hover {
      transform: none;
    }
  }

  .hs-in-testimonial {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  }

  .hs-in-faq-item {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  }

  [data-hs-pipeline="india-conversion"] #site-footer {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.04);
  }

  [data-hs-pipeline="india-conversion"] main a.text-blue-600,
  [data-hs-pipeline="india-conversion"] .text-blue-600 {
    color: var(--hs-in-blue) !important;
  }

  /* /cloud-hosting: body is text-slate-50 — without bg-white on hero, copy can inherit light grey on pale gradient. */
  html[data-hs-pipeline="india-conversion"] .hs-in-cloud-hero {
    color-scheme: light;
    background-color: #fff;
    color: #0f172a;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cloud-hero h1 {
    color: #0f172a;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cloud-hero p {
    color: #475569;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cloud-hero p strong {
    color: #0f172a;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cloud-page {
    color: #0f172a;
  }

  /* /cloud-hosting: dark store hero + plans — hard fallbacks so hero/cards are never “invisible on pale wrap” */
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero {
    color-scheme: dark;
    position: relative;
    z-index: 0;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
    color: #e2e8f0;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero h1 {
    color: #fff !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero p.text-slate-400,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero .text-slate-400 {
    color: #94a3b8 !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero p.text-slate-500,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero .text-slate-500,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero nav,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero nav .text-slate-600,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero nav .text-slate-400,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero nav .text-slate-500 {
    color: #64748b !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero nav a {
    color: #94a3b8 !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-store-hero nav a:hover {
    color: #fb923c !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-plans {
    position: relative;
    z-index: 0;
    background-color: #f8fafc !important;
    color: #0f172a !important;
    color-scheme: light;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-mid-dark {
    color-scheme: dark;
    background: #020617 !important;
    color: #e2e8f0;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-mid-dark h2 {
    color: #fff !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-sec {
    color-scheme: light;
    background: #fff !important;
    color: #0f172a;
  }

  /* Match store / WordPress: orange primary on plan actions */
  html[data-hs-pipeline="india-conversion"] .hs-in-cl-plans .hs-in-kh-cta {
    background: #f97316 !important;
    background-image: none !important;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35) !important;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cl-plans .hs-in-kh-cta:hover {
    filter: brightness(1.06) !important;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cl-plans .hs-in-kh-card--popular {
    border-color: #f97316 !important;
    box-shadow:
      0 0 0 1px #f97316,
      0 24px 50px -18px rgba(249, 115, 22, 0.4) !important;
    z-index: 1;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cl-plans .hs-in-kh-pop {
    background: #f97316 !important;
    background-image: none !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  }

  /* /cloud-hosting long-form guide: solid light band (no semi-transparent wash on dark body) */
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-guide {
    color-scheme: light;
    background-color: #f1f5f9 !important;
    color: #0f172a;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-guide-intro {
    background: #fff !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-guide h2#cl-guide-h2,
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-guide .hs-in-cl-guide-intro h2 {
    color: #0f172a !important;
  }
  html[data-hs-pipeline="india-conversion"] [data-hs-store-landing-surface] .hs-in-cl-guide .text-slate-600 {
    color: #475569 !important;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cl-guide-card {
    transition:
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }
  @media (hover: hover) {
    html[data-hs-pipeline="india-conversion"] .hs-in-cl-guide-card:hover {
      border-color: #cbd5e1;
      box-shadow:
        0 1px 0 rgba(15, 23, 42, 0.05),
        0 12px 28px -8px rgba(15, 23, 42, 0.1);
    }
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-cl-guide .hs-in-faq-ans a {
    color: var(--hs-in-blue, #2563eb) !important;
  }

  /* —— Kat-style landing (HostStack: original copy & pricing, inspired layout only) —— */
  .hs-in-kat-hero {
    min-height: 0;
  }

  .hs-in-kat-rotate {
    position: relative;
  }

  .hs-in-kat-rotate__w {
    display: inline-grid;
    vertical-align: bottom;
  }

  .hs-in-kat-rotate__w > span {
    grid-area: 1 / 1;
    background: linear-gradient(100deg, #1d4ed8 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hs-in-kat-rotate__w > span:nth-child(1) {
    animation: hs-in-rot3a 9s ease-in-out infinite;
  }

  .hs-in-kat-rotate__w > span:nth-child(2) {
    animation: hs-in-rot3b 9s ease-in-out infinite;
  }

  .hs-in-kat-rotate__w > span:nth-child(3) {
    animation: hs-in-rot3c 9s ease-in-out infinite;
  }

  @keyframes hs-in-rot3a {
    0%,
    30% {
      opacity: 1;
    }
    33%,
    100% {
      opacity: 0;
    }
  }

  @keyframes hs-in-rot3b {
    0%,
    32% {
      opacity: 0;
    }
    33%,
    64% {
      opacity: 1;
    }
    65%,
    100% {
      opacity: 0;
    }
  }

  @keyframes hs-in-rot3c {
    0%,
    65% {
      opacity: 0;
    }
    66%,
    99% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .hs-in-kat-rotate__caret {
    color: #2563eb;
    font-weight: 300;
    margin-left: 0.1em;
    animation: hs-in-blink 1s step-end infinite;
  }

  @keyframes hs-in-blink {
    0%,
    50% {
      opacity: 1;
    }
    51%,
    100% {
      opacity: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hs-in-kat-rotate__w > span {
      animation: none;
      opacity: 0;
    }
    .hs-in-kat-rotate__w > span:first-child {
      opacity: 1;
    }
    .hs-in-kat-rotate__caret {
      animation: none;
      opacity: 1;
    }
  }

  @supports not (background-clip: text) {
    .hs-in-kat-rotate__w > span {
      color: #1d4ed8;
      background: none;
    }
  }

  .hs-in-terminal {
    border-radius: 0.75rem;
    border: 1px solid #1e293b;
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
  }

  .hs-in-terminal__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #1e293b;
    font-size: 0.7rem;
    color: #94a3b8;
  }

  .hs-in-terminal__dot {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 9999px;
  }

  .hs-in-terminal__title {
    margin-left: 0.25rem;
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.7rem;
    color: #cbd5e1;
  }

  .hs-in-terminal__pre {
    margin: 0;
    padding: 1rem 0.9rem 1.2rem;
    font-size: 0.7rem;
    line-height: 1.6;
    color: #e2e8f0;
    font-family: ui-monospace, Consolas, "Cascadia Code", monospace;
    white-space: pre-wrap;
  }

  .hs-in-tok-dim {
    color: #64748b;
  }

  .hs-in-tok-ok {
    color: #4ade80;
  }

  .hs-in-tok {
    color: #a5b4fc;
  }

  .hs-in-tok-prompt {
    color: #38bdf8;
  }

  .hs-in-kat-tech {
    gap: 0.5rem;
  }

  .hs-in-kat-tech-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  }

  .hs-in-kat-stat {
    text-align: center;
  }

  /* Same max width as #india-hosting-guide: three equal columns, numbers centered in each track */
  @media (min-width: 640px) {
    html[data-hs-pipeline="india-conversion"] .hs-in-kat-stats ul {
      align-items: start;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  .hs-in-kat-stat__n {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(120deg, #1d4ed8, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hs-in-kat-stat__l {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #64748b;
  }

  .hs-in-kat-why,
  .hs-in-kat-dev-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .hs-in-kat-why:hover,
  .hs-in-kat-dev-card:hover {
    box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.15);
    border-color: #bfdbfe;
  }

  .hs-in-kat-launch {
    text-align: center;
  }

  .hs-in-kat-launch ol {
    text-align: left;
  }

  .hs-in-faq-det {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 0.9rem;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
    margin-bottom: 0.4rem;
  }

  .hs-in-faq-det[open] {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px -4px rgba(37, 99, 235, 0.12);
  }

  .hs-in-faq-summary {
    list-style: none;
    position: relative;
    cursor: pointer;
    padding: 0.85rem 2.4rem 0.85rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
  }

  .hs-in-faq-summary::-webkit-details-marker,
  .hs-in-faq-summary::marker {
    display: none;
  }

  .hs-in-faq-plus {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
  }

  .hs-in-faq-plus::before,
  .hs-in-faq-plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #94a3b8;
    transform: translate(-50%, -50%);
    border-radius: 1px;
  }

  .hs-in-faq-plus::before {
    width: 10px;
    height: 2px;
  }

  .hs-in-faq-plus::after {
    width: 2px;
    height: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .hs-in-faq-det[open] .hs-in-faq-plus::after {
    opacity: 0;
  }

  .hs-in-faq-ans {
    padding: 0 0.9rem 0.85rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
  }

  .hs-in-faq-ans a {
    color: var(--hs-in-blue) !important;
    text-decoration: underline;
  }

  @media (prefers-reduced-motion: reduce) {
    .hs-in-kat-why:hover,
    .hs-in-kat-dev-card:hover {
      transform: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hs-in-pricing-popular {
      transform: none !important;
    }
  }
}

/* Unlayered rules (load after all @layer blocks): always win in cascade — fixes prod where @layer
   order, stale cached CSS, or missing file merge would otherwise drop the hero rotator layout. */
html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w {
  display: inline-grid !important;
  vertical-align: bottom;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  min-width: 10ch;
  min-height: 1.15em;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w > span {
  grid-area: 1 / 1 / 2 / 2 !important;
  background: linear-gradient(100deg, #1d4ed8 0%, #6d28d9 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w > span:nth-child(1) {
  animation: hs-in-rot3a-uh 9s ease-in-out infinite;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w > span:nth-child(2) {
  animation: hs-in-rot3b-uh 9s ease-in-out infinite;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w > span:nth-child(3) {
  animation: hs-in-rot3c-uh 9s ease-in-out infinite;
}

@keyframes hs-in-rot3a-uh {
  0%,
  30% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
  }
}

@keyframes hs-in-rot3b-uh {
  0%,
  32% {
    opacity: 0;
  }
  33%,
  64% {
    opacity: 1;
  }
  65%,
  100% {
    opacity: 0;
  }
}

@keyframes hs-in-rot3c-uh {
  0%,
  65% {
    opacity: 0;
  }
  66%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__caret {
  color: #2563eb;
  margin-left: 0.1em;
  animation: hs-in-blink-uh 1s step-end infinite;
}

@keyframes hs-in-blink-uh {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w > span {
    animation: none;
    opacity: 0;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__w > span:first-child {
    opacity: 1;
  }
  html[data-hs-pipeline="india-conversion"] .hs-in-kat-rotate__caret {
    animation: none;
  }
}

/* —— Kat-style plan store (cloud / WHMCS / VPS) —— */
html[data-hs-pipeline="india-conversion"] .hs-in-kh-herowrap {
  position: relative;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-hero {
  position: relative;
  z-index: 1;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-loc {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-pill:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-pill--on {
  border-color: #2563eb;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(37, 99, 235, 0.45);
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-pill--on:hover {
  color: #fff;
  background: linear-gradient(90deg, #1d4ed8, #4338ca);
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 18px 40px -24px rgba(15, 23, 42, 0.15);
  padding: 1.5rem 1.35rem 1.4rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 24px 48px -20px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-card--popular {
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6, 0 24px 50px -18px rgba(37, 99, 235, 0.35);
  z-index: 1;
  padding-top: 2.25rem;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-pop {
  position: absolute;
  left: 50%;
  top: 0.65rem;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  white-space: nowrap;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-priceblock {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
  margin-top: 0.25rem;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-priceblock__main {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.02em;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-priceblock__sub {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-priceblock__annual {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-spec-h {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-cta {
  display: flex;
  width: 100%;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
  transition: filter 0.15s, transform 0.1s;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-cta--ghost {
  background: #fff;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
  font-weight: 700;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-cta--ghost:hover {
  border-color: #3b82f6;
  color: #1d4ed8;
  filter: none;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-plan-html,
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #334155;
  max-height: 20rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.25rem;
}
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html ul,
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html ol {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html li {
  margin: 0.2rem 0;
}
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html p {
  margin: 0.35rem 0 0;
}
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html strong,
html[data-hs-pipeline="india-conversion"] .hs-in-plan-html b {
  color: #0f172a;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-grid {
  align-items: stretch;
}

html[data-hs-pipeline="india-conversion"] .hs-in-kh-mini {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

/* Plan-preview-first layout (store-style above the fold) */
html[data-hs-pipeline="india-conversion"] .hs-in-kh-plans-first {
  scroll-margin-top: 0.5rem;
  /* Solid enough contrast vs gradient wrapper so the grid is visibly “a section” */
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  color: #0f172a;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-plans-first h2,
html[data-hs-pipeline="india-conversion"] .hs-in-kh-plans-first .text-slate-900 {
  color: #0f172a;
}
html[data-hs-pipeline="india-conversion"] .hs-in-kh-plans-first .text-slate-600,
html[data-hs-pipeline="india-conversion"] .hs-in-kh-plans-first .text-slate-500 {
  color: #475569;
}

/* First-party social share strip (no third-party embeds) */
html[data-hs-pipeline="india-conversion"] .hs-share-bar .hs-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}
html[data-hs-pipeline="india-conversion"] .hs-share-bar a.hs-share-btn:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1e40af;
}
html[data-hs-pipeline="india-conversion"] .hs-share-bar .hs-share-btn--mute {
  background: #f8fafc;
  color: #334155;
}
html[data-hs-pipeline="india-conversion"] .hs-share-bar .hs-share-btn--accent {
  border-color: #c4b5fd;
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
  color: #5b21b6;
}
html[data-hs-pipeline="india-conversion"] .hs-share-bar .hs-share-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
