/* ═══════════════════════════════════════════════════════════
   Shop-Beratung.com — Design System
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  --bg-primary: #0B1120;
  --bg-secondary: #111827;
  --bg-card: #151F32;
  --text-heading: #FFFFFF;
  --text-body: #C8CDD8;
  --text-muted: #8B95A8;
  --accent: #00E87B;
  --accent-hover: #00C868;
  --accent-glow: rgba(0,232,123,0.15);
  --border: #1E2A42;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* ── Container ─────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 20px; }
.section-subtitle { color: var(--text-muted); font-size: 17px; max-width: 700px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────── */
.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sb-btn-primary {
  background: var(--accent);
  color: #0B1120;
}
.sb-btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 20px var(--accent-glow);
}
.sb-btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--border);
}
.sb-btn-outline:hover {
  border-color: rgba(0,232,123,0.3);
}

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,17,32,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: background 0.3s;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.site-logo { display: flex; align-items: center; gap: 8px; }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--text-heading); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  margin-top: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.nav-dropdown-menu a:hover { background: rgba(0,232,123,0.08); color: var(--accent); }
.header-cta .sb-btn { padding: 10px 20px; font-size: 14px; }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; color: var(--text-heading); font-size: 24px; cursor: pointer; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text-muted); }
.footer-col a { display: block; color: var(--text-body); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 13px; }
.footer-legal a { margin-left: 20px; }
.footer-legal a:hover { color: var(--accent); }
.footer-badges { display: flex; gap: 16px; align-items: center; opacity: 0.6; }

/* ── Hero Section ──────────────────────────────────────── */
.hero { padding: 140px 0 80px; text-align: center; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(0,232,123,0.3);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero-sub { color: var(--text-muted); font-size: 17px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Stats Section ─────────────────────────────────────── */
.stats-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2rem; color: var(--accent); font-weight: 800; }
.stat-item span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stats-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: 16px; }

/* ── Tools Section ─────────────────────────────────────── */
.tools-section { padding: 60px 0; text-align: center; }
.tools-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 32px; }
.tool-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.tool-item svg, .tool-item img { width: 48px; height: 48px; }
.tool-item span { font-size: 13px; color: var(--text-muted); }

/* ── Problem Cards ─────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(0,232,123,0.3); transform: translateY(-4px); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 15px; }

/* ── Product Section ───────────────────────────────────── */
.product-section { padding: 80px 0; }
.product-card {
  background: linear-gradient(135deg, #0B1120 0%, #132040 100%);
  border: 1px solid rgba(0,232,123,0.15);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
}
.product-badge {
  display: inline-block;
  background: rgba(0,232,123,0.12);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.product-checklist { margin: 20px 0; }
.product-checklist li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-body);
}
.product-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.price-card .price { font-size: 2.5rem; color: var(--accent); font-weight: 800; }
.price-card .price-label { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.price-card .price-delivery { color: var(--text-body); font-size: 13px; margin-top: 16px; }

/* ── Steps Section ─────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; text-align: center; }
.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.step-number:hover { text-shadow: 0 0 20px var(--accent-glow); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* ── Services Section ──────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: rgba(0,232,123,0.3); transform: translateY(-4px); }
.service-card-icon { font-size: 28px; margin-bottom: 12px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.service-card .service-price { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.service-card .sb-btn { margin-top: 16px; font-size: 13px; padding: 10px 16px; }

/* ── About Section ─────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image { border-radius: 16px; overflow: hidden; }
.about-image img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: top center;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image:hover img {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,232,123,0.15);
}
.about-content .author-name { color: var(--accent); font-weight: 600; margin-top: 20px; display: block; }
.video-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,232,123,0.08);
  border: 1px solid rgba(0,232,123,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.video-placeholder:hover { background: rgba(0,232,123,0.12); }
.video-play-icon { width: 36px; height: 36px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.video-play-icon::after { content: '▶'; color: #0B1120; font-size: 14px; margin-left: 2px; }

/* ── Testimonials Section ──────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: rgba(0,232,123,0.3); transform: translateY(-4px); }
.testimonial-stars { color: #FFB800; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--text-body); font-size: 15px; margin-bottom: 16px; line-height: 1.6; }
.testimonial-author { font-weight: 600; color: var(--text-heading); }
.testimonial-role { color: var(--text-muted); font-size: 13px; }

/* ── Results Section ───────────────────────────────────── */
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.result-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.result-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.result-label.before { color: #FF6B6B; }
.result-label.after { color: var(--accent); }
.result-metrics { display: flex; gap: 24px; flex-wrap: wrap; }
.result-metric { }
.result-metric .value { font-size: 1.5rem; font-weight: 800; color: var(--text-heading); }
.result-metric .label { font-size: 12px; color: var(--text-muted); }

/* ── FAQ Section ───────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-heading);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ── Marquee CTA ───────────────────────────────────────── */
.marquee-cta {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  color: #0B1120;
  font-weight: 700;
  font-size: 16px;
  padding: 0 40px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sticky CTA Bar ────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: -70px;
  left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.is-visible { bottom: 0; }
.sticky-cta span { color: #0B1120; font-weight: 600; font-size: 15px; }
.sticky-cta .sb-btn {
  background: #0B1120;
  color: var(--accent);
  padding: 8px 20px;
  font-size: 13px;
}
.sticky-cta .close-btn {
  background: none;
  border: none;
  color: #0B1120;
  font-size: 20px;
  cursor: pointer;
  padding: 0 8px;
  opacity: 0.7;
}
.sticky-cta .close-btn:hover { opacity: 1; }

/* ── Forms ─────────────────────────────────────────────── */
.sb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.sb-form-field.sb-full-width { grid-column: 1 / -1; }
.sb-form input, .sb-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-heading);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sb-form input::placeholder, .sb-form textarea::placeholder { color: var(--text-muted); }
.sb-form input:focus, .sb-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
  outline: none;
}
.sb-form-success {
  background: rgba(0,232,123,0.1);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.sb-form-note { text-align: center; margin-top: 12px; color: var(--text-muted); font-size: 13px; }

/* ── Blog Cards ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(0,232,123,0.3); transform: translateY(-4px); }
.blog-card-image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card h3 a { transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--text-muted); font-size: 14px; }

/* ── Service Page Content ──────────────────────────────── */
.service-content h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.service-content h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.service-content p { margin-bottom: 16px; line-height: 1.8; }
.service-content p > a[href*="/kontakt/"],
.service-content p > a[href*="/online-shop-analyse/"],
.service-content > a[href*="/kontakt/"],
.service-content > a[href*="/online-shop-analyse/"] {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin: 8px 8px 24px 0;
  transition: opacity 0.2s;
}
.service-content p > a[href*="/kontakt/"]:hover,
.service-content p > a[href*="/online-shop-analyse/"]:hover,
.service-content > a[href*="/kontakt/"]:hover,
.service-content > a[href*="/online-shop-analyse/"]:hover { opacity: 0.85; }

/* ── Single Post ───────────────────────────────────────── */
.post-content { max-width: 720px; margin: 0 auto; padding: 120px 24px 80px; }
.post-header { margin-bottom: 40px; }
.post-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
.post-content h1 { margin-bottom: 20px; }
.post-body h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.post-body h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.post-body p { margin-bottom: 16px; line-height: 1.8; }
.post-body ul, .post-body ol { margin: 16px 0; padding-left: 24px; }
.post-body li { margin-bottom: 8px; list-style: disc; color: var(--text-body); }
.post-body ol li { list-style: decimal; }
.post-body a { color: var(--accent); text-decoration: underline; }
.post-body blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 24px 0; color: var(--text-muted); font-style: italic; }
.post-body img { border-radius: 12px; margin: 24px 0; }
.post-body strong { color: var(--text-heading); }

/* ── Page Templates ────────────────────────────────────── */
.page-hero { padding: 140px 0 60px; text-align: center; }
.page-content { padding: 0 0 80px; }
.page-content .container { max-width: 800px; }
.legal-content h2 { margin: 32px 0 12px; font-size: 1.3rem; }
.legal-content h3 { margin: 24px 0 8px; font-size: 1.1rem; }
.legal-content p { margin-bottom: 12px; line-height: 1.7; }
.legal-content ul { margin: 12px 0; padding-left: 20px; }
.legal-content li { margin-bottom: 6px; list-style: disc; }
.legal-content a { color: var(--accent); }

/* ── Scroll Animations ─────────────────────────────────── */
.animate-on-scroll { transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
body.js-anim .animate-on-scroll { opacity: 0; transform: translateY(24px); }
body.js-anim .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid, .services-grid, .steps-grid, .testimonials-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--bg-primary); border-bottom: 1px solid var(--border); padding: 20px; gap: 16px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .cards-grid, .services-grid, .steps-grid, .testimonials-grid, .blog-grid, .results-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 60px; }
  .sb-form-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; margin-top: 8px; }
}

/* ── WordPress specific overrides ──────────────────────── */
.wp-admin-bar-wrap { margin-top: 32px; }
body.admin-bar .site-header { top: 32px; }


/* ═══ ANIMATIONS ═══ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

/* Service card hover */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,232,123,0.12);
  border-color: var(--accent);
}

/* Tool item hover */
.tool-item {
  transition: transform 0.3s ease;
}
.tool-item:hover {
  transform: translateY(-4px);
}
.tool-item:hover svg {
  filter: drop-shadow(0 0 8px rgba(0,232,123,0.4));
}

/* Product image hover */
.product-image img {
  transition: transform 0.4s ease;
}
.product-image:hover img {
  transform: scale(1.03);
}

/* Testimonial card hover */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

/* FAQ item hover */
.faq-item {
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: var(--accent);
}

/* Stats counter pulse */
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.stat-number.animated {
  animation: countUp 0.5s ease forwards;
}

/* Before/After card hover */
.ba-card {
  transition: transform 0.3s ease;
}
.ba-card:hover {
  transform: translateY(-4px);
}

/* Button press effect */
.sb-btn:active {
  transform: scale(0.97);
}
