/* ============================================================
   MEESHO LABEL CROPPER — NITIKA DARK BRUTALIST STYLE
   Fonts: Syne (display) + DM Mono (body)
   Dark bg | Orange accent | Grid overlay | Zero glitch
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --card: #1a1a24;
  --border: #2a2a3a;
  --border-glow: rgba(255,107,53,0.35);
  --accent: #ff6b35;
  --accent-2: #ffd23f;
  --accent-meesho: #c850f0;
  --accent-flip: #3b8aff;
  --text: #e8e8f0;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b8a;
  --success: #36d399;
  --glow: rgba(255,107,53,0.15);
  --glow-strong: rgba(255,107,53,0.30);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.7);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-height: 64px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark only — no light mode */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Grid background (NITIKA style) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Radial glow top */
body::after {
  content: '';
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

p { line-height: 1.7; color: var(--text-secondary); font-size: 0.88rem; }
a { color: inherit; text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ── NAVBAR ── */
.prem-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height); z-index: 1000;
  display: flex; align-items: center; padding: 0 24px;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.prem-nav.scrolled {
  border-bottom-color: rgba(255,107,53,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
  transition: var(--transition);
  white-space: nowrap; flex-shrink: 1; min-width: 0;
}
.nav-brand span:not(.brand-dot) { 
  overflow: hidden; text-overflow: ellipsis; 
}

.nav-brand img { height: 26px; width: auto; border-radius: 4px; }
.nav-brand:hover { opacity: 0.8; }

.nav-brand .brand-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  margin-left: 2px; box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px var(--accent); transform: scale(1); }
  50% { box-shadow: 0 0 16px var(--accent); transform: scale(1.4); }
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }

.nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
  background: rgba(255,107,53,0.08);
}

.nav-links a .nav-badge {
  font-size: 0.58rem; padding: 2px 7px;
  border-radius: 20px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-badge.meesho { background: rgba(200,80,240,0.14); color: #c850f0; border: 1px solid rgba(200,80,240,0.25); }
.nav-badge.flipkart { background: rgba(59,138,255,0.14); color: #3b8aff; border: 1px solid rgba(59,138,255,0.25); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--card);
  min-width: 40px; min-height: 40px;
  justify-content: center; align-items: center;
}
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card);
  cursor: pointer; color: var(--text-muted);
  transition: var(--transition);
}
.theme-toggle:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 14px var(--glow);
  transform: scale(1.1) rotate(15deg);
}
.icon-sun { display: none !important; }
.icon-moon { display: block !important; }

/* Theme toggle */
.nav-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile Drawer */
.nav-mobile-drawer {
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  transform: translateY(-110%); opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  z-index: 1099;
}
.nav-mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile-drawer a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  color: var(--text); font-weight: 500; font-size: 0.82rem;
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile-drawer a:last-child { border-bottom: none; }
.nav-mobile-drawer a:hover { background: rgba(255,107,53,0.08); color: var(--accent); }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: var(--nav-height); min-height: 100vh; display: flex; flex-direction: column; }

/* ── HERO ── */
.hero { padding: 90px 24px 70px; text-align: center; position: relative; overflow: hidden; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.22);
  border-radius: 4px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
  font-family: var(--font-body);
}
.hero-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800; color: var(--text); margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both; letter-spacing: -0.04em;
}

.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 0.92rem; color: var(--text-muted); max-width: 520px;
  margin: 0 auto 44px; animation: fadeUp 0.7s 0.2s ease both;
  line-height: 1.8; font-family: var(--font-body);
}

.hero-cta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: var(--accent);
  color: #000; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: #ff5520; transform: translateY(-2px); box-shadow: 0 8px 24px var(--glow-strong); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: var(--card); color: var(--text);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  border: 1px solid var(--border); cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,107,53,0.06); transform: translateY(-2px); }

/* ── TOOL CARDS ── */
.tools-section { padding: 60px 24px; max-width: 1200px; margin: 0 auto; width: 100%; }

.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--text); margin-bottom: 14px; letter-spacing: -0.04em;
}

.section-sub { font-size: 0.85rem; color: var(--text-muted); max-width: 500px; font-family: var(--font-body); }

.tools-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}

.tool-card-premium {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  animation: fadeUp 0.6s ease both;
}

.tool-card-premium::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.tool-card-premium.meesho::before { background: linear-gradient(90deg, #c850f0, #ff6b35); }
.tool-card-premium.flipkart::before { background: linear-gradient(90deg, #3b8aff, #36d399); }
.tool-card-premium.amazon::before { background: linear-gradient(90deg, #ff9900, #ffd23f); }
.tool-card-premium.myntra::before { background: linear-gradient(90deg, #ff3f6c, #ff6b35); }

.tool-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(255,107,53,0.08);
}

.tool-card-img { height: 48px; width: auto; object-fit: contain; object-position: left; }

.tool-card-premium h2, .tool-card-premium h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em;
}

.tool-card-premium p { font-size: 0.82rem; margin: 0; color: var(--text-muted); }

.tool-card-premium .btn-tool {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  color: #000; border: none; cursor: pointer;
  transition: var(--transition); align-self: flex-start; margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.tool-card-premium.meesho .btn-tool { background: #c850f0; color: #fff; }
.tool-card-premium.flipkart .btn-tool { background: #3b8aff; color: #fff; }
.tool-card-premium.amazon .btn-tool { background: #ff9900; color: #000; }
.tool-card-premium.myntra .btn-tool { background: #ff3f6c; color: #fff; }
.tool-card-premium .btn-tool:hover { transform: scale(1.04); filter: brightness(1.1); }

/* ── FEATURES ── */
.features-section { padding: 80px 24px; background: var(--surface); position: relative; overflow: hidden; }
.features-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent); }
.features-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 48px; }

.feature-card-premium {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 20px;
  transition: var(--transition); animation: fadeUp 0.6s ease both;
}
.feature-card-premium:hover { border-color: rgba(255,107,53,0.3); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }

.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
  background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.18);
  transition: var(--transition);
}
.feature-card-premium:hover .feature-icon-wrap { background: rgba(255,107,53,0.15); box-shadow: 0 0 20px rgba(255,107,53,0.2); }

.feature-card-premium h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card-premium p { font-size: 0.80rem; line-height: 1.65; }

/* ── STATS STRIP ── */
.stats-strip { padding: 48px 24px; max-width: 1200px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.stat-item { background: var(--surface); padding: 28px 24px; text-align: center; transition: var(--transition); }
.stat-item:hover { background: rgba(255,107,53,0.05); }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); display: block; letter-spacing: -0.04em; }
.stat-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); }

/* ── FOOTER ── */
.prem-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 24px 32px; margin-top: auto; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 14px; letter-spacing: -0.02em; }
.footer-brand img { height: 24px; border-radius: 4px; }
.footer-tagline { font-size: 0.80rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--border); color: var(--text-muted); transition: var(--transition); }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #000; transform: translateY(-2px); }
.footer-col h6 { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.80rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; font-family: var(--font-body); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.80rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-bottom a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ── INNER PAGES ── */
.page-hero { padding: 70px 24px 50px; max-width: 860px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 14px; }
.page-hero .page-sub { font-size: 0.88rem; color: var(--text-muted); }
.prose-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; max-width: 860px; margin: 0 auto 60px; }
.prose-card p { margin-bottom: 14px; font-size: 0.88rem; }
.prose-card p:last-child { margin-bottom: 0; }
.prose-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin: 24px 0 10px; }
.prose-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
.prose-card ul, .prose-card ol { padding-left: 18px; }
.prose-card li { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.animate-float { animation: float 4s ease infinite; }
.fade-in { animation: fadeIn 0.5s ease both; }
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.12s; }
.stagger-3 { animation-delay: 0.19s; }
.stagger-4 { animation-delay: 0.26s; }
.stagger-5 { animation-delay: 0.33s; }

.breadcrumb-row { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 16px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.06em; }
.breadcrumb-row a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb-row a:hover { color: var(--accent); }
.breadcrumb-row .sep { color: var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .nav-links { display: none; } .nav-hamburger { display: flex; } }
@media (max-width: 600px) { .hero { padding: 58px 16px 48px; } .footer-grid { grid-template-columns: 1fr; gap: 22px; } .prose-card { padding: 24px 20px; } .footer-bottom { flex-direction: column; text-align: center; } .tools-section, .features-inner { padding-left: 16px; padding-right: 16px; } }

/* ── MOBILE NAVBAR FIXES ── */
@media (max-width: 480px) {
  .prem-nav { padding: 0 12px; }
  .nav-container { gap: 8px; }
  .nav-brand {
    font-size: 0.82rem;
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }
  .nav-brand img { height: 22px; flex-shrink: 0; }
  .nav-brand span:not(.brand-dot) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 130px;
  }
  .nav-actions { gap: 6px; flex-shrink: 0; }
  .theme-toggle { width: 32px; height: 32px; }
  .nav-hamburger { min-width: 36px; min-height: 36px; padding: 8px; }
}

/* ── HERO ORBS ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 6s ease infinite;
}
.hero-orb-1 {
  width: 420px; height: 420px;
  background: rgba(91,94,244,0.10);
  top: -80px; right: -60px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 280px; height: 280px;
  background: rgba(139,92,246,0.08);
  bottom: 40px; left: -80px;
  animation-delay: 2s;
}
[data-theme="dark"] .hero-orb-1 { background: rgba(91,94,244,0.18); }
[data-theme="dark"] .hero-orb-2 { background: rgba(139,92,246,0.14); }

/* ── PLATFORM LOGOS ── */
.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.platform-logos span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.platform-pill img { height: 18px; width: auto; }
.platform-pill:hover { border-color: var(--border-glow); color: var(--text-primary); transform: translateY(-2px); }

/* ── TOOLS GRID 2-COL ── */
.tools-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.tools-grid-2 .tool-card-premium { padding: 36px 32px; }
.tools-grid-2 .tool-card-img { height: 38px; width: auto; margin-bottom: 18px; }
.tools-grid-2 .btn-tool { margin-top: 24px; font-size: 0.9rem; padding: 12px 24px; }

@media (max-width: 640px) {
  .tools-grid-2 { grid-template-columns: 1fr; }
}
