/* =========================================================
   WebDataScraping.us — Design System
   ========================================================= */

:root {
  /* --bg: #FAF9F6; */
  --bg: #ffffff;
  --bg-elev: #FFFFFF;
  --bg-dark: #000000;
  --bg-dark-soft: #131826;
  --ink: #0A0E1A;
  --ink-soft: #1F2937;
  --muted: #57606A;
  --muted-2: #8B95A3;
  --line: #E8E5DD;
  --line-soft: #F0EDE6;
  --accent: #000000;
  /* --accent: #D97706; */
  /* --accent-dark: #B45309; */
  --accent-dark: #000000;
  /* --accent-soft: #FEF3E2; */
  --accent-soft: #f0f0f0;
  --success: #16A34A;
  --warn: #DC2626;

  --serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  /* --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
  --sans:  'Figtree', sans-serif;

  --mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(10,14,26,0.04);
  --shadow-md: 0 4px 16px rgba(10,14,26,0.06);
  --shadow-lg: 0 16px 48px rgba(10,14,26,0.12);

  --max: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-dark); }

/* Typography */
h1, h2, h3, h4 {  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); margin-bottom: .5rem; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; }

p { color: var(--ink-soft); margin-bottom: 1rem; }
p.lead { font-size: 1.2rem; color: var(--muted); max-width: 65ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Container */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* =========================================================
   Navigation
   ========================================================= */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 246, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.header-main-logo{
  height: 50px;
    width: 210px;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  align-items: center;
  max-width: var(--max); width: 100%; margin: 0 auto;
  padding: 14px 20px;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--ink); text-decoration: none;
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: .85rem; font-weight: 600;
  border-radius: 6px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.menu-toggle {
  display: none; background: transparent; border: 0;
  font-size: 1.5rem; cursor: pointer; color: var(--ink);
}

@media (max-width: 993px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-elev); padding: 24px;
    border-bottom: 1px solid var(--line); gap: 18px;
  }
  .menu-toggle { display: block; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 12px;
  font-family: var(--sans);
  font-size: .95rem; font-weight: 600;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover { background: var(--accent); color: white; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); background: var(--bg-elev); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); color: white; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
}
.hero h1 em {
   color: var(--accent);
       font-weight: bolder;
       font-style: normal;
}

.hero .lead {
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  color: var(--muted); font-size: .9rem;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

/* Decorative grid bg */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  opacity: .6;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

/* =========================================================
   Sections
   ========================================================= */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.dark {
  background: var(--bg-dark);
  color: var(--bg);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--bg); }
section.dark h2 em {color: #ffff;
       font-weight: bolder;
       font-style: normal; }
section.dark p { color: #B8C1D1; }
section.dark .eyebrow { color: #ffffff; }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 em { color: var(--accent);
       font-weight: bolder;
       font-style: normal; }

/* =========================================================
   Cards / Grids
   ========================================================= */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .2s;
}

.card-seconf{
  border-top: 9px solid black;
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 11px;
}
.blog-meta .read {
    font-weight: 600;
    color: var(--ink);
}
.card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 12px; }
.card .card-meta {
  display: flex; gap: 12px; margin-top: 16px;
  font-family: var(--mono); font-size: .78rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: .05em;
      justify-content: space-between;
}
.card ul { list-style: none; margin: 16px 0; padding: 0; }
.card ul li {
  padding-left: 22px; position: relative;
  font-size: .95rem; color: var(--ink-soft);
  margin-bottom: 6px;
}
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.4rem;
  margin-bottom: 18px;
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 40px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 28px; gap: 24px; } }
.stat-num {
  font-family: var(--serif); font-size: 2.5rem; color: var(--ink);
  line-height: 1; margin-bottom: 8px;
}
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label { font-size: .85rem; color: var(--muted); }

/* Trust strip */
.trust-strip {
  padding: 32px 0;
  border-block: 1px solid var(--line-soft);
}
.trust-strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.trust-logos { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-logo {
  font-family: var(--serif); font-size: 1.1rem; color: var(--muted-2);
  letter-spacing: .03em;
}

/* =========================================================
   Tables
   ========================================================= */
.data-table-wrap {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.data-table-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--line-soft);
}
.data-table-head .badge {
  font-family: var(--mono); font-size: .78rem;
  color: var(--success); font-weight: 600;
}
table.data {
  width: 100%; border-collapse: collapse;
  font-size: .9rem;
}
table.data th, table.data td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
table.data th {
  font-family: var(--mono); font-size: .75rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 500;
  background: var(--bg);
}

table.data td { color: var(--ink-soft); }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--bg); }
.data-table-wrap.scroll { overflow-x: auto; }

/* Comparison table */
table.compare { width: 100%; border-collapse: separate; border-spacing: 0; }
table.compare th, table.compare td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
table.compare th {
  font-family: var(--sans); font-weight: 600; color: var(--ink);
  background: var(--bg);
}
table.compare th.us { background: var(--accent-soft); color: var(--accent-dark); }
table.compare td.check { color: var(--success); font-weight: 600; }
table.compare td.cross { color: var(--muted-2); }

/* =========================================================
   Form
   ========================================================= */
.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  padding: 12px 14px;
  font-family: var(--sans); font-size: .95rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  background: white;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: .82rem; color: var(--muted);
  margin-top: 12px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  font-weight: 600; font-size: 1.05rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--serif); font-size: 1.6rem;
  color: var(--accent); transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--muted); }

/* =========================================================
   Pricing
   ========================================================= */
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--bg-dark); color: var(--bg);
  border-color: var(--ink);
  transform: scale(1.02);
}
.price-card.featured h3 { color: var(--bg); }
.price-card.featured p { color: #B8C1D1; }
.price-card.featured ul li { color: #D1D5DB; }
.price-tag {
  font-family: var(--serif); font-size: 2.5rem;
  margin: 16px 0; color: var(--ink);
}
.price-card.featured .price-tag { color: var(--bg); }
.price-tag small { font-family: var(--sans); font-size: 1rem; color: var(--muted); }
.price-card.featured .price-tag small { color: var(--muted-2); }
.price-card ul {
  list-style: none; margin: 20px 0; padding: 0;
  flex-grow: 1;
}
.price-card ul li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: .95rem; color: var(--ink-soft);
}
.price-card ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent);
  font-weight: 700;
}
.price-card.featured ul li::before { color: #FBBF24; }
.badge-popular {
  position: absolute; top: -10px; right: 24px;
  border: 2px solid #d9d9d9;
  background: var(--accent); color: white;
  padding: 4px 12px; border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  font-family: var(--mono); letter-spacing: .05em;
  text-transform: uppercase;
}
.price-card { position: relative; }

/* =========================================================
   Footer
   ========================================================= */
footer.site {
  background: var(--bg-dark); color: #B8C1D1;
  padding: 64px 0 32px;
  /* margin-top: 80px; */
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: var(--max); margin: 0 auto;
  padding: 0 24px 40px;
  border-bottom: 1px solid #1F2937;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer.site h5 {
  font-family: var(--sans); font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: white; margin-bottom: 16px;
}
footer.site ul { list-style: none; padding: 0; }
footer.site ul li { margin-bottom: 8px; }
footer.site a { color: #B8C1D1; font-size: .92rem; }
footer.site a:hover { color: white; }
.footer-brand { font-family: var(--serif); color: white; font-size: 1.5rem; margin-bottom: 12px; }
.footer-brand-text { color: white; font-size: .92rem; max-width: 320px; line-height: 1.6; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 24px 24px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--muted-2); font-size: .85rem;
}
.footer-bottom p{
  color: #aeb7c7;
  font-size: 10px;
}

@media (max-width: 650px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom p{font-size: 10px;}}

/* =========================================================
   Article (blog/service body)
   ========================================================= */
.article {
  max-width: 760px; margin: 0 auto; padding: 0 24px;
}
.article h2 { margin-top: 56px; }
.article h3 { margin-top: 36px; font-family: var(--sans); font-weight: 700; font-size: 1.35rem; }
.article p { font-size: 1.05rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.25rem; }
.article ul, .article ol { margin-bottom: 1.25rem; padding-left: 24px; }
.article ul li, .article ol li { margin-bottom: 8px; color: var(--ink-soft); }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 24px;
  margin: 24px 0;
  font-family: var(--serif); font-size: 1.3rem; font-style: italic;
  color: var(--ink);
}
.article code {
  font-family: var(--mono); font-size: .9em;
  background: var(--line-soft); padding: 2px 6px;
  border-radius: 4px;
}
.article pre {
  background: var(--bg-dark); color: #E5E7EB;
  padding: 20px; border-radius: var(--r-md);
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.article pre code { background: transparent; padding: 0; color: inherit; }
.article-meta {
  font-family: var(--mono); font-size: .82rem;
  color: var(--muted); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* CTA banner */
.cta-banner {
  background: var(--ink); color: var(--bg);
  padding: 64px 0;
  margin-top: 56px;
}
.cta-banner-inner {
  max-width: 880px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner h2 em { color: #ffffff;
    font-style: normal;font-weight: bolder; }
.cta-banner p { color: #B8C1D1; margin-bottom: 28px; font-size: 1.1rem; }
.cta-banner .btn-primary {
  background: #ffffff;
    color: #0a0e1a;
}


@media (max-width: 650px) { .btn-primary { display: none; } }
/* Breadcrumbs */
.crumbs {
  font-family: var(--mono); font-size: .82rem;
  color: var(--muted); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .05em;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

/* Code block / data preview */
.code-preview {
  background: var(--bg-dark); color: #E5E7EB;
  padding: 24px; border-radius: var(--r-lg);
  font-family: var(--mono); font-size: .85rem;
  overflow-x: auto;
  line-height: 1.7;
}
.code-preview .k { color: #FBBF24; }
.code-preview .s { color: #86EFAC; }
.code-preview .n { color: #93C5FD; }
.code-preview .c { color: var(--muted-2); font-style: italic; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.hide-mobile { }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease-out both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: all .2s;
}
.testimonial-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -8px; left: 20px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
}
.testimonial-stars {
  color: var(--accent);
  margin-bottom: 14px;
  font-size: .95rem;
  letter-spacing: .15em;
  position: relative; z-index: 1;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.3;
}

/* =========================================================
   Case Studies
   ========================================================= */
.case-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.case-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.case-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.case-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 5px 11px;
  border-radius: 4px;
  margin-bottom: 18px;
  align-self: flex-start;
  font-weight: 600;
}
.case-headline {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}
.case-result {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.case-result em {
  color: var(--accent);
  font-style: normal;
}
.case-result-label {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.case-body {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  flex-grow: 1;
}
.case-body p {
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.case-body strong.case-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  display: block;
  margin-top: 14px;
  margin-bottom: 4px;
  font-family: var(--mono);
}
.case-body strong.case-label:first-child { margin-top: 0; }

/* Logo strip (clients) */
.logo-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.logo-strip-label {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.fake-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted-2);
  letter-spacing: .03em;
}

/* =========================================================
   Featured Services Section
   ========================================================= */
.featured-services {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
  padding: 72px 0;
  position: relative;
}
.featured-services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .featured-grid { grid-template-columns: 1fr; }
}
.featured-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all .2s;
  min-height: 240px;
}
.featured-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.featured-card .badge-hot {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-block;
  font-family: var(--mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: white;
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 4px;
  font-weight: 700;
}
.featured-card .badge-new {
  background: var(--ink);
}
.featured-icon-big {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.featured-card h3 {
  font-size: 1.15rem;
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.featured-card p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
  flex-grow: 1;
}
.featured-card .featured-meta {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent-dark);
  letter-spacing: .03em;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.featured-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
}
.featured-card:hover .arrow-link span { transform: translateX(3px); }
.featured-card .arrow-link span { transition: transform .2s; display: inline-block; }


tr{
  background: white;
}



.new-footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    column-gap: 2rem;
    list-style: none;
    padding-left: 0;
}

.new-footer-social-icons li a {
    height: 40px;
    width: 40px;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 0.6s;
    border-radius: 100%;
    background-color: #282727;
    color: #fff;
    text-decoration: none;
}

.new-footer-social-icons li:nth-child(1):hover a{
    background-color: white;
    color: #000;
    box-shadow: 0 0 20px #fff;
}

.new-footer-social-icons li:nth-child(2):hover a {
    background-color: white;
    color: #e1306c;
    box-shadow: 0 0 20px #fff;
}
.new-footer-social-icons li:nth-child(3):hover a {
    background-color: white;
    color: #1877f2;
    box-shadow: 0 0 20px #fff;
}

.new-footer-social-icons li:nth-child(4):hover a {
    background-color: white;
    color: #000;
    box-shadow: 0 0 20px #fff;
}
.new-footer-social-icons li:nth-child(5):hover a {
    background-color: white;
    color: #bd081c;
    box-shadow: 0 0 20px #fff;
}


.jul-footer-client {
    margin: 30px auto;
    max-width: 1650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    column-gap: 30px;
}

.jul-footer-client-logo {
    width: 116px;
    height: auto;
    margin: 5px 16px;
    margin-left: 0;
}

.jul-footer-client-logo a {
    height: 100%;
    display: block;
}

.new-footer-pages{
      margin-top: 30px;

}

.em-did-white{color:white}

.hero-inner-main-index{
  display: flex;
}

.hero-left-side-section{
  width: 50%;
}
.hero-right-side-section{
  width: 50%;
  display: flex;
}

.normal-textt{
  margin-top: 10px;
  text-align: center;
}

.normal-divvv{
  display: flex;
  
    flex-direction: column;

  justify-content: center;
  align-items: center;
}

.main-image-videoo{
    max-width: 688px;
    width: 100%;
}

@media (max-width:993px){
  .hero-inner-main-index{
    flex-direction: column;
  }
  .hero-left-side-section{
  width: 100%;
}
.hero-right-side-section{
  width: 100%;
  justify-content: center;
}

}




  .webdatascraping-j-matter-section {
    background: #f2f2f0;
    padding: 80px 5%;
  }
 
  .webdatascraping-j-matter-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .webdatascraping-j-matter-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
  }
 
  .webdatascraping-j-matter-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    max-width: 520px;
    margin-bottom: 18px;
  }
 
  .webdatascraping-j-matter-subtext {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 48px;
  }
 
  .webdatascraping-j-matter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
 
  .webdatascraping-j-matter-card {
    background: #fff;
    border: 1px solid #e4e4e0;
    border-radius: 12px;
    padding: 20px 16px;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
 
  .webdatascraping-j-matter-card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
 
  .webdatascraping-j-matter-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
  }
 
  .webdatascraping-j-matter-card-label {
    font-size: 12px;
    color: #888;
  }
 
  @media (max-width: 900px) {
    .webdatascraping-j-matter-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
 
  @media (max-width: 560px) {
    .webdatascraping-j-matter-section {
      padding: 56px 5%;
    }
    .webdatascraping-j-matter-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }





    .apple-new-jkl-section {
    padding: 80px 5%;
    background: #f2f2f0;
  }
 
  .apple-new-jkl-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
 
  .apple-new-jkl-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
  }
 
  .apple-new-jkl-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 18px;
  }
 
  .apple-new-jkl-subtext {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 28px;
  }
 
  .apple-new-jkl-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
 
  .apple-new-jkl-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
 
  .apple-new-jkl-check-icon {
    color: #111;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  /* Dashboard card */
  .apple-new-jkl-dashboard {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
  }
 
  .apple-new-jkl-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
 
  .apple-new-jkl-dash-title {
    font-size: 13px;
    color: #888;
    font-family: 'SF Mono', 'Fira Code', monospace;
  }
 
  .apple-new-jkl-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #4ade80;
    font-weight: 600;
  }
 
  .apple-new-jkl-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
  }
 
  /* Bar chart */
  .apple-new-jkl-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
    margin-bottom: 20px;
    padding: 0 4px;
  }
 
  .apple-new-jkl-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to bottom, #d0d0d0, #707070);
    min-width: 0;
  }
 
  /* Table rows */
  .apple-new-jkl-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #2e2e2e;
  }
 
  .apple-new-jkl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #2e2e2e;
  }
 
  .apple-new-jkl-row-label {
    font-size: 13px;
    color: #ccc;
    font-family: 'SF Mono', 'Fira Code', monospace;
  }
 
  .apple-new-jkl-row-val {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
  }
 
  .apple-new-jkl-row-val.apple-new-jkl-green {
    color: #4ade80;
  }
 
  /* Responsive */
  @media (max-width: 820px) {
    .apple-new-jkl-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .apple-new-jkl-dashboard {
      max-width: 540px;
      margin: 0 auto;
      width: 100%;
    }
  }
 
  @media (max-width: 480px) {
    .apple-new-jkl-section {
      padding: 56px 5%;
    }
  }

  span {
    font-size: 12px;
}






.newDomain-badges {
  padding: 46px 0;
  text-align: center;
  background: #F6F6F7;
  border-top: 1px solid #E3E3E5;
  border-bottom: 1px solid #E3E3E5;
}

.newDomain-badges .newDomain-blbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #6E6E73;
  margin-bottom: 22px;
}

.newDomain-badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
      margin-top: 30px;
}

.newDomain-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid #E3E3E5;
  border-radius: 10px;
  padding: 18px 26px;
  background: #FFFFFF;
  min-width: 230px;
  transition: .18s ease;
}

.newDomain-badge:hover {
  border-color: #0B0B0C;
  transform: translateY(-3px);
}

.newDomain-badge-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B0B0C;
}

.newDomain-badge .newDomain-stars {
  font-size: 12px;
  letter-spacing: 1px;
  color: #0B0B0C;
}

.newDomain-badge .newDomain-rt {
  font-size: 11px;
  color: #6E6E73;
}

.card .ic {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.displaydiv{
     display: flex;
    margin-bottom: 30px;
    justify-content: space-between;
}

.btnnntext{
  color: white;
}