/* ============================================
   HAFIZ SEO TOOLS — Design System
   Premium Light SaaS Theme
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8faf8;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.6);
  --bg-glass-hover: rgba(255, 255, 255, 0.85);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --accent-primary: #22c55e;
  --accent-dark: #15803d;
  --accent-light: #86efac;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-green: #22c55e;
  --accent-orange: #f59e0b;
  --accent-pink: #ec4899;

  --gradient-primary: linear-gradient(135deg, #22c55e, #15803d);
  --gradient-hero: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #ecfdf5 100%);
  --gradient-card: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(21, 128, 61, 0.06));
  --gradient-glow: linear-gradient(135deg, #22c55e40, #15803d40);

  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-accent: rgba(34, 197, 94, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 4px 30px rgba(34, 197, 94, 0.12);
  --shadow-glow-hover: 0 8px 50px rgba(34, 197, 94, 0.2);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4.5rem;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-max: 1280px;
  --container-padding: 0 1.5rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: var(--fs-4xl);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  /* Frosted white chrome at all times.
     Reason: the logo PNG has an opaque white plate baked into the
     artwork, so a transparent navbar makes the logo look like a
     floating sticker over the hero content. A consistent white
     surface keeps the chrome readable + makes the logo blend in. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: var(--transition-base);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo .logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.navbar-logo .footer-logo-img {
  height: 34px;
  filter: brightness(0) invert(1);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
  border-radius: 1px;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}

.btn-secondary {
  background: rgba(241, 245, 249, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(226, 232, 240, 0.9);
  border-color: var(--border-accent);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: var(--fs-base);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.navbar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}

/* Animated mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 20% 50%, rgba(34, 197, 94, 0.1), transparent),
    radial-gradient(ellipse 500px 500px at 80% 20%, rgba(21, 128, 61, 0.08), transparent),
    radial-gradient(ellipse 400px 400px at 60% 80%, rgba(134, 239, 172, 0.1), transparent);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(34, 197, 94, 0.25);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: var(--fs-6xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: white;
}

.hero-trust-avatars .avatar:first-child { margin-left: 0; }
.hero-trust-avatars .avatar:nth-child(1) { background: var(--accent-blue); }
.hero-trust-avatars .avatar:nth-child(2) { background: var(--accent-purple); }
.hero-trust-avatars .avatar:nth-child(3) { background: var(--accent-cyan); }
.hero-trust-avatars .avatar:nth-child(4) { background: var(--accent-green); }
.hero-trust-avatars .avatar:nth-child(5) { background: var(--accent-orange); }

.hero-trust-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.hero-trust-text strong {
  color: var(--text-primary);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Right — Tool Constellation with Central Hub */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

/* ---- Central Hub ---- */
.hero-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hub-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #064e3b, #065f46);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(34, 197, 94, 0.12),
    0 0 0 20px rgba(34, 197, 94, 0.06),
    0 12px 50px rgba(34, 197, 94, 0.3);
  position: relative;
  z-index: 3;
}

.hub-logo {
  width: 72px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}

.hub-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #86efac;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hub-ring-1 {
  width: 200px;
  height: 200px;
  border: 1.5px solid rgba(34, 197, 94, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.hub-ring-2 {
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(34, 197, 94, 0.1);
  animation: ringPulse 4s ease-in-out 0.7s infinite;
}

.hub-ring-3 {
  width: 460px;
  height: 460px;
  border: 1px solid rgba(34, 197, 94, 0.05);
  animation: ringPulse 4s ease-in-out 1.4s infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

/* ---- Tool Cards with Logos ---- */
.hero-visual .tool-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  z-index: 3;
  cursor: default;
}

.hero-visual .tool-card:hover {
  transform: translate(-50%, -50%) translateY(-6px) scale(1.08) !important;
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
}

.tool-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: contain;
  flex-shrink: 0;
}

.tool-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
}

/* ---- Circular orbit (8 cards at 45° intervals) ---- */
/* Each card centered at its orbit point via translate(-50%, -50%) */
/* Elliptical orbit: ~42% horizontal, ~42% vertical from center */

.tool-pos-1 { top: 6%;  left: 50%; transform: translate(-50%, -50%); animation: floatA 5s ease-in-out infinite; }          /* N - top center */
.tool-pos-2 { top: 16%; left: 85%; transform: translate(-50%, -50%); animation: floatB 5.5s ease-in-out 0.4s infinite; }   /* NE */
.tool-pos-3 { top: 50%; left: 96%; transform: translate(-50%, -50%); animation: floatA 6s ease-in-out 0.8s infinite; }     /* E - right */
.tool-pos-4 { top: 84%; left: 85%; transform: translate(-50%, -50%); animation: floatB 5s ease-in-out 1.2s infinite; }     /* SE */
.tool-pos-5 { top: 94%; left: 50%; transform: translate(-50%, -50%); animation: floatA 5.5s ease-in-out 1.6s infinite; }   /* S - bottom center */
.tool-pos-6 { top: 84%; left: 15%; transform: translate(-50%, -50%); animation: floatB 6s ease-in-out 2s infinite; }       /* SW */
.tool-pos-7 { top: 50%; left: 4%;  transform: translate(-50%, -50%); animation: floatA 5s ease-in-out 2.4s infinite; }     /* W - left */
.tool-pos-8 { top: 16%; left: 15%; transform: translate(-50%, -50%); animation: floatB 5.5s ease-in-out 2.8s infinite; }   /* NW */

@keyframes floatA {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes floatB {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   CATEGORIES / WHAT WE OFFER
   ============================================ */
.categories {
  padding: var(--section-padding);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
}

.category-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.category-card:nth-child(1) .category-icon { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.category-card:nth-child(2) .category-icon { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.category-card:nth-child(3) .category-icon { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.category-card:nth-child(4) .category-icon { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.category-card:nth-child(5) .category-icon { background: rgba(245, 158, 11, 0.15); color: var(--accent-orange); }
.category-card:nth-child(6) .category-icon { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }

.category-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.category-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.category-tools .tool-tag {
  padding: 0.25rem 0.6rem;
  background: rgba(34, 197, 94, 0.05);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: var(--transition-base);
}

.category-tools .tool-tag:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   LOGO MARQUEE
   ============================================ */
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.marquee-label {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.marquee-item:hover {
  color: var(--text-primary);
  border-color: var(--border-accent);
  background: var(--bg-glass-hover);
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-row-2 .marquee-track {
  animation-direction: reverse;
  margin-top: 1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #15803d, #059669);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.step-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.step-methods span {
  padding: 0.2rem 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: #059669;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.pricing-toggle span.active {
  color: var(--text-primary);
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: var(--transition-base);
}

.toggle-switch.usd::after {
  left: 27px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-accent);
}

.pricing-card.featured {
  border: 2px solid var(--accent-green);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06), rgba(255, 255, 255, 0.9));
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(34, 197, 94, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-plan-name {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-value {
  font-size: var(--fs-5xl);
  font-weight: 900;
  line-height: 1;
}

.pricing-period {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.pricing-tools-count {
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--accent-dark);
  font-weight: 600;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.pricing-features li .check {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* Expandable tool list */
.pricing-tools-expand {
  margin-top: 1rem;
}

.pricing-tools-expand summary {
  cursor: pointer;
  font-size: var(--fs-xs);
  color: var(--accent-dark);
  font-weight: 600;
  list-style: none;
  text-align: center;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.pricing-tools-expand summary:hover {
  background: rgba(34, 197, 94, 0.1);
}

.pricing-tools-expand summary::-webkit-details-marker { display: none; }

.pricing-tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.pricing-tools-list span {
  padding: 0.2rem 0.5rem;
  background: rgba(34, 197, 94, 0.04);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

/* ============================================
   INDIVIDUAL TOOLS SECTION
   ============================================ */
.individual-tools {
  padding: var(--section-padding);
}

.tools-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tool-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-base);
  display: block;
  text-decoration: none;
  color: inherit;
}

.tool-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: inherit;
}

.tool-item-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.tool-item-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.tool-item h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tool-item .tool-price {
  font-size: var(--fs-sm);
  color: var(--accent-green);
  font-weight: 700;
  margin-bottom: 1rem;
}

.tool-item .btn {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: var(--fs-xs);
}

/* ============================================
   SAVINGS COMPARISON
   ============================================ */
.savings {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.savings-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.savings-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08), transparent 70%);
}

.savings-card > * {
  position: relative;
  z-index: 1;
}

.savings-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.savings-box {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
}

.savings-box .label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.savings-box .amount {
  font-size: var(--fs-4xl);
  font-weight: 900;
  line-height: 1.2;
}

.savings-box.retail .amount {
  color: #ef4444;
  text-decoration: line-through;
}

.savings-box.ours .amount {
  color: var(--accent-green);
}

.savings-vs {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--text-muted);
}

.savings-bar {
  margin-top: 2rem;
}

.savings-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.savings-bar-track {
  height: 12px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.savings-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 2s ease;
}

.savings-bar-fill.animated {
  width: 98%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--accent-orange);
  font-size: var(--fs-sm);
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: white;
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: var(--accent-blue); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--accent-purple); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--accent-cyan); }
.testimonial-card:nth-child(4) .testimonial-avatar { background: var(--accent-green); }
.testimonial-card:nth-child(5) .testimonial-avatar { background: var(--accent-orange); }
.testimonial-card:nth-child(6) .testimonial-avatar { background: var(--accent-pink); }

.testimonial-name {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.testimonials-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-glass-hover);
}

.faq-question .faq-icon {
  font-size: var(--fs-xl);
  color: var(--accent-green);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #14532d 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 400px at 20% 50%, rgba(34, 197, 94, 0.15), transparent),
    radial-gradient(circle 300px at 80% 50%, rgba(134, 239, 172, 0.08), transparent);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-size: var(--fs-4xl);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-banner p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0c1a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: #94a3b8;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  color: #e2e8f0;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff;
}

.footer-col h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #f1f5f9;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: var(--fs-sm);
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #86efac;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--fs-sm);
  color: #94a3b8;
}

.footer-contact-item .icon {
  color: #86efac;
}

.footer-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-payment span {
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: #94a3b8;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: var(--fs-sm);
  color: #64748b;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #86efac;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
  animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: var(--fs-5xl);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .savings-comparison {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .savings-vs {
    font-size: var(--fs-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    gap: 1rem;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .navbar-cta .btn {
    display: none;
  }

  .hero-title {
    font-size: var(--fs-4xl);
  }

  .hero-description {
    font-size: var(--fs-base);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps-grid::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section-title {
    font-size: var(--fs-3xl);
  }

  .cta-banner h2 {
    font-size: var(--fs-3xl);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: var(--fs-3xl);
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .savings-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   TOOL PAGE SECTIONS v3
   --------------------------------------------------------------------------
   Appended styles for the regenerated tool pages (hero + trust bar +
   how-group-buy + testimonials + related tools + CTA banner).

   Each tool page has an inline <style> block that duplicates the OLD hero
   rules. Those rules are stylesheet-equivalent specificity but appear in
   <head> AFTER /index.css, so they would override us. We use !important
   on the hero rules below to beat that inline dead code.

   Per-tool brand color: each <section class="tool-hero"> sets
   --tool-brand (and --tool-brand-dark) inline as a CSS variable. We
   default to Hafiz green.
   ========================================================================== */

/* Fluid display typography (applies at every width, including desktop).
   These use clamp() so we don't need per-breakpoint font-size rules. */
.hero-title {
  font-size: clamp(1.875rem, 5vw + 1rem, 3.75rem) !important;
  overflow-wrap: anywhere;
}
.hero-description {
  font-size: clamp(1rem, 1.2vw + 0.8rem, 1.125rem) !important;
  overflow-wrap: anywhere;
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 2.25rem) !important;
  overflow-wrap: anywhere;
}
.tool-hero-title {
  font-size: clamp(1.875rem, 4vw + 1rem, 3.25rem) !important;
  overflow-wrap: anywhere;
}

/* ---------------- NAVBAR on tool pages (dark hero) ---------------- */
/* Tool pages have a dark hero; the default navbar uses dark text designed
   for the light homepage bg. Flip to light when not yet scrolled. */
body:has(.tool-hero) .navbar:not(.scrolled) .navbar-logo .logo-img {
  filter: brightness(0) invert(1) !important;
}
body:has(.tool-hero) .navbar:not(.scrolled) .navbar-links a {
  color: rgba(255, 255, 255, 0.85) !important;
}
body:has(.tool-hero) .navbar:not(.scrolled) .navbar-links a:hover {
  color: #ffffff !important;
}
body:has(.tool-hero) .navbar:not(.scrolled) #nav-login-btn,
body:has(.tool-hero) .navbar:not(.scrolled) .btn-secondary {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
body:has(.tool-hero) .navbar:not(.scrolled) #nav-login-btn:hover,
body:has(.tool-hero) .navbar:not(.scrolled) .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

/* ------------------------------ TOOL HERO v3 ----------------------------- */

.tool-hero {
  --tool-brand: var(--tool-brand, #22c55e);
  --tool-brand-dark: var(--tool-brand-dark, #15803d);
  position: relative !important;
  min-height: auto !important;
  display: block !important;
  padding: 6rem 0 5rem !important;
  background: radial-gradient(ellipse 1200px 900px at top right, #0c4a6e, #0f172a) !important;
  color: #f8fafc !important;
  overflow: hidden !important;
  isolation: isolate;
}

.tool-hero::before {
  content: '' !important;
  position: absolute !important;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.28), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  animation: none !important;
}

.tool-hero::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 45%;
  height: 70%;
  /* Tint the lower-left glow with the tool's brand color. color-mix() works
     on modern browsers; fallback is plain hafiz green. */
  background: radial-gradient(circle at center,
    color-mix(in srgb, var(--tool-brand, #22c55e) 22%, transparent),
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@supports not (background: color-mix(in srgb, red, blue)) {
  .tool-hero::after {
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.15), transparent 70%);
  }
}

/* Brand accent ring around the showcase tile (visible per-tool color) */
.tool-hero-showcase {
  position: relative;
}
.tool-hero-showcase::after {
  content: '';
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--tool-brand, #22c55e) 40%, transparent);
  background: radial-gradient(circle at 50% 50%,
    color-mix(in srgb, var(--tool-brand, #22c55e) 18%, transparent),
    transparent 65%);
  pointer-events: none;
  z-index: -1;
  animation: hafiz-float-soft 8s ease-in-out infinite;
}

.tool-hero .container {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) !important;
  gap: 4rem !important;
  align-items: center !important;
  max-width: 1280px;
}

.tool-hero-content {
  min-width: 0;
}

.tool-hero-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.tool-hero-logo-tile {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.tool-hero-logo-tile img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tool-hero-rating {
  color: #facc15;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tool-hero-rating span {
  color: rgba(248, 250, 252, 0.75);
  font-weight: 500;
  margin-left: 0.5rem;
  letter-spacing: normal;
  font-size: 0.85rem;
}

.tool-hero-title {
  color: #ffffff !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  margin: 0 !important;
  letter-spacing: -0.03em !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.tool-hero-tagline {
  font-size: 1.125rem !important;
  line-height: 1.6 !important;
  color: rgba(226, 232, 240, 0.9) !important;
  max-width: 52ch;
  margin: 0 0 1.75rem !important;
}

/* Stats tiles with glass effect */
.tool-hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  margin-bottom: 1.75rem !important;
  max-width: 520px;
}

.tool-hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.875rem;
  padding: 0.875rem 0.75rem;
  text-align: center;
}

.tool-hero-stat .value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.tool-hero-stat:first-child .value {
  color: #22c55e;
}

.tool-hero-stat .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(226, 232, 240, 0.65);
  margin-top: 0.25rem;
}

/* Price row */
.tool-hero-price-row {
  display: flex !important;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.tool-hero-price {
  font-size: 2.75rem !important;
  font-weight: 900 !important;
  color: #22c55e !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.tool-hero-price span,
.tool-hero-price small {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: rgba(226, 232, 240, 0.7) !important;
  margin-left: 0.25rem;
}

.tool-hero-save {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 9999px;
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CTAs */
.tool-hero-ctas {
  display: flex !important;
  gap: 0.875rem !important;
  flex-wrap: wrap;
  align-items: center;
}

.tool-hero-ctas .btn-primary {
  background: linear-gradient(135deg, #22c55e, #15803d) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35) !important;
}

.tool-hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45) !important;
}

.tool-hero-ctas .btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tool-hero-ctas .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
}

/* Showcase (right column) */
.tool-hero-showcase {
  position: relative;
  justify-self: center;
  width: 280px;
  height: 280px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--tool-brand-rgb, 34, 197, 94), 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.22), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-hero-showcase::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.tool-hero-showcase-logo {
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 28px;
  display: grid;
  place-items: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
}

.tool-hero-showcase-logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.tool-hero-showcase-sticker {
  position: absolute;
  top: 10px;
  right: -8px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #ffffff;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.45);
  transform: rotate(8deg);
}

.tool-hero-showcase-sticker-bottom {
  top: auto;
  right: auto;
  bottom: 14px;
  left: -14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  transform: rotate(-6deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* ------------------------------ TRUST BAR -------------------------------- */

.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.25rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.trust-item-text {
  font-size: 0.875rem;
  color: var(--text-secondary, #475569);
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: anywhere;
}

.trust-item-text strong {
  color: var(--text-primary, #0f172a);
  font-weight: 700;
}

.trust-avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}
.trust-avatars:hover span { transform: translateY(-2px); }

/* Pakistani customer faces via deterministic pravatar IDs.
   Keep image dimensions to 64 so retina looks sharp on a 32px element. */
.trust-avatars span:nth-child(1) { margin-left: 0; background-image: url('https://i.pravatar.cc/64?img=12'); }
.trust-avatars span:nth-child(2) { background-image: url('https://i.pravatar.cc/64?img=33'); }
.trust-avatars span:nth-child(3) { background-image: url('https://i.pravatar.cc/64?img=51'); }
.trust-avatars span:nth-child(4) { background-image: url('https://i.pravatar.cc/64?img=7'); }
.trust-avatars span:nth-child(5) { background-image: url('https://i.pravatar.cc/64?img=68'); }

.trust-pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.trust-pay-methods span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-secondary, #475569);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ------------------------------ WHAT IS (centered) ----------------------- */

.what-is-centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.what-is-centered h2 {
  font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.what-is-centered p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary, #475569);
  margin: 0 auto 1.25rem;
  max-width: 68ch;
}

.what-is-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.what-is-benefit {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-primary, #0f172a);
}

.what-is-benefit .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #15803d;
}

/* ------------------------------ HOW GROUP BUY ---------------------------- */

.how-group-buy {
  padding: 6rem 0;
  background: #f8fafc;
}

.how-group-buy .container { max-width: 1280px; }

.hgb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.hgb-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem 2rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.hgb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
}

.hgb-num {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--tool-brand, #22c55e);
  opacity: 0.18;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.hgb-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.hgb-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary, #0f172a);
  position: relative;
  z-index: 1;
}

.hgb-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary, #475569);
  margin: 0;
  position: relative;
  z-index: 1;
}

.hgb-reassure {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary, #475569);
  font-style: italic;
}

/* ------------------------------ TESTIMONIALS ----------------------------- */

.testimonials {
  padding: 6rem 0;
  background: #ffffff;
}

.testimonials .container { max-width: 1280px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.testimonial-stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-primary, #0f172a);
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  background: #22c55e;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary, #0f172a);
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary, #475569);
  line-height: 1.3;
  margin-top: 2px;
}

/* ------------------------------ RELATED TOOLS ---------------------------- */

.related-tools {
  padding: 6rem 0;
  background: #f8fafc;
}

.related-tools .container { max-width: 1280px; }

.rt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.rt-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}

.rt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-color: var(--rt-brand, #22c55e);
}

.rt-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rt-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.rt-card-body {
  min-width: 0;
  flex: 1;
}

.rt-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.rt-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin: 0;
}

.rt-card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  background: rgba(var(--rt-brand-rgb, 34, 197, 94), 0.1);
  color: var(--rt-brand, #15803d);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.rt-card-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary, #475569);
  margin: 0 0 0.5rem;
}

.rt-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rt-brand, #15803d);
}

.rt-browse-all {
  text-align: center;
  margin-top: 2.5rem;
}

.browse-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--text-primary, #0f172a);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.browse-all-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

/* ------------------------------ BREADCRUMB ------------------------------- */

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover { color: #15803d; }

.breadcrumb-sep {
  color: rgba(15, 23, 42, 0.3);
}

/* =============== ICON FIX — hide overflowing text in circular buttons ==== */
/* The floating WhatsApp CTA and footer social icons are small round buttons
   with human-readable text labels ("WhatsApp", "Facebook", ...) inside.
   The labels overflow the circle. Hide the text, render an emoji glyph via
   ::before keyed off aria-label. Aria-label is preserved for screen readers. */

.whatsapp-float {
  font-size: 0 !important;
  line-height: 1 !important;
  overflow: hidden;
}
.whatsapp-float::before {
  content: '💬';
  font-size: 1.8rem;
  line-height: 1;
}

.footer-social a {
  font-size: 0 !important;
  line-height: 1 !important;
  overflow: hidden;
  position: relative;
}
.footer-social a::before {
  content: '';
  font-size: 1rem;
  line-height: 1;
}
.footer-social a[aria-label="WhatsApp"]::before    { content: '💬'; }
.footer-social a[aria-label="Facebook"]::before    { content: 'f'; font-weight: 900; font-family: Arial, sans-serif; }
.footer-social a[aria-label="Instagram"]::before   { content: '📷'; }
.footer-social a[aria-label="Telegram"]::before    { content: '✈'; }
.footer-social a[aria-label="Twitter"]::before     { content: '𝕏'; }
.footer-social a[aria-label="YouTube"]::before     { content: '▶'; }

/* The footer-contact-item's "WhatsApp" label shouldn't be zeroed — scope
   the hiding rule to anchors inside .footer-social only (already done). */

/* =============== SECTION BACKGROUNDS — subtle variation ================== */
/* Each tool-page section gets its own subtle tint + pattern so they don't
   all read as one flat white page. Backgrounds are intentionally soft;
   the content remains the focal point. */

.trust-bar {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
.what-is {
  background:
    radial-gradient(ellipse 700px 300px at 50% 0%, rgba(34, 197, 94, 0.04), transparent),
    #ffffff !important;
}
.features {
  background:
    radial-gradient(ellipse 500px 250px at 0% 100%, rgba(59, 130, 246, 0.04), transparent),
    #ffffff !important;
}
.how-group-buy {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 60%, #f0fdf4 100%) !important;
}
.comparison {
  background:
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(34, 197, 94, 0.05), transparent),
    #fafbfc !important;
}
.tool-pricing {
  background:
    radial-gradient(ellipse 600px 400px at 50% 0%, rgba(34, 197, 94, 0.06), transparent),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%) !important;
}
.testimonials {
  background:
    radial-gradient(ellipse 500px 250px at 100% 0%, rgba(168, 85, 247, 0.04), transparent),
    radial-gradient(ellipse 500px 250px at 0% 100%, rgba(236, 72, 153, 0.03), transparent),
    #ffffff !important;
}
.tool-faq {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%) !important;
}
.who-for {
  background:
    radial-gradient(ellipse 500px 300px at 50% 0%, rgba(245, 158, 11, 0.04), transparent),
    #ffffff !important;
}
.why-us {
  background:
    radial-gradient(ellipse 600px 300px at 50% 50%, rgba(21, 128, 61, 0.04), transparent),
    #f8fafc !important;
}
.related-tools {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* =============== AMBIENT ANIMATIONS ====================================== */
/* Small ambient motion so the page feels alive. All respect
   prefers-reduced-motion. No JS required. */

@keyframes hafiz-float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes hafiz-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hafiz-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes hafiz-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
}
@keyframes hafiz-bg-drift {
  0%, 100% { background-position: 50% 0%; }
  50%      { background-position: 50% 100%; }
}

/* Hero showcase tile + stickers: gentle floating */
.tool-hero-showcase-logo { animation: hafiz-float-soft 6s ease-in-out infinite; }
.tool-hero-showcase-sticker { animation: hafiz-float-soft 5s ease-in-out infinite; }
.tool-hero-showcase-sticker-bottom { animation: hafiz-float-soft 7s ease-in-out infinite reverse; }

/* Fade-up the key pieces of the hero on load */
.tool-hero-header,
.tool-hero-tagline,
.tool-hero-stats,
.tool-hero-price-row,
.tool-hero-ctas {
  animation: hafiz-fade-up 0.6s ease-out both;
}
.tool-hero-tagline      { animation-delay: 0.05s; }
.tool-hero-stats        { animation-delay: 0.12s; }
.tool-hero-price-row    { animation-delay: 0.18s; }
.tool-hero-ctas         { animation-delay: 0.24s; }

/* Primary CTAs pulse a ring occasionally to draw the eye */
.tool-hero-ctas .btn-primary,
.pricing-card-cta,
.cta-banner .btn-primary,
.whatsapp-float {
  animation: hafiz-pulse-glow 2.8s ease-in-out infinite;
}

/* How Group Buy — background drifts slowly */
.how-group-buy {
  background-size: 100% 400% !important;
  animation: hafiz-bg-drift 20s ease-in-out infinite;
}

/* Shimmer on the "12k+" stat and price numbers */
.tool-hero-stat:first-child .value,
.tool-hero-price {
  background: linear-gradient(90deg, #22c55e, #86efac, #22c55e);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hafiz-shimmer 4s linear infinite;
}

/* Feature, Group-Buy, Related-tool cards: subtle ambient border pulse
   on hover only (not continuous — would be noisy) is already handled
   via transition in earlier rules. */

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
  .tool-hero-showcase-logo,
  .tool-hero-showcase-sticker,
  .tool-hero-showcase-sticker-bottom,
  .tool-hero-header,
  .tool-hero-tagline,
  .tool-hero-stats,
  .tool-hero-price-row,
  .tool-hero-ctas,
  .tool-hero-ctas .btn-primary,
  .pricing-card-cta,
  .cta-banner .btn-primary,
  .whatsapp-float,
  .how-group-buy,
  .tool-hero-stat:first-child .value,
  .tool-hero-price {
    animation: none !important;
  }
}

/* =============== POLISH PASS — differentiated section visuals ============ */

/* ---- FEATURES: light cards with brand-colored icon chips ---------------- */
.features {
  padding: 5rem 0 !important;
  background: #ffffff !important;
}
.features .section-header { margin-bottom: 2.5rem; }
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  position: relative;
  padding: 2rem 1.75rem !important;
  background: #ffffff !important;
  border: 1px solid #eef2f7 !important;
  border-radius: 18px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.03), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(34, 197, 94, 0.35) !important;
  box-shadow: 0 14px 30px -8px rgba(34, 197, 94, 0.25) !important;
}
.feature-card:hover::before { opacity: 1; }
.feature-card .feature-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(21, 128, 61, 0.08)) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  margin-bottom: 1.25rem !important;
  color: #15803d !important;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.15);
}
.feature-card h3 {
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem !important;
  color: var(--text-primary, #0f172a) !important;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: var(--text-secondary, #475569) !important;
  margin: 0 !important;
}

/* ---- HOW GROUP BUY: process layout with big decorative numerals ---------- */
/* Distinguished from Features: tinted bg, connecting dotted line, large
   watermark numerals behind each step so users feel the progression. */
.how-group-buy {
  position: relative;
  padding: 5rem 0 !important;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%) !important;
  overflow: hidden;
}
.how-group-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 400px at 50% 0%, rgba(34, 197, 94, 0.08), transparent);
  pointer-events: none;
}
.how-group-buy .container { position: relative; z-index: 1; }
.how-group-buy .section-header { margin-bottom: 3rem; }
.hgb-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.hgb-card {
  position: relative;
  padding: 2.5rem 2rem 2rem !important;
  background: #ffffff !important;
  border: 1px solid rgba(34, 197, 94, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.08) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  overflow: hidden;
}
.hgb-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 36px -10px rgba(34, 197, 94, 0.25) !important;
  border-color: rgba(34, 197, 94, 0.35) !important;
}
.hgb-card .hgb-num {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  font-size: 5.5rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: rgba(34, 197, 94, 0.1) !important;
  letter-spacing: -0.04em;
  pointer-events: none;
  font-family: inherit;
}
.hgb-card .hgb-icon {
  font-size: 2.25rem !important;
  margin-bottom: 1rem !important;
  display: inline-flex !important;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(21, 128, 61, 0.08));
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.2);
}
.hgb-card h3 {
  font-size: 1.125rem !important;
  font-weight: 800 !important;
  margin: 0 0 0.5rem !important;
  color: var(--text-primary, #0f172a) !important;
  letter-spacing: -0.01em;
}
.hgb-card p {
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  color: var(--text-secondary, #475569) !important;
  margin: 0 !important;
}
.how-group-buy .hgb-reassure {
  text-align: center;
  margin: 2.25rem auto 0 !important;
  font-size: 0.9375rem !important;
  color: var(--text-secondary, #475569) !important;
  font-style: italic;
  max-width: 640px;
}

/* ---- PRICING CARD: elevated white card, ribbon, prominent price --------- */
.tool-pricing {
  padding: 5rem 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}
.tool-pricing .section-header { margin-bottom: 2.5rem; }
.pricing-card-v2 {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: #ffffff !important;
  border: 1px solid #e6eef7 !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 50px -18px rgba(15, 23, 42, 0.2),
              0 2px 6px rgba(15, 23, 42, 0.04) !important;
  padding: 2.25rem 2rem 2rem !important;
  overflow: hidden;
}
.pricing-card-v2::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, #22c55e, #15803d, #22c55e);
  background-size: 200% 100%;
  animation: hafiz-shimmer 5s linear infinite;
  border-radius: 24px 24px 0 0;
}
.pricing-card-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem !important;
  background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
  color: #b45309 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem !important;
}
.pricing-card-body { padding: 0 !important; }
.pricing-card-top {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #e2e8f0;
  margin-bottom: 1.5rem;
}
.pricing-card-label {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: var(--text-secondary, #475569) !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.25rem 0 !important;
}
.pricing-card-price-value {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: #15803d !important;
  line-height: 1 !important;
}
.pricing-card-price-period {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary, #475569) !important;
}
.pricing-card-perday {
  font-size: 0.875rem !important;
  color: var(--text-muted, #64748b) !important;
  margin-top: 0.4rem !important;
}
.pricing-card-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem !important;
  display: grid;
  gap: 0.7rem;
}
.pricing-card-features li {
  display: flex !important;
  gap: 0.65rem !important;
  align-items: flex-start !important;
  font-size: 0.9375rem !important;
  line-height: 1.55 !important;
  color: var(--text-primary, #0f172a) !important;
  border: none !important;
  padding: 0 !important;
}
.pricing-card-features .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d !important;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 1px;
}
.pricing-card-cta {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.25rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  box-shadow: 0 10px 24px -8px rgba(34, 197, 94, 0.55) !important;
}
.pricing-card-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem !important;
  font-size: 0.8125rem !important;
  color: var(--text-secondary, #475569) !important;
}

/* ---- RETAIL COMPARISON: dramatic VS + big savings highlight ------------- */
.comparison {
  padding: 5rem 0 !important;
  background: #ffffff !important;
}
.comparison .section-header { margin-bottom: 2.5rem; }
.comparison-card,
.comparison-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem !important;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5) !important;
  border: 1px solid rgba(34, 197, 94, 0.2) !important;
  border-radius: 24px !important;
  position: relative;
  overflow: hidden;
}
.comparison-card::after,
.comparison-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 200px at 50% 100%, rgba(34, 197, 94, 0.08), transparent);
  pointer-events: none;
}
.comparison-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 1.5rem !important;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.comparison-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 2rem 1.5rem !important;
  text-align: center;
  transition: transform 0.25s ease;
}
.comparison-box:hover { transform: translateY(-2px); }
.comparison-box .label,
.comparison-box .box-label {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--text-muted, #64748b) !important;
  margin-bottom: 0.75rem !important;
}
.comparison-box.retail .amount,
.comparison-box .retail-amount {
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-weight: 900 !important;
  color: #ef4444 !important;
  text-decoration: line-through !important;
  text-decoration-color: rgba(239, 68, 68, 0.65) !important;
  text-decoration-thickness: 4px !important;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.comparison-box.ours .amount,
.comparison-box .our-amount {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  font-weight: 900 !important;
  color: #15803d !important;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.comparison-box .currency {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted, #64748b);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.comparison-vs {
  display: grid !important;
  place-items: center;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: var(--text-muted, #94a3b8) !important;
  padding: 0 0.5rem;
  position: relative;
}
.comparison-vs::before {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  z-index: -1;
}
.comparison-savings,
.comparison-footer,
.savings-line {
  text-align: center;
  margin-top: 1.75rem !important;
  font-size: 1rem !important;
  color: var(--text-primary, #0f172a) !important;
  position: relative;
  z-index: 1;
}
.comparison-savings strong,
.savings-pct {
  font-weight: 900;
  color: #15803d;
}

/* ---- RELATED TOOLS v3: bigger icons, hover lift, brand accent ----------- */
.related-tools {
  padding: 5rem 0 !important;
  background: #f8fafc !important;
}
.related-tools .section-header { margin-bottom: 2.25rem; }
.rt-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.rt-card {
  position: relative;
  padding: 1.5rem !important;
  background: #ffffff !important;
  border: 1px solid #e6eef7 !important;
  border-radius: 18px !important;
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.25s ease !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  overflow: hidden;
}
.rt-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #15803d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.rt-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(34, 197, 94, 0.35) !important;
  box-shadow: 0 16px 32px -10px rgba(34, 197, 94, 0.22) !important;
}
.rt-card:hover::after { transform: scaleX(1); }
.rt-card-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #f8fafc, #eef2f7) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.rt-card-icon img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
}
.rt-card-body { flex: 1; min-width: 0; }
.rt-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.rt-card-name {
  font-size: 1.0625rem !important;
  font-weight: 800 !important;
  margin: 0 !important;
  color: var(--text-primary, #0f172a) !important;
  letter-spacing: -0.01em;
}
.rt-card-cat {
  display: inline-block;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.25rem 0.55rem !important;
  border-radius: 9999px !important;
  background: rgba(34, 197, 94, 0.1) !important;
  color: #15803d !important;
}
.rt-card-desc {
  font-size: 0.875rem !important;
  line-height: 1.55 !important;
  color: var(--text-secondary, #475569) !important;
  margin: 0 0 0.6rem !important;
}
.rt-card-link {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #15803d !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.rt-card:hover .rt-card-link {
  color: #22c55e !important;
  transform: translateX(3px);
}
.browse-all-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem !important;
  background: #ffffff !important;
  border: 1.5px solid #22c55e !important;
  color: #15803d !important;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px -2px rgba(34, 197, 94, 0.2);
}
.browse-all-link:hover {
  background: #22c55e !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -4px rgba(34, 197, 94, 0.5);
}

/* ============================ RESPONSIVE (v3) =========================== */

/* Tablet: tool hero stacks */
@media (max-width: 1024px) {
  .features-grid,
  .hgb-grid,
  .how-group-buy-grid,
  .group-buy-steps,
  .related-tools-grid,
  .rt-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .tool-hero .container {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center;
  }
  .tool-hero-header { justify-content: center; }
  .tool-hero-tagline { margin-left: auto; margin-right: auto; }
  .tool-hero-stats { margin-left: auto; margin-right: auto; }
  .tool-hero-price-row { justify-content: center; }
  .tool-hero-ctas { justify-content: center; }

  .trust-bar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hgb-grid,
  .testimonials-grid,
  .rt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Phones: everything single-column, tightened padding */
@media (max-width: 480px) {
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* ------- Audit fixes: mobile overflow / wrap / legibility -------- */
  /* Comparison price values were wrapping mid-number ("45,000" → "45," / "000").
     Shrink font + prevent word-break inside the amount span. */
  .comparison-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .comparison-vs {
    padding: 0.25rem 0 !important;
    transform: rotate(90deg);
  }
  .comparison-box {
    padding: 1.5rem 1rem !important;
  }
  .comparison-box .amount,
  .comparison-box.retail .amount,
  .comparison-box.ours .amount {
    font-size: clamp(1.5rem, 8vw, 2.25rem) !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }

  /* Related tools: single column + legible cat label (>=12px) */
  .rt-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .rt-card-cat {
    font-size: 0.75rem !important; /* was ~10.4px, now 12px */
  }

  /* WhatsApp FAB: pull into corner so it clips less over list content */
  .whatsapp-float {
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    width: 52px !important;
    height: 52px !important;
  }
  .whatsapp-float::before { font-size: 1.45rem !important; }

  /* Tool hero overflow: ensure decorative glows don't extend the scroll */
  .tool-hero { max-width: 100vw; overflow-x: clip !important; }

  /* FAQ top padding tighten */
  .tool-faq { padding-top: 3rem !important; }

  /* Tool hero phone */
  .tool-hero { padding: 4.5rem 0 3rem !important; }
  .tool-hero-header { flex-direction: column; gap: 0.75rem; }
  .tool-hero-logo-tile { width: 64px; height: 64px; }
  .tool-hero-logo-tile img { width: 40px; height: 40px; }
  .tool-hero-tagline { font-size: 1rem !important; }
  .tool-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 0.5rem !important; }
  .tool-hero-stat { padding: 0.6rem 0.4rem; }
  .tool-hero-stat .value { font-size: 1.15rem; }
  .tool-hero-stat .label { font-size: 0.6rem; }
  .tool-hero-price { font-size: 2.25rem !important; }
  .tool-hero-price-row { gap: 0.5rem; }
  .tool-hero-ctas { flex-direction: column !important; align-items: stretch !important; width: 100%; }
  .tool-hero-ctas .btn { width: 100% !important; justify-content: center !important; }
  .tool-hero-showcase { width: 220px; height: 220px; }
  .tool-hero-showcase-logo { width: 110px; height: 110px; border-radius: 22px; }
  .tool-hero-showcase-logo img { width: 68px; height: 68px; }

  /* Trust bar stacks */
  .trust-bar-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .trust-item { gap: 0.625rem; }

  /* What-is */
  .what-is-centered { text-align: left; }
  .what-is-centered p { font-size: 1rem; }
  .what-is-benefits { margin-left: 0; margin-right: 0; }

  /* How group buy */
  .how-group-buy { padding: 4rem 0; }
  .hgb-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hgb-card { padding: 2rem 1.25rem 1.5rem; }
  .hgb-num { font-size: 3rem; }

  /* Testimonials */
  .testimonials { padding: 4rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem 1.25rem; }

  /* Related tools */
  .related-tools { padding: 4rem 0; }
  .rt-grid { grid-template-columns: 1fr; gap: 0.875rem; }

  /* Section heading badges: allow wrap */
  .section-badge,
  .section-eyebrow { overflow-wrap: anywhere; }

  /* Home hero trust allow wrap */
  .hero-trust { flex-wrap: wrap; gap: 0.75rem; }
  .hero-trust-text { min-width: 0; overflow-wrap: anywhere; }

  /* Per-tool grids (the inline tool-page stylesheets don't cover ≤480px) */
  .features-grid,
  .who-for-grid,
  .why-us-grid,
  .related-tools-grid,
  .tool-pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Pricing card on phone */
  .tool-pricing-card,
  .pricing-card-v2 {
    padding: 1.5rem 1.25rem !important;
    border-radius: 1rem !important;
  }
  .tool-pricing-amount,
  .pricing-card-price-value {
    font-size: 2.25rem !important;
  }
  .pricing-card-body { padding: 1.25rem !important; }

  /* Comparison grid tight */
  .comparison-grid {
    gap: 0.75rem !important;
  }
  .comparison-card { padding: 1.5rem 1.25rem !important; }
  .comparison-box .amount { font-size: 1.75rem !important; overflow-wrap: anywhere; }

  /* CTA banner phone */
  .cta-banner { padding: 3.5rem 0 !important; }
  .cta-banner h2 { font-size: clamp(1.5rem, 5vw + 1rem, 2rem) !important; overflow-wrap: anywhere; }
  .cta-banner p { font-size: 1rem !important; }

  /* Breadcrumb wraps */
  .breadcrumb { font-size: 0.8rem; }
}
