:root {
  --accent: #2f6df6;
  --accent-dark: #1f4dc5;
  --ink: #15181f;
  --ink-soft: #5a6072;
  --bg: #ffffff;
  --bg-soft: #f4f6fa;
  --bg-card: #fbfcfe;
  --border: #e6e9f0;
  --mint: #6bf2c2;
  --navy: #0e1a38;
  --navy-dark: #060d22;
  --green: #10b981;
  --red: #ef4444;
  --brand-primary: #000000;
  --brand-accent: #ec4899;
  --brand-accent-soft: #fce7f3;
  --brand-accent-alt: #febd69;
  --shadow-md: 0 4px 12px rgba(15, 26, 56, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 26, 56, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 26, 56, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --flipkart: #2874f0;
  /* --flipkart-yellow: #ffe11b; */
}
.new-product-data-scraper-pages {
  section.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #f4f6fa, #fff);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(
        circle at 15% 25%,
        rgba(0, 0, 0, 0.04) 0%,
        transparent 45%
      ),
      radial-gradient(
        circle at 85% 75%,
        rgba(0, 0, 0, 0.04) 0%,
        transparent 45%
      );
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 1210px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  .brand-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--accent);
    color: #fff;
    border-radius: 99px;
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  }
  .brand-strip-logo {
    display: inline-flex;
    align-items: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .brand-strip-logo .accent {
    color: var(--bg);
  }
  .brand-strip-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
  }
  @media (max-width: 450px) {
    .brand-strip {
      flex-direction: column;
    }
  }
  h1.hero-h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(40px, 5.5vw, 60px);
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -1.8px;
  }
  .hero-sub {
    font-size: 19px;
    color: var(--ink-soft);
    margin: 0 0 32px;
    line-height: 1.55;
    max-width: 580px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .btn-primary {
    padding: 16px 30px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    transition: all 0.15s;
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    background: (--flipkart);
  }
  .btn-secondary {
    padding: 16px 28px;
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
  }
  .btn-secondary:hover {
    background: var(--accent);
    color: #fff;
  }
  .hero-mini-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 520px;
  }
  .hero-mini-trust .avatars {
    display: flex;
  }
  .hero-mini-trust .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #fff);
    border: 2px solid #fff;
    margin-left: -8px;
  }
  .hero-mini-trust .avatar:first-child {
    margin-left: 0;
  }
  .hero-mini-trust .trust-text {
    font-size: 13.5px;
    color: var(--ink-soft);
  }
  .hero-mini-trust .trust-text strong {
    color: var(--ink);
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 450px) {
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      text-align: center;
    }
  }
  .stat-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
  }
  .stat-num .accent-1 {
    color: var(--accent);
  }
  .stat-num .accent-2 {
    color: var(--brand-primary);
  }
  .stat-label {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 6px;
    font-weight: 500;
  }
  .code-window {
    background: var(--brand-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
      var(--shadow-xl),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
  }
  .code-window-head {
    background: rgba(0, 0, 0, 0.5);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .code-window-dots {
    display: flex;
    gap: 6px;
  }
  .code-window-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
  }
  .code-window-dot.r {
    background: #ff5f56;
  }
  .code-window-dot.y {
    background: #ffbd2e;
  }
  .code-window-dot.g {
    background: #27c93f;
  }
  .code-window-url {
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 14px;
    border-radius: 6px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: #bbb;
    flex: 1;
    max-width: 380px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .code-window-url .url-accent {
    color: var(--brand-accent);
  }
  .code-window-body {
    padding: 22px 24px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12.5px;
    line-height: 1.85;
    color: #000;
    overflow-x: auto;
    max-height: 480px;
    background: #fff;
  }
  .code-window-foot {
    background: #fff;
    color: #000;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #999;
    font-size: 12px;
    color: #999;
  }
  .trust-bar {
    background: var(--paper-2);
    color: #fff;
    padding: 28px 0;
  }
  .trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .trust-bar-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .trust-item-icon {
    width: 36px;
    height: 36px;
  }
  .trust-item-icon img {
    width: 100%;
    height: 100%;
  }
  .trust-item-text {
    font-size: 13.5px;
    color: #000;
    line-height: 1.4;
  }
  .trust-item-text strong {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
  }
  section.section {
    padding: 90px 0;
  }
  section.section.alt {
    background: var(--bg-soft);
  }
  .section-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 99px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .section-h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: -1.2px;
  }
  .section-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 0 56px;
    line-height: 1.6;
  }
  .caps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 1200px) {
    .caps-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
    .caps-grid {
      grid-template-columns: 1fr;
    }
  }
  .cap-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .cap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--accent);
    transition: width 0.25s;
  }
  .cap-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }
  .cap-card:hover::before {
    width: 100%;
  }
  .cap-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 12px;
    color: #fff;
    margin-bottom: 18px;
    padding: 6px;
  }
  .cap-icon img {
    width: 100%;
    height: 100%;
  }
  .cap-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
  }
  .cap-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 14px;
    line-height: 1.6;
  }
  .cap-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: var(--teal);
    color: var(--bg);
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
  }
  .fields-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .fields-intro {
      grid-template-columns: 1fr;
    }
  }
  .fields-intro-text h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
  }
  .fields-intro-text p {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
  }
  .fields-stat-box {
    background: var(--teal);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
  }
  .fields-stat-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--bg);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -3px;
  }
  .fields-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }
  .fields-stat-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
  }
  .fields-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  @media (max-width: 1000px) {
    .fields-categories {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 500px) {
    .fields-categories {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .field-cat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
  }
  .field-cat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border);
  }
  .field-cat-icon {
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 8px;
    /* display: grid;
    place-items: center;
    font-size: 16px; */
    padding: 8px;
  }
  .field-cat-icon img {
    width: 100%;
    height: 100%;
  }
  .field-cat-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
  }
  .field-cat-count {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
  }
  .field-cat-list {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    line-height: 1.8;
    color: var(--ink-soft);
  }
  .field-cat-list span {
    display: inline-block;
    margin-right: 4px;
  }
  .field-cat-list .accent {
    color: var(--accent);
    font-weight: 600;
  }
  .cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 1120px) {
    .cats-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 900px) {
    .cats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 500px) {
    .cats-grid {
      grid-template-columns: 1fr;
    }
  }
  .cat-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .cat-tile:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
  }
  .cat-tile-emoji {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    width: 40px;
    height: 40px;
  }
  .cat-tile-emoji img {
    width: 100%;
    height: 100%;
  }
  .cat-tile h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
  }
  .cat-tile p {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin: 0;
  }
  .cat-tile-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    padding: 3px 8px;
    border-radius: 99px;
    font-size: 10.5px;
    font-weight: 700;
  }
  .json-block {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 32px;
  }
  .json-ribbon {
    background: var(--brand-primary);
    color: #fff;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .json-ribbon-icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  .json-ribbon-icon img {
    width: 100%;
    height: 100%;
  }
  /* .json-content{padding:30px;font-family:"IBM Plex Mono",monospace;font-size:12.5px;line-height:1.85;overflow-x:auto;max-height:600px;white-space:pre} */
  .json-content {
    padding: 30px;
    font-size: 13px;
    line-height: 1.85;
    font-family: "IBM Plex Mono", monospace;
    color: #000;
    overflow-x: auto;
    max-height: 600px;
    background: rgb(255, 255, 255);
    white-space: pre;
  }
  .json-content .null {
    color: #6272a4;
    font-style: italic;
  }
  .daily-callout {
    background: linear-gradient(135deg, #1d4ed8 55%, #3b82f6 100%);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .daily-callout::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(80px);
  }
  .daily-callout::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: var(--brand-accent-alt);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
  }
  .daily-callout-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .daily-callout-inner {
      grid-template-columns: 1fr;
    }
  }
  .daily-callout-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 99px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .daily-callout h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -1.2px;
  }
  .daily-callout h2 .accent {
    color: var(--teal);
  }
  .daily-callout p.lead {
    font-size: 17.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 28px;
    line-height: 1.6;
  }
  .daily-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .daily-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
  }
  .daily-stat-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--bg);
    line-height: 1;
  }
  .daily-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
  }
  .daily-callout-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  @media (max-width: 500px) {
    .daily-stats {
      grid-template-columns: 1fr;
    }
  }
  .daily-feature {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .daily-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    padding: 6px;
  }
  .daily-feature-text strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
  }
  .daily-feature-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
  }
  .demo-intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
  }
  @media (max-width: 900px) {
    .demo-intro {
      grid-template-columns: 1fr;
    }
  }
  .demo-intro h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 14px;
  }
  .demo-intro p {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.65;
  }
  .demo-product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .demo-product-img {
    width: 110px;
    height: 100px;
    padding: 6px;
    background: linear-gradient(135deg, #eff6ff, var(--accent));
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 38px;
    flex-shrink: 0;
  }
  .demo-product-info h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
  }
  .demo-product-info .pid {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    color: var(--ink-soft);
  }
  .demo-product-info .brand {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 9px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
  }
  .countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  @media (max-width: 1120px) {
    .countries-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 900px) {
    .countries-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 400px) {
    .countries-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .country-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.2s;
    position: relative;
  }
  .country-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
  }
  .country-flag {
    font-size: 28px;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
  }
  .country-flag img {
    width: 100%;
    height: 100%;
  }
  .country-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
  }
  .country-domain {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11.5px;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .country-price {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
  }
  .country-price .currency {
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
    margin-right: 2px;
  }
  .country-rrp {
    font-size: 12px;
    color: var(--ink-soft);
    text-decoration: line-through;
    margin-right: 8px;
  }
  .country-discount {
    display: inline-block;
    padding: 2px 7px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
  }
  .country-premier {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 11.5px;
    color: var(--accent);
    font-weight: 600;
  }
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 1120px) {
    .uc-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .uc-grid {
      grid-template-columns: 1fr;
    }
  }
  .icp-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    padding: 80px 0;
    border-top: 1px solid var(--border);
  }
  .icp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
  }
  @media (max-width: 1120px) {
    .icp-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 700px) {
    .icp-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .icp-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .icp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
  }
  .icp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }
  .icp-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--brand-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .icp-card h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ink);
  }
  .icp-card .icp-segment {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin: 0 0 14px;
    font-weight: 500;
  }
  .icp-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0;
  }
  .icp-target-pill {
    background: var(--bg-light);
    border: 1px solid var(--border);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--ink);
    font-weight: 500;
  }
  .icp-pain {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 14px 0 10px;
    line-height: 1.5;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
  }
  .icp-pain strong {
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .icp-deal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
  }
  .icp-deal-label {
    color: var(--ink-soft);
    font-weight: 500;
  }
  .icp-deal-value {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 13.5px;
  }

  .uc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.2s;
    position: relative;
  }
  .uc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }
  .uc-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .uc-card h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
  }
  .uc-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 16px;
    line-height: 1.6;
  }
  .uc-outcome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    background: #eff6ff;
    border-left: 4px solid #2e6bff;
    border-radius: 6px;
  }
  .uc-outcome-icon {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
  .uc-outcome-icon img {
    width: 100%;
    height: 100%;
  }
  .uc-outcome-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
  }
  .howit-section {
    background: var(--navy);
    color: #fff;
    padding: 100px 0;
  }
  .howit-section .section-eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .howit-section .section-h2 {
    color: #fff;
  }
  .howit-section .howit-section-span-accent {
    color: var(--accent);
  }
  .howit-section .section-sub {
    color: rgba(255, 255, 255, 0.75);
  }
  .howit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 28px;
  }
  @media (max-width: 500px) {
    .howit-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }
  .howit-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
  }
  .howit-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
  }
  .howit-step h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    position: relative;
  }
  .howit-step p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 18px;
    line-height: 1.6;
  }
  .howit-code {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: var(--bg);
    overflow-x: auto;
    white-space: pre;
  }
}

.new-product-data-scraper-pages-flipkart {
  .hero-brand-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 99px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 530px) {
    .hero-brand-strip {
      flex-direction: column;
      align-items: center;
      padding-bottom: 12px;
    }
  }
  .flipkart-logo-mini {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--flipkart);
  }
  .flipkart-logo-mini::after {
    content: "✦";
    color: var(--bg);
    font-size: 12px;
    background: var(--flipkart);
    border-radius: 2px;
    padding: 2px 4px;
    margin-left: 2px;
  }
  .hero-brand-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
  }
  h1.hero-h1 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(38px, 5.2vw, 58px);
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -1.6px;
  }
  h1.hero-h1 .highlight {
    padding: 0 6px;
  }
  .hero-sub {
    font-size: 19px;
    color: var(--ink-soft);
    margin: 0 0 32px;
    line-height: 1.55;
  }
  .hero-feat-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .feat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
  }
  .feat-pill::before {
    content: "✓";
    color: var(--flipkart);
    font-weight: 700;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .hero-no-cc {
    font-size: 13px;
    color: var(--ink-soft);
  }
  .hero-no-cc::before {
    content: "💳";
    margin-right: 6px;
  }

  /* HERO CODE BLOCK */
  .hero-code-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .code-window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  .window-dot.red {
    background: #ff5f57;
  }
  .window-dot.yellow {
    background: #febc2e;
  }
  .window-dot.green {
    background: #28c840;
  }
  .window-title {
    margin-left: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }
  .code-tabs {
    display: flex;
    background: var(--navy-dark);
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .code-tab {
    padding: 14px 18px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 600;
  }
  .code-tab.active {
    color: var(--mint);
    border-bottom-color: var(--mint);
  }
  .code-body {
    padding: 24px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12.5px;
    line-height: 1.7;
    color: #b9d4ff;
    overflow-x: auto;
    max-height: 560px;
  }
  .code-stats {
    display: flex;
    gap: 24px;
    padding: 14px 24px;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
  }
  .code-stat {
    color: rgba(255, 255, 255, 0.6);
  }
  .code-stat strong {
    color: #999;
    font-weight: 600;
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--ink);
    color: #fff;
    padding: 32px 0;
  }
  .trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
  }
  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .trust-bar-icon {
    font-size: 26px;
  }
  .trust-bar-text {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
  }
  .trust-bar-text strong {
    color: #fff;
  }
  @media (max-width: 800px) {
    .trust-bar-grid {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
  }

  /* SECTIONS */
  section.section {
    padding: 90px 0;
  }
  section.section.dark {
    background: var(--navy);
    color: #fff;
  }
  .section-eyebrow {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(40, 116, 240, 0.08);
    color: var(--flipkart);
    border-radius: 99px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .dark .section-eyebrow {
    background: rgba(255, 225, 27, 0.15);
    color: var(--flipkart-yellow);
  }
  .section-h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -1.2px;
  }
  .section-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 760px;
    margin: 0 0 56px;
    line-height: 1.55;
  }
  .dark .section-sub {
    color: rgba(255, 255, 255, 0.75);
  }

  /* FLIPKART-SPECIFIC FEATURES */
  .fk-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) {
    .fk-features-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
    .fk-features-grid {
      grid-template-columns: 1fr;
    }
  }
  .fk-feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: all 0.2s;
  }
  .fk-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
  }
  .fk-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(
      135deg,
      rgba(40, 116, 240, 0.12) 0%,
      rgba(255, 225, 27, 0.12) 100%
    );
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 18px;
  }
  .fk-feature-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 10px;
  }
  .fk-feature-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 14px;
    line-height: 1.6;
  }
  .fk-feature-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(40, 116, 240, 0.08);
    color: var(--flipkart);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
  }

  /* DATA FIELDS GRID */
  .fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  @media (max-width: 900px) {
    .fields-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 375px) {
    .fields-grid {
      grid-template-columns: 1fr;
    }
  }
  .field-tag {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.15s;
  }
  .field-tag:hover {
    border-color: var(--accent);
    background: rgba(40, 116, 240, 0.02);
  }
  .field-tag-icon {
    font-size: 16px;
  }

  /* CATEGORIES STRIP */
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  @media (max-width: 1000px) {
    .categories-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 600px) {
    .categories-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 375px) {
    .categories-grid {
      grid-template-columns: 1fr;
    }
  }
  .category-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.15s;
    cursor: pointer;
  }
  .category-tile:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .category-icon {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .category-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .category-count {
    font-size: 11px;
    color: var(--ink-soft);
    font-weight: 500;
  }

  /* JSON SHOWCASE */
  .json-showcase {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 32px 0;
  }
  .json-ribbon {
    background: var(--navy);
    color: var(--bg);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  .json-body {
    padding: 32px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    line-height: 1.7;
    overflow-x: auto;
  }

  /* BIG BILLION DAYS CALLOUT */
  .bbd-callout {
    background: linear-gradient(135deg, var(--flipkart) 0%, #1a4ba8 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  .bbd-callout::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: var(--flipkart-yellow);
    border-radius: 50%;
    opacity: 0.15;
  }
  .bbd-callout::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 250px;
    height: 250px;
    background: var(--mint);
    border-radius: 50%;
    opacity: 0.1;
  }
  .bbd-grid {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 800px) {
    .bbd-grid {
      grid-template-columns: 1fr;
    }
  }
  .bbd-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg);
    color: var(--ink);
    border-radius: 99px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }
  .bbd-callout h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.15;
  }
  .bbd-callout p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin: 0 0 24px;
    line-height: 1.6;
  }
  .bbd-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bbd-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 20px;
  }
  .bbd-stat-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--flipkart-yellow);
    line-height: 1;
  }
  .bbd-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
  }

  /* USE CASES */
  .usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) {
    .usecase-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
    .usecase-grid {
      grid-template-columns: 1fr;
    }
  }
  .usecase-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.2s;
  }
  .usecase-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--flipkart);
  }
  .usecase-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--ink);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .usecase-card h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
  }
  .usecase-card p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 16px;
    line-height: 1.6;
  }
  .usecase-outcome {
    background: rgba(40, 116, 240, 0.08);
    border-left: 3px solid var(--flipkart);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--flipkart);
    border-radius: 4px;
  }

  /* PINCODE COVERAGE */
  .pincode-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .pincode-section {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }
  .pincode-visual {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  .pincode-map {
    background: linear-gradient(
      135deg,
      rgba(40, 116, 240, 0.05) 0%,
      rgba(255, 225, 27, 0.05) 100%
    );
    border-radius: var(--radius);
    padding: 32px 24px;
    margin-bottom: 24px;
  }
  .pincode-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
  }
  .pincode-row:last-child {
    border-bottom: none;
  }
  .pincode-loc {
    font-weight: 600;
    color: var(--ink);
  }
  .pincode-num {
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    color: var(--ink-soft);
  }
  .pincode-price {
    font-weight: 700;
    color: var(--flipkart);
  }

  /* HOW IT WORKS */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  /* @media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } } */
  @media (max-width: 800px) {
    .steps-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  }
  .step-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
  }
  .step-num {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
  }
  .step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
  }
  .step-code {
    background: var(--navy-dark);
    border-radius: var(--radius);
    padding: 16px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    line-height: 1.6;
    color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    white-space: pre;
  }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  @media (max-width: 1000px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
  }
  .price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
  }
  .price-card.featured {
    background: linear-gradient(135deg, var(--flipkart) 0%, #1a4ba8 100%);
    color: #fff;
    border: none;
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
    z-index: 1;
  }
  .price-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--flipkart-yellow);
    color: var(--ink);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
  }
  .price-name {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
  }
  .price-card.featured .price-name {
    color: var(--flipkart-yellow);
  }
  .price-amount {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
  }
  .price-amount span {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-left: 4px;
  }
  .price-card.featured .price-amount span {
    color: rgba(255, 255, 255, 0.7);
  }
  .price-sub {
    font-size: 13px;
    color: var(--ink-soft);
    margin: 6px 0 24px;
  }
  .price-card.featured .price-sub {
    color: rgba(255, 255, 255, 0.8);
  }
  .price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
  }
  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
  }
  .price-features li::before {
    content: "✓";
    color: var(--flipkart);
    font-weight: 700;
    flex-shrink: 0;
  }
  .price-card.featured .price-features li::before {
    color: var(--flipkart-yellow);
  }
  .price-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: var(--flipkart);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  }
  .price-card.featured .price-btn {
    background: var(--flipkart-yellow);
    color: var(--ink);
  }
  .price-btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--ink);
  }
}

.new-ecommerce-product-data-scraper-pages {
  /* ============ HERO ============ */
  .hero {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    padding: 80px 24px 60px 24px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
      circle,
      rgba(47, 109, 246, 0.08),
      transparent 70%
    );
    pointer-events: none;
  }
  .hero-inner {
   max-width: 1550px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-block;
    background: white;
    border: 1px solid #dbeafe;
    color: #2f6df6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #15181f;
    margin-bottom: 20px;
  }
  .hero h1 .accent {
    color: #2f6df6;
  }
  .hero .lead {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 540px;
  }
  .hero-cta-row {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: #2f6df6;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover {
    background: #1e4fc4;
    transform: translateY(-1px);
  }
  .btn-secondary {
    background: white;
    color: #15181f;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
  }
  .btn-secondary:hover {
    border-color: #2f6df6;
    color: #2f6df6;
  }
  .hero-mini-stats {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: #6b7280;
  }
  .hero-mini-stats strong {
    color: #15181f;
    font-weight: 700;
  }

  /* Hero right — segment preview */
  .hero-preview {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(21, 24, 31, 0.06);
  }
  .preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .preview-title {
    font-weight: 700;
    font-size: 15px;
    color: #15181f;
  }
  .preview-badge {
    font-size: 11px;
    color: #6b7280;
    background: #f0f4ff;
    padding: 4px 10px;
    border-radius: 999px;
  }
  .preview-segs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .preview-seg {
    padding: 14px;
    background: #f8f9fb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
  }
  .preview-seg:hover {
    border-color: #2f6df6;
    background: white;
  }
  .preview-seg-emoji {
    font-size: 20px;
  }
  .preview-seg-name {
    font-size: 13px;
    font-weight: 700;
    color: #15181f;
    margin: 6px 0 2px 0;
  }
  .preview-seg-count {
    font-size: 11px;
    color: #6b7280;
  }

  /* ============ TRUST BAR ============ */
  .trust-bar {
    background: #15181f;
    color: white;
    padding: 20px 24px;
  }
  .trust-inner {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
  }
  .trust-item strong {
    color: #ffd34e;
    font-weight: 700;
  }

  /* ============ SEGMENTS ============ */
  .section {
    padding: 80px 24px;
  }
  .section-inner {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section-head {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-eyebrow {
    color: #2f6df6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .section-head h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .section-head p {
    color: #6b7280;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center !important;
  }

  /* Segment blocks */
  .segment-block {
    margin-bottom: 64px;
  }
  .segment-head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 28px;
  }
  .segment-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    background: var(--accent);
  }
  .segment-icon img{
    width: 25px;
  }
  .segment-head h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .seg-count {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    background: #f0f4ff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-left: 10px;
    vertical-align: middle;
  }
  .segment-tagline {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .segment-icps {
    color: #6b7280;
    font-size: 13px;
  }
  .segment-icps strong {
    color: #15181f;
    font-weight: 600;
  }

  .segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
  }

  /* Scraper Card */
  .scraper-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
  }
  .scraper-card:hover {
    border-color: #2f6df6;
    box-shadow: 0 8px 20px rgba(47, 109, 246, 0.08);
    transform: translateY(-2px);
  }
  .sc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .sc-logo {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }
  .sc-cat {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .sc-title {
    font-size: 15px;
    font-weight: 700;
    color: #15181f;
    margin-bottom: 8px;
  }
  .sc-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
  }
  .sc-meta {
    font-size: 11.5px;
    color: #6b7280;
    padding-top: 12px;
    border-top: 1px dashed #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .sc-meta strong {
    color: #374151;
    font-weight: 600;
  }
  .sc-meta .dot {
    color: #d1d5db;
  }
  .sc-cta {
    color: #2f6df6;
    font-size: 12.5px;
    font-weight: 600;
  }

  /* ============ USE CASES ============ */
  .use-cases {
    background: #f8f9fb;
  }
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
    gap: 20px;
  }
  .uc-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
  }
  .uc-emoji {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
    background: #f0f4ff;
    padding: 12px;
    border-radius: 12px;
    line-height: 1;
  }
  .uc-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .uc-card p {
    color: #6b7280;
    font-size: 14px;
  }

  /* ============ SAMPLE DATA ============ */
  .sample {
    /* background: #15181f; */
    color: white;
  }
  .sample .section-eyebrow {
    color: var(--accent);
  }
  .sample .section-head h2 { color: #000; }
  /* .sample .section-head p { color: #cbd5e1; } */
  .sample-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
  }
  .sample-fields {
  }
  .sample-fields h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
  }
  .sample-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #2d3142;
  }
  .sample-field:last-child {
    border: none;
  }
  .sample-field-code {
    font-family: "IBM Plex Mono", monospace;
    color: #000;
    font-size: 13px;
    min-width: 140px;
    flex-shrink: 0;
  }
  .sample-field-desc {
    color: #6b7280;
    font-size: 13px;
  }
  .sample-code {
    background: #f8f9fb;
    border: 1px solid #2d3142;
    border-radius: 12px;
    padding: 20px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 12.5px;
    color: #000;
    line-height: 1.7;
    overflow-x: auto;
  }
  .sample-code .key {
    color: #000;
  }
  .sample-code .str {
    color: #6b7280;
  }
  .sample-code .num {
    color: #6b7280;
  }
  .sample-code .comment {
    color: #6b7280;
    font-style: italic;
  }

  /* ============ ICP LOGOS ============ */
  .icps {
    background: white;
  }
  .icps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  .icp-logo {
    padding: 24px;
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #15181f;
    transition: all 0.2s;
  }
  .icp-logo:hover {
    background: white;
    border-color: #2f6df6;
  }
  .icp-logo .sub {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
    margin-top: 4px;
  }
  /* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 28px; }
  .sample-grid { grid-template-columns: 1fr; }
  .segment-head { flex-direction: column; }
  .segment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .uc-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 550px) {
  .uc-grid  { grid-template-columns: repeat(1,1fr); }
}
}
