/* =====================================================
   Product Data Scrape — MASTER SHARED STYLESHEET
   Single source of truth for ALL pages
   
   Save to: /assets/pds-styles.css
   Load in <head> of every page:
   <link rel="stylesheet" href="assets/pds-styles.css">
   ===================================================== */

/* === DESIGN TOKENS === */

.industries-prodcts-inner-main {
  :root {
    /* Neutrals */
    --paper: #f4f6fa;
    --paper-2: #e9edf4;
    --ink: #15181f;
    --ink-soft: #5b6172;
    --cream: #fff;
    --line: #d9dfe9;
    /* Brand */
    --accent: #2f6df6;
    --accent-d: #2156d4;
    --teal: #0e1a38;
    /* Semantic */
    --red: #e23b52;
    --amber: #d98a13;
    --green: #1f9d57;
    --orange: #ff6a3d;
    --purple: #a855f7;
    /* Industry accents */
    --c-beauty: #c54c8a;
    --c-toys: #f5a623;
    --c-sport: #00874c;
    --c-auto: #c9302c;
    --c-baby: #a3c5e8;
    --c-furn: #8b6f47;
    --c-pharma: #1f9d57;
    --c-appliance: #374151;
    --c-restaurant: #dc2626;
    --c-b2b: #1e40af;
    --c-pet: #f59e0b;
    --c-jewelry: #a855f7;
    --c-office: #3b82f6;
    --c-tools: #ea580c;
    --c-books: #7c3aed;
    --c-garden: #16a34a;
    /* Country accents */
    --c-uae: #00732f;
    --c-au: #012169;
    --c-ca: #d80621;
    --c-de: #dd0000;
    --c-sg: #ed2e38;
    /* Marketplace accents */
    --c-amazon: #ff9900;
    --c-walmart: #0071ce;
    --c-flipkart: #2874f0;
    --c-myntra: #ff3f6c;
    --c-meesho: #f43397;
    --c-blinkit: #f8cb46;
    --c-zepto: #7c3aed;
    --c-swiggy: #fc8019;
    /* Radius */
    --r: 14px;
    --r-sm: 9px;
    --r-lg: 18px;
  }

  /* === RESET === */

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  img,
  svg {
    display: block;
    max-width: 100%;
  }
  button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
  }
  input,
  textarea,
  select {
    font-family: inherit;
    font-size: inherit;
  }

  /* === LAYOUT === */
  .wrap {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .sec {
    padding: 74px 0;
  }
  .sec-head {
    max-width: 680px;
    margin-bottom: 40px;
  }
  .sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .sec-head h2 {
    font-size: clamp(27px, 3.1vw, 38px);
    margin: 12px 0;
  }
  .sec-head p {
    color: var(--ink-soft);
    font-size: 16px;
  }

  /* === TYPOGRAPHY === */
  .mono {
    font-family: "IBM Plex Mono", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    margin-bottom: 16px;
    font-family: "IBM Plex Mono";
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 1.5px;
    background: var(--accent);
  }
  .eyebrow.center {
    justify-content: center;
  }
  .eyebrow.center::after {
    content: "";
    width: 24px;
    height: 1.5px;
    background: var(--accent);
  }

  /* === BUTTONS === */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 999px;
    cursor: pointer;
    border: 1.5px solid var(--ink);
    transition: all 0.15s;
    background: transparent;
    color: var(--ink);
    text-decoration: none;
    font-family: "IBM Plex Sans";
    white-space: nowrap;
  }
  .btn:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
  }
  .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  /* .btn-primary:hover{background:var(--accent-d);border-color:var(--accent-d);color:#fff} */
  .btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
  }
  .btn-light:hover {
    transform: translateY(-2px);
  }
  .btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }
  .btn-ghost-light:hover {
    background: #fff;
    color: var(--ink);
  }
  .btn .arr {
    transition: transform 0.15s;
  }
  .btn:hover .arr {
    transform: translateX(3px);
  }

  /* === HERO === */
  .hero {
    padding: 36px 0 60px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(33px, 4.2vw, 50px);
  }
  .hero h1 .hl {
    position: relative;
  }
  .hero h1 .hl::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 4px;
    height: 10px;
    background: var(--accent);
    opacity: 0.22;
    z-index: -1;
  }
  .hero .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .hero-ctas {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
  }
  .trustline {
    margin-top: 18px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .trustline b {
    color: var(--ink);
    font-weight: 600;
  }

  /* === HERO VISUAL CARD === */
  .viz-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .viz-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .viz-bar .d {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .viz-bar .t {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .viz-bar .b {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .viz-body {
    padding: 18px;
  }

  /* === STRIP === */
  .strip {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
  }
  .strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 26px 0;
  }
  .strip-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 18px;
  }
  .strip-card .h {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
  }
  .strip-card .fl {
    font-size: 21px;
  }
  .strip-card .cn {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 15.5px;
  }
  .strip-card .meta {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.7;
  }
  .strip-card .meta b {
    color: var(--ink);
    font-weight: 600;
  }

  /* === DATA GRID === */
  .data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .data-cell {
    background: var(--cream);
    padding: 26px 24px;
  }
  .data-cell .di {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--accent) !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 10px;
  }
  .data-cell h4 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .data-cell p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* === SIGNALS === */
  .signals {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .sig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .sig-cell {
    background: var(--cream);
    padding: 26px 28px;
    display: flex;
    gap: 16px;
  }
  .sig-cell .mk {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    /* background: var(--accent); */
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sig-cell h4 {
    font-size: 16.5px;
    margin-bottom: 5px;
  }
  .sig-cell p {
    font-size: 14px;
    color: var(--ink-soft);
  }
  .sig-cell a {
    color: var(--accent);
    font-weight: 600;
  }
  .sig-cell a:hover {
    text-decoration: underline;
  }

  /* === USE CASES === */
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .uc {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 22px;
    border-left: 3px solid var(--accent) !important;
  }
  .uc h4 {
    font-size: 16.5px;
    margin-bottom: 6px;
  }
  .uc p {
    font-size: 13.5px;
    color: var(--ink-soft);
  }

  /* === STEPS === */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .step {
    padding: 28px 24px 0 0;
    border-top: 2px solid var(--ink);
  }
  .step:not(:last-child) {
    padding-right: 28px;
  }
  .step .n {
    font-family: "IBM Plex Mono";
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .step h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 14px;
    color: var(--ink-soft);
  }

  /* === FAQ === */
  .faq {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .faq-list {
    max-width: 100%;
    margin: 0 auto;
  }
  .qa {
    border-bottom: 1px solid var(--line);
  }
  .qa:first-child {
    border-top: 1px solid var(--line);
  }
  .qa-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
  }
  .qa-q .pm {
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .qa-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s;
  }
  .qa-a p {
    padding: 0 4px 22px;
    color: var(--ink-soft);
    font-size: 15px;
    max-width: 100%;
  }

  /* === CTA BAND === */
  .ctaband {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 64px 0;
  }
  .ctaband h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    color: #fff;
    max-width: 720px;
    margin: 0 auto 14px;
  }
  .ctaband p {
    color: #dde9ff;
    max-width: 560px;
    margin: 0 auto 22px;
    font-size: 16px;
  }
  .ctaband .ctas {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* === RESOURCE CARDS (resources page) === */
  .res-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 50px;
  }
  .res-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px;
    transition:
      transform 0.2s,
      box-shadow 0.2s,
      border-color 0.2s;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    color: var(--ink);
  }
  .res-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(21, 24, 31, 0.08);
    border-color: var(--accent);
  }
  .res-card .ic {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 21px;
    color: #fff;
  }
  .res-card .ic.blog {
    background: var(--accent);
  }
  .res-card .ic.case {
    background: var(--green);
  }
  .res-card .ic.research {
    background: var(--purple);
  }
  .res-card .ic.white {
    background: var(--ink);
  }
  .res-card .ic.info {
    background: var(--red);
  }
  .res-card .ic.video {
    background: var(--amber);
  }
  .res-card .ic.news {
    background: #00874c;
  }
  .res-card .ic.tech {
    background: #c9302c;
  }
  .res-card .ct {
    flex: 1;
    min-width: 0;
  }
  .res-card .lbl {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
  }
  .res-card h3 {
    font-size: 21px;
    margin-bottom: 7px;
    line-height: 1.2;
    color: var(--ink);
  }
  .res-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 11px;
  }
  .res-card .arr-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    font-family: "IBM Plex Mono";
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: gap 0.15s;
  }
  .res-card:hover .arr-link {
    gap: 10px;
  }

  /* === REVEAL ANIMATIONS === */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.6s,
      transform 0.6s;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* === RESPONSIVE === */
  @media (max-width: 1280px) {
    .pds-link {
      padding: 10px 11px;
      font-size: 14px;
    }
    .pds-items {
      gap: 2px;
    }
  }
  @media (max-width: 1180px) {
    .pds-link {
      padding: 10px 9px;
      font-size: 13.5px;
    }
  }
  @media (max-width: 1100px) {
    .pds-items {
      display: none;
    }
    .pds-mobile {
      display: flex;
    }
    .pds-cta .btn:not(.btn-primary) {
      display: none;
    }
  }
  @media (max-width: 960px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .strip-inner,
    .data-grid,
    .uc-grid {
      grid-template-columns: 1fr 1fr;
    }
    .sig-grid {
      grid-template-columns: 1fr;
    }
    .steps {
      grid-template-columns: 1fr 1fr;
    }
    .foot-grid {
      grid-template-columns: 1fr 1fr;
    }
    .res-grid {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 600px) {
    .wrap {
      padding: 0 20px;
    }
    .strip-inner,
    .data-grid,
    .uc-grid,
    .steps {
      grid-template-columns: 1fr;
    }
    .sec {
      padding: 52px 0;
    }
    .pds-logo-text i {
      display: none;
    }
    .res-card {
      flex-direction: column;
    }
    .foot-grid {
      grid-template-columns: 1fr;
    }
  }

  /* === INDUSTRY ACCENT OVERRIDES === */
  .hero h1 .hl::after,
  .data-cell .di,
  .sig-cell .mk {
    /* background: var(--accent); */
  }
  .uc {
    border-left-color: var(--c-beauty);
  }
  .hero h1 .hl::after,
  .data-cell .di,
  .sig-cell .mk {
    /* background: var(--accent); */
  }
  .uc {
    border-left-color: var(--c-toys);
  }
  .hero h1 .hl::after,
  .data-cell .di,
  .sig-cell .mk {
    /* background: var(--accent); */
  }
  .uc {
    border-left-color: var(--c-sport);
  }
  .hero h1 .hl::after,
  .data-cell .di,
  .sig-cell .mk {
    /* background: var(--accent); */
  }
  .uc {
    border-left-color: var(--c-auto);
  }
  .hero h1 .hl::after,
  .data-cell .di,
  .sig-cell .mk {
    /* background: var(--accent); */
  }
  .uc {
    border-left-color: var(--c-baby);
  }
  .hero h1 .hl::after,
  .data-cell .di,
  .sig-cell .mk {
    /* background: var(--accent); */
  }
  .uc {
    border-left-color: var(--c-pet);
  }

  /* ============================================== */

  /* =====================================================
   pds-industries.css
   Page-UNIQUE styles for all Industry pages.
   Common selectors handled by pds-common.css.
   ===================================================== */

  /* ============ ind-scrape-data-from-any-ecommerce-websites.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .cov-wall {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .cov-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cov-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .cov-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .cov-bar .badge {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .cov-body {
    padding: 14px 16px;
  }
  .cov-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cov-cell {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 11.5px;
    color: var(--ink);
    line-height: 1.25;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cov-cell .fl {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .cov-foot {
    padding: 11px 14px 4px;
    font-size: 11.5px;
    color: var(--ink-soft);
    text-align: center;
    font-family: "IBM Plex Mono";
    letter-spacing: 0.04em;
  }
  .cov-foot b {
    color: var(--accent);
    font-weight: 700;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .stats {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .stat {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 22px 24px;
  }
  .stat .n {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 34px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .stat .l {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .cats {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cat-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .cat-card .icn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    /* background: var(--accent); */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
  }
  .cat-card h4 {
    font-size: 15.5px;
    margin-bottom: 5px;
  }
  .cat-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .cat-card a {
    display: block;
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 8px;
    font-family: "IBM Plex Mono";
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
  .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 8px;
  }
  .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 960px) {
    .stats-inner {
      grid-template-columns: 1fr 1fr;
    }
    .cat-grid,
    .del-grid {
      grid-template-columns: 1fr 1fr;
    }
    .cov-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }
  @media (max-width: 600px) {
    .stats-inner,
    .cat-grid,
    .del-grid {
      grid-template-columns: 1fr;
    }
    .cov-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ============ ind-quick-commerce-grocery-and-fmcg-data-scraping.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .dash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
  }
  .dash-row .h {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 14px;
  }
  .dash-row .meta {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 13px;
  }
  .kpi {
    background: var(--paper-2);
    border-radius: 9px;
    padding: 11px 12px;
  }
  .kpi .kn {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 3px;
  }
  .kpi .kl {
    font-size: 10px;
    color: var(--ink-soft);
    line-height: 1.3;
  }
  .kpi.good .kn {
    color: var(--green);
  }
  .kpi.warn .kn {
    color: var(--red);
  }
  .alert-list {
    border-top: 1px dashed var(--line);
    padding-top: 11px;
  }
  .alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 8px;
    margin-bottom: 5px;
    font-size: 12px;
    background: #fdeef0;
    border: 1px solid #f7c1c1;
  }
  .alert.warn {
    background: #fff5ec;
    border-color: #ffdbb8;
  }
  .alert.ok {
    background: #f0faf4;
    border-color: #bce5cb;
  }
  .alert .lbl {
    font-family: "IBM Plex Mono";
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .alert .lbl.crit {
    background: var(--red);
    color: #fff;
  }
  .alert .lbl.wrn {
    background: var(--amber);
    color: #fff;
  }
  .alert .lbl.gd {
    background: var(--green);
    color: #fff;
  }
  .alert .tx {
    flex: 1;
    line-height: 1.3;
  }
  .alert .tx b {
    font-weight: 600;
    color: var(--ink);
  }
  .alert .ts {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    color: var(--ink-soft);
    flex-shrink: 0;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .pain {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .pain-cell {
    background: var(--cream);
    padding: 30px 26px;
  }
  .pain-cell .x {
    font-family: "Bricolage Grotesque";
    font-size: 20px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 11px;
  }
  .pain-cell h4 {
    font-size: 17px;
    margin-bottom: 7px;
  }
  .pain-cell p {
    font-size: 14px;
    color: var(--ink-soft);
  }
  .role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
  }
  .role-cell {
    background: var(--cream);
    padding: 26px 28px;
  }
  .role-cell .rt {
    font-family: "IBM Plex Mono";
    font-size: 11px;
    text-transform: uppercase;
    color: var(--fmcg);
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .role-cell h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .role-cell p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .role-cell ul {
    padding-left: 18px;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .role-cell ul li {
    margin-bottom: 4px;
  }
  .role-cell ul li b {
    color: var(--ink);
    font-weight: 600;
  }
  .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
  .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 8px;
  }
  .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 960px) {
    .pain-grid,
    .del-grid {
      grid-template-columns: 1fr 1fr;
    }
    .role-grid {
      grid-template-columns: 1fr;
    }
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }
  @media (max-width: 600px) {
    .pain-grid,
    .del-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============ ind-web-scraping-grocery-gourmet-food-data.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-bar .badge {
    margin-left: auto;
    background: var(--grocery);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 14px 16px;
  }
  .geo-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 11px 8px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    font-size: 12.5px;
  }
  .geo-row:last-child {
    border-bottom: none;
  }
  .geo-row .flag {
    font-size: 20px;
    text-align: center;
  }
  .geo-row .lst {
    font-family: "IBM Plex Mono";
    font-size: 11px;
    color: var(--ink);
    line-height: 1.45;
  }
  .geo-row .lst b {
    font-family: "Bricolage Grotesque";
    font-size: 12.5px;
    font-weight: 700;
    color: var(--grocery);
    display: block;
    margin-bottom: 2px;
    letter-spacing: 0;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .stats {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .stat {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 22px 24px;
  }
  .stat .n {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 32px;
    color: var(--grocery);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .stat .l {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
  .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 8px;
  }
  .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 960px) {
    .stats-inner {
      grid-template-columns: 1fr 1fr;
    }
    .del-grid {
      grid-template-columns: 1fr 1fr;
    }
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }
  @media (max-width: 600px) {
    .stats-inner,
    .del-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============ ind-web-scraping-for-fashion-apparel-data.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .li-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-wrap: wrap;
  }
  .li-head .sid {
    background: var(--paper-2);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
  }
  .li-head .br {
    background: var(--fashion);
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 700;
  }
  .li-head .cat {
    background: #fff0f5;
    color: var(--fashion);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid #f8c4dc;
  }
  .li-name {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 15.5px;
    margin-bottom: 9px;
    line-height: 1.3;
  }
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 11px;
    margin-bottom: 14px;
  }
  .price-row .now {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    font-size: 22px;
  }
  .price-row .mrp {
    font-family: "IBM Plex Mono";
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: line-through;
  }
  .price-row .off {
    font-family: "IBM Plex Mono";
    font-weight: 700;
    font-size: 12px;
    color: var(--fashion);
    background: #fff0f5;
    padding: 3px 7px;
    border-radius: 4px;
  }
  .sz-block {
    background: var(--paper-2);
    border-radius: 10px;
    padding: 12px 13px;
    margin-bottom: 12px;
  }
  .sz-hdr {
    font-family: "IBM Plex Mono";
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
  }
  .sz-hdr .live {
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .sz-hdr .live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
  }
  .sz-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
  }
  .sz {
    background: #fff;
    border: 1px solid var(--line);
    padding: 6px 4px;
    text-align: center;
    border-radius: 5px;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    font-weight: 700;
  }
  .sz.ok {
    color: var(--ink);
  }
  .sz.oos {
    color: var(--red);
    background: #fdeef0;
    border-color: #f7c1c1;
    text-decoration: line-through;
    opacity: 0.6;
  }
  .sz.low {
    color: var(--amber);
    background: #fff5ec;
    border-color: #ffdbb8;
  }
  .sale-pin {
    background: linear-gradient(90deg, #d4327a 0%, #a0185e 100%);
    color: #fff;
    border-radius: 8px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
  .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 8px;
  }
  .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 960px) {
    .del-grid {
      grid-template-columns: 1fr 1fr;
    }
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }
  @media (max-width: 600px) {
    .del-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============ ind-web-scraping-electronics-data.php ============ */

  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .dot.live {
    background: var(--red);
    animation: pulse 1.6s infinite;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-bar .lv {
    margin-left: auto;
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 14px 16px;
  }
  .pd-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 11px;
    align-items: center;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 6px;
    font-size: 12px;
  }
  .pd-row:last-child {
    margin-bottom: 0;
  }
  .pd-row.drop {
    background: #f0faf4;
    border-color: #bce5cb;
  }
  .pd-row.rise {
    background: #fdeef0;
    border-color: #f7c1c1;
  }
  .pd-row .arrow {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    font-size: 14px;
    width: 22px;
    text-align: center;
  }
  .pd-row.drop .arrow {
    color: var(--green);
  }
  .pd-row.rise .arrow {
    color: var(--red);
  }
  .pd-row .model {
    font-weight: 600;
    line-height: 1.3;
  }
  .pd-row .model small {
    display: block;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 11px;
    margin-top: 1px;
  }
  .pd-row .price {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    font-size: 14px;
  }
  .pd-row .delta {
    font-family: "IBM Plex Mono";
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
  }
  .pd-row.drop .delta {
    background: var(--green);
    color: #fff;
  }
  .pd-row.rise .delta {
    background: var(--red);
    color: #fff;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cat-card1 {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px 22px;
    border-left: 3px solid var(--accent);
  }
  .cat-card1 img {
    width: 35px;
    height: 35px;
  }
  .cat-card .icn1 {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
  }
  .cat-card h4 {
    font-size: 15.5px;
    margin-bottom: 5px;
  }
  .cat-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .delivery {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .del-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .del-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 20px 22px;
    text-align: center;
  }
  .del-card .di {
    font-family: "Bricolage Grotesque";
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    padding: 8px;
  }
  .del-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .del-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 960px) {
    .cat-grid,
    .del-grid {
      grid-template-columns: 1fr 1fr;
    }
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }
  @media (max-width: 600px) {
    .cat-grid,
    .del-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============ ind-web-scraping-health-beauty-websites.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .li-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-wrap: wrap;
  }
  .li-head .br {
    background: var(--bty);
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 700;
  }
  .li-head .cat {
    background: #fdf0f6;
    color: var(--bty);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid #f9c4dd;
  }
  .li-name {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 15.5px;
    margin-bottom: 9px;
    line-height: 1.3;
  }
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 11px;
    margin-bottom: 14px;
  }
  .price-row .now {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    font-size: 22px;
  }
  .price-row .mrp {
    font-family: "IBM Plex Mono";
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: line-through;
  }
  .shades {
    background: var(--paper-2);
    border-radius: 10px;
    padding: 13px 14px;
    margin-bottom: 12px;
  }
  .shades-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "IBM Plex Mono";
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .shades-hdr .ct {
    color: var(--bty);
  }
  .sw-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
  }
  .sw {
    aspect-ratio: 1;
    border-radius: 6px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    position: relative;
  }
  .sw.oos {
    opacity: 0.3;
  }
  .sw.oos::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent 0 3px,
      rgba(0, 0, 0, 0.4) 3px 4px
    );
    border-radius: 4px;
  }
  .inci {
    background: #fdf0f6;
    border: 1px solid #f4c4dc;
    border-radius: 9px;
    padding: 11px 13px;
    font-size: 11px;
    color: var(--ink);
    line-height: 1.55;
    font-family: "IBM Plex Mono";
  }
  .inci b {
    color: var(--bty);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  @media (max-width: 960px) {
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }
  @media (max-width: 600px) {
    .sw-grid {
      grid-template-columns: repeat(8, 1fr);
    }
  }

  /* ============ ind-web-scraping-alcohol-liquor-data.php ============ */

  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .wname {
    font-family: "Bricolage Grotesque";
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
  }
  .wmeta {
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .state-row {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    gap: 10px;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 7px;
    margin-bottom: 5px;
    align-items: center;
    font-size: 12.5px;
  }
  .state-row .stcd {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    font-size: 11px;
    color: var(--liq);
    background: #fce8eb;
    padding: 4px 7px;
    border-radius: 4px;
    text-align: center;
  }
  .state-row .stnm {
    color: var(--ink);
    font-weight: 600;
    line-height: 1.2;
  }
  .state-row .stnm small {
    display: block;
    font-size: 10px;
    color: var(--ink-soft);
    font-weight: 400;
    font-family: "IBM Plex Mono";
  }
  .state-row .pr {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    font-size: 14px;
    text-align: right;
  }
  .state-row .tag {
    font-family: "IBM Plex Mono";
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 0.04em;
  }
  .state-row .tag.lic {
    background: #e4f6ec;
    color: var(--green);
  }
  .state-row .tag.ctl {
    background: #fff1e8;
    color: var(--orange);
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  @media (max-width: 960px) {
    .nav-links,
    .nav-cta .btn-ghost {
      display: none;
    }
  }

  /* ============ ind-web-scraping-toys-games-data.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-bar .badge {
    margin-left: auto;
    background: var(--toys-2);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .skh {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
  }
  .skh h4 {
    font-size: 14.5px;
    line-height: 1.3;
  }
  .skh .meta {
    font-size: 11px;
    color: var(--ink-soft);
    font-family: "IBM Plex Mono";
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .skh .age {
    background: var(--toys-3);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    padding: 4px 9px;
    border-radius: 5px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.04em;
  }
  .pchart {
    height: 140px;
    border-bottom: 1.5px dashed var(--line);
    border-left: 1.5px dashed var(--line);
    position: relative;
    margin-bottom: 8px;
  }
  .pchart .bar {
    position: absolute;
    bottom: 0;
    width: 6.5%;
    border-radius: 3px 3px 0 0;
    transition: all 0.3s;
  }
  .pchart .bar[data-mo="Jan"] {
    left: 1%;
    height: 25%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Feb"] {
    left: 9.5%;
    height: 22%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Mar"] {
    left: 18%;
    height: 28%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Apr"] {
    left: 26.5%;
    height: 32%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="May"] {
    left: 35%;
    height: 30%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Jun"] {
    left: 43.5%;
    height: 35%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Jul"] {
    left: 52%;
    height: 42%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Aug"] {
    left: 60.5%;
    height: 48%;
    background: #cfd3db;
  }
  .pchart .bar[data-mo="Sep"] {
    left: 69%;
    height: 55%;
    background: var(--toys);
  }
  .pchart .bar[data-mo="Oct"] {
    left: 77.5%;
    height: 78%;
    background: var(--toys);
  }
  .pchart .bar[data-mo="Nov"] {
    left: 86%;
    height: 92%;
    background: var(--toys-2);
  }
  .pchart .bar[data-mo="Dec"] {
    left: 94.5%;
    height: 88%;
    background: var(--toys-2);
  }
  .xaxis {
    display: flex;
    justify-content: space-between;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    color: var(--ink-soft);
    padding: 0 1%;
    margin-bottom: 11px;
  }
  .ann {
    background: #fff5ec;
    border: 1px solid #ffdbb8;
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 11.5px;
    color: #7a3a1a;
    line-height: 1.5;
    font-family: "IBM Plex Mono";
    letter-spacing: 0.02em;
  }
  .ann b {
    color: var(--toys-2);
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  @media (max-width: 960px) {
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }

  /* ============ ind-web-scraping-baby-products-websites.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-bar .badge {
    margin-left: auto;
    background: var(--baby-d);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .dh {
    margin-bottom: 12px;
  }
  .dh h4 {
    font-size: 15px;
    margin-bottom: 3px;
  }
  .dh .m {
    font-size: 11px;
    color: var(--ink-soft);
    font-family: "IBM Plex Mono";
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .dh .certs {
    display: flex;
    gap: 5px;
    margin-top: 7px;
    flex-wrap: wrap;
  }
  .dh .certs .c {
    background: var(--baby);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 8.5px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .dh .certs .c.green {
    background: var(--green);
  }
  .dh .certs .c.amber {
    background: var(--amber);
  }
  .dtbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
  }
  .dtbl thead th {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    text-align: left;
    padding: 6px 8px 6px 4px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
  }
  .dtbl td {
    padding: 9px 8px 9px 4px;
    border-bottom: 1px solid #f0f3f8;
  }
  .dtbl tr:last-child td {
    border-bottom: none;
  }
  .dtbl .sz {
    font-family: "IBM Plex Mono";
    font-weight: 700;
    font-size: 12px;
    color: var(--ink);
  }
  .dtbl .pack {
    font-size: 11px;
    color: var(--ink-soft);
  }
  .dtbl .pp {
    font-family: "IBM Plex Mono";
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    text-align: right;
  }
  .dtbl .st {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    text-align: center;
    letter-spacing: 0.04em;
  }
  .dtbl .st.ok {
    background: #e4f6ec;
    color: var(--green);
  }
  .dtbl .st.lo {
    background: #fff5ec;
    color: var(--amber);
  }
  .dtbl .st.no {
    background: #fdeef0;
    color: var(--red);
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  @media (max-width: 960px) {
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }

  /* ============ ind-web-scraping-sports-outdoors-product-data.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-bar .badge {
    margin-left: auto;
    background: var(--sport);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .seas-tbl {
    width: 100%;
    border-collapse: collapse;
    font-family: "IBM Plex Mono";
    font-size: 10.5px;
  }
  .seas-tbl th {
    font-size: 9px;
    color: var(--ink-soft);
    text-align: center;
    padding: 4px 2px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--line);
  }
  .seas-tbl th:first-child {
    text-align: left;
    padding-left: 6px;
    width: 90px;
  }
  .seas-tbl td {
    padding: 3px 1px;
    text-align: center;
  }
  .seas-tbl .nm {
    text-align: left;
    padding-left: 6px;
    color: var(--ink);
    font-weight: 600;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
    font-family: "IBM Plex Sans";
  }
  .seas-tbl .h {
    height: 18px;
    border-radius: 3px;
    display: block;
  }
  .seas-tbl .h0 {
    background: #f0f3f8;
  }
  .seas-tbl .h1 {
    background: #cce2d4;
  }
  .seas-tbl .h2 {
    background: #7fb795;
  }
  .seas-tbl .h3 {
    background: var(--sport);
  }
  .seas-tbl .h4 {
    background: var(--sport-d);
  }
  .seas-legend {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding-top: 11px;
    border-top: 1px solid var(--line);
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    color: var(--ink-soft);
  }
  .seas-legend .lg {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .seas-legend .sw {
    width: 11px;
    height: 11px;
    border-radius: 3px;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  @media (max-width: 960px) {
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }

  /* ============ ind-web-scraping-automotive-data.php ============ */

  .sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin: 20px 0 26px;
    max-width: 520px;
  }
  .card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: 0 24px 50px rgba(21, 24, 31, 0.13);
    overflow: hidden;
  }
  .card-bar {
    background: var(--ink);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .card-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3f4d;
  }
  .card-bar .ttl {
    margin-left: 8px;
    color: #cfd3db;
    font-family: "IBM Plex Mono";
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .card-bar .badge {
    margin-left: auto;
    background: var(--auto);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .card-body {
    padding: 18px;
  }
  .fit-h {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 13px;
  }
  .fit-h h4 {
    font-size: 15px;
    line-height: 1.3;
  }
  .fit-h .m {
    font-size: 11px;
    color: var(--ink-soft);
    font-family: "IBM Plex Mono";
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 3px;
  }
  .fit-h .oem {
    background: var(--auto);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    padding: 4px 9px;
    border-radius: 5px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.04em;
  }
  .fit-grid {
    background: var(--paper-2);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 11px;
  }
  .fit-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
    font-size: 11.5px;
    padding: 5px 0;
    align-items: center;
  }
  .fit-row .l {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .fit-row .v {
    color: var(--ink);
    font-weight: 600;
    font-family: "IBM Plex Mono";
    font-size: 11px;
  }
  .var-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .var {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: 11px;
    align-items: center;
  }
  .var.match {
    background: #e4f6ec;
    border-color: #bce5cb;
  }
  .var .nm {
    font-weight: 600;
    color: var(--ink);
  }
  .var .nm small {
    display: block;
    color: var(--ink-soft);
    font-weight: 400;
    font-size: 10px;
    margin-top: 1px;
  }
  .var .pr {
    font-family: "IBM Plex Mono";
    font-weight: 800;
    color: var(--ink);
    font-size: 12px;
  }
  .var .tg {
    font-family: "IBM Plex Mono";
    font-size: 8.5px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .var .tg.oem {
    background: var(--auto);
    color: #fff;
  }
  .var .tg.aft {
    background: var(--paper-2);
    color: var(--ink);
  }
  .var .tg.reman {
    background: var(--amber);
    color: #fff;
  }
  .sec-head.center {
    margin: 0 auto 40px;
    text-align: center;
  }
  .qa.open .pm {
    transform: rotate(45deg);
  }
  @media (max-width: 960px) {
    /* .nav-links, .nav-cta .btn-ghost { display:none } */
  }

  /* ============ ind-web-scraping-pet-supplies-websites.php ============ */
  .pet-card .lh {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
  }
  .pet-card .lh h4 {
    font-size: 15px;
    line-height: 1.3;
  }
  .pet-card .lh .m {
    font-size: 11px;
    color: var(--ink-soft);
    font-family: "IBM Plex Mono";
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 3px;
  }
  .pet-card .lh .as {
    background: var(--c-pet);
    color: #fff;
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    padding: 4px 9px;
    border-radius: 5px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.04em;
  }
  .pet-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
  }
  .pet-tbl th {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
    padding: 6px 8px 6px 4px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
  }
  .pet-tbl td {
    padding: 9px 8px 9px 4px;
    border-bottom: 1px solid #f0f3f8;
  }
  .pet-tbl tr:last-child td {
    border-bottom: none;
  }
  .pet-tbl .sz {
    font-family: "IBM Plex Mono";
    font-weight: 700;
    color: var(--ink);
  }
  .pet-tbl .pr {
    font-family: "IBM Plex Mono";
    font-size: 11.5px;
    color: var(--ink-soft);
    text-align: right;
    text-decoration: line-through;
  }
  .pet-tbl .as-pr {
    font-family: "IBM Plex Mono";
    font-size: 11.5px;
    font-weight: 700;
    color: var(--c-pet);
    text-align: right;
  }
  .pet-tbl .sv {
    font-family: "IBM Plex Mono";
    font-size: 9.5px;
    background: #fff5ec;
    color: var(--amber);
    padding: 3px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
  }



/* === NEW INDUSTRY PAGES (shared rt-card style) === */
.rt-card .rt-row{display:grid;grid-template-columns:1.4fr 1.4fr .9fr;gap:11px;padding:10px 12px;border:1px solid var(--line);border-radius:8px;margin-bottom:6px;align-items:center;font-family:'IBM Plex Mono'}
.rt-card .rt-row.hot{background:#fef5e7;border-color:#fcd9a3}
.rt-card .rt-row.down{background:#fef2f2;border-color:#fca5a5}
.rt-card .rt-nm{font-family:'IBM Plex Sans';font-weight:600;font-size:12.5px;color:var(--ink)}
.rt-card .rt-mid{font-size:11px;color:var(--ink-soft)}
.rt-card .rt-end{font-size:12px;font-weight:800;color:var(--green);text-align:right}
.rt-card .rt-row.down .rt-end{color:var(--red)}
.rt-card .rt-legend{margin-top:10px;font-family:'IBM Plex Mono';font-size:10px;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.04em;text-align:center}

@media(max-width:600px){
.rt-card .rt-row{grid-template-columns:1fr;gap:4px}
.rt-card .rt-end{text-align:left}
}

}


