/* ============================================
   WebBoost – Design System & Stylesheet
   ============================================ */

/* 1. Google Fonts – moved to <link> in HTML for non-blocking load */

/* 2. CSS Variables */
:root {
  --bg: #F5F4F0;
  --white: #FFFFFF;
  --dark: #18181B;
  --text: #3D3B37;
  --text-muted: #78766E;
  --orange: #FF5628;
  --orange-hover: #E8471E;
  --orange-light: #FFF2EE;
  --orange-mid: #FFD5C8;
  --green-soft: #EDFAE4;
  --green-text: #2D6A1E;
  --purple-soft: #EDE9FF;
  --purple-text: #4B39C4;
  --yellow-soft: #FFF9E6;
  --yellow-text: #8A6500;
  --border: #E6E4DE;
  --border-dark: #D0CEC7;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 8px rgba(24,24,27,0.06);
  --shadow: 0 4px 24px rgba(24,24,27,0.08);
  --shadow-lg: 0 12px 48px rgba(24,24,27,0.12);
  --transition: 0.2s ease;
  --max-width: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); touch-action: manipulation; }
input, textarea, select { font-family: var(--font); }

/* Touch: remove 300ms tap delay on all interactive elements */
a, button, [role="button"] { touch-action: manipulation; }

/* Skip-to-content link for keyboard / screen reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus-visible: visible keyboard focus ring on all interactive elements */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}
/* Remove outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

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

/* 5. Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.7; }

.text-orange { color: var(--orange); }
.text-dark { color: var(--dark); }
.text-muted { color: var(--text-muted); }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,86,40,0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--dark);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: #2d2d30;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(24,24,27,0.3);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Arrow icon in button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 0.7rem;
}

/* 7. Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-dark { background: var(--dark); color: #fff; }
.badge-green { background: var(--green-soft); color: var(--green-text); }
.badge-purple { background: var(--purple-soft); color: var(--purple-text); }
.badge-border { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); }

/* 8. Section Layouts */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); }
.section-orange { background: var(--orange); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* 9. Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.nav.nav-hidden {
  transform: translateY(-100%);
}
.nav.scrolled {
  background: rgba(245,244,240,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
/* Hide mobile menu items on desktop */
.nav-links-divider,
.nav-links-btn {
  display: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* 10. Hero Section */
.hero {
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge { margin-bottom: 24px; }
.hero-headline { margin-bottom: 20px; }
.hero-subtext {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
  color: var(--text-muted);
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust-avatar:first-child { margin-left: 0; }

/* 11. Bento Grid (Hero Right) */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.bento-card-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.bento-card-dark h3, .bento-card-dark p { color: #fff; }
.bento-card-dark .bento-label { color: rgba(255,255,255,0.55); }
.bento-card-orange {
  background: var(--orange);
  border-color: var(--orange);
}
.bento-card-orange h3, .bento-card-orange p { color: #fff; }
.bento-card-orange .bento-label { color: rgba(255,255,255,0.7); }
.bento-wide { grid-column: span 2; }
.bento-number {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.bento-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.bento-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.bento-card-dark .bento-icon { background: rgba(255,255,255,0.12); }
.bento-card-orange .bento-icon { background: rgba(255,255,255,0.2); }

/* 12. Trust Bar */
.trust-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 12px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.trust-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

/* 13. Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
}
.problem-icon {
  width: 52px; height: 52px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}
.problem-card h4 { margin-bottom: 10px; color: var(--dark); }
.problem-card p { font-size: 0.92rem; }

/* 14. Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-featured {
  background: var(--dark);
  border-color: var(--dark);
}
.service-card-featured h3,
.service-card-featured p,
.service-card-featured li { color: rgba(255,255,255,0.85); }
.service-card-featured h3 { color: #fff; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.service-card-featured .service-icon { background: rgba(255,86,40,0.2); }
.service-card h3 { margin-bottom: 12px; }
.service-card > p { margin-bottom: 24px; font-size: 0.95rem; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.service-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card-featured .service-features li::before { color: var(--orange); }
.service-card-featured .service-features li { color: rgba(255,255,255,0.7); }
.service-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* 15. Steps / Process */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.step:hover .step-number {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.step h4 { margin-bottom: 8px; color: var(--dark); }
.step p { font-size: 0.9rem; }

/* 16. Stats Bar */
.stats-bar {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-number span { color: var(--orange); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.stat-divider {
  border-right: 1px solid rgba(255,255,255,0.1);
}

/* 17. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F5A623;
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 18. FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--orange); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  background: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* 19. CTA Section */
.cta-section {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,86,40,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,86,40,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section .badge { margin-bottom: 20px; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* 20. Footer */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
  margin-top: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 50px;
  width: auto;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--orange); }
.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* 21. Floating CTA / WhatsApp */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all var(--transition);
  cursor: pointer;
  color: #fff;
}
.floating-btn-wa {
  background: #25D366;
}
.floating-btn-wa:hover { background: #1da853; transform: translateY(-2px); }
.floating-btn-label {
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.floating-btn:hover .floating-btn-label {
  max-width: 200px;
  opacity: 1;
}
/* On touch devices: always show the label (no hover available) */
@media (hover: none) {
  .floating-btn-label {
    max-width: 200px;
    opacity: 1;
  }
}

/* 22. Page Hero (inner pages) */
.page-hero {
  padding: 140px 0 80px;
  background: var(--white);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero .badge { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; max-width: 500px; margin-bottom: 36px; }
.page-hero-visual {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

/* 23. Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.features-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; }

/* 24. Comparison Table */
.comparison-table {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.comparison-header > div {
  padding: 20px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}
.comparison-header > div:first-child { text-align: left; }
.comparison-header .col-highlight {
  background: var(--dark);
  color: #fff;
  position: relative;
}
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row > div {
  padding: 18px 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comparison-row > div:first-child {
  text-align: left;
  justify-content: flex-start;
  font-weight: 500;
  color: var(--dark);
}
.comparison-row .col-highlight {
  background: rgba(24,24,27,0.03);
  font-weight: 700;
  color: var(--dark);
}
.check-yes { color: var(--orange); font-size: 1rem; }
.check-no { color: var(--border-dark); font-size: 1rem; }

/* 25. Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card-featured {
  background: var(--dark);
  border-color: var(--dark);
  position: relative;
}
.pricing-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card-featured .pricing-label { color: rgba(255,255,255,0.45); }
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin: 16px 0;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
}
.pricing-card-featured .pricing-amount { color: #fff; }
.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pricing-card-featured .pricing-period { color: rgba(255,255,255,0.4); }
.pricing-desc { font-size: 0.9rem; margin-bottom: 28px; }
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-card-featured .pricing-features li::before { color: var(--orange); }

/* 26. Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 200px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 28px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--orange); }
.blog-card p { font-size: 0.88rem; margin-bottom: 20px; }
.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.blog-card-link:hover { color: var(--orange); gap: 10px; }

/* 27. Blog Post */
.blog-post-hero {
  padding: 140px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.blog-post-hero .container { max-width: 800px; }
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-post-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 20px; }
.blog-post-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.blog-post-body h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.blog-post-body h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.blog-post-body p { font-size: 1.02rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.blog-post-body ul { margin: 16px 0 24px 24px; }
.blog-post-body ul li { margin-bottom: 8px; font-size: 1rem; line-height: 1.7; color: var(--text); }
.blog-post-body strong { color: var(--dark); font-weight: 700; }
.blog-callout {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.blog-callout p { color: var(--text); margin: 0; }

/* 28. Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  color: var(--dark);
  transition: border-color var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }

/* 29. Legal Pages */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.legal-body h1 { margin-bottom: 8px; }
.legal-body .legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-body h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-body p { margin-bottom: 16px; font-size: 0.95rem; }
.legal-body address { font-style: normal; }

/* 30. Responsive Design */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-wide { grid-column: span 1; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links a {
    font-size: 1rem;
    color: var(--text);
  }
  .nav-links-divider {
    display: block;
    height: 1px;
    background: var(--border);
    margin: 8px 0;
  }
  .nav-links-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }
  .nav-right { display: none; }
  .hero { padding: 110px 0 64px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { bottom: 20px; right: 20px; }
  .stats-bar { padding: 32px; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .blog-card-image { height: 160px; }
  .service-card { padding: 32px; }
  .contact-form { padding: 28px; }
}

/* 31. Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* prefers-reduced-motion: disable all animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* 32. Utilities */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.spacer { flex: 1; }
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.highlight { color: var(--orange); position: relative; display: inline-block; }
.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.4;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ===================================
   33. Hero Visual – Search Animation
   =================================== */
.hv-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}
.hv-card-wrap {
  position: relative;
  padding-top: 22px;
}
.hv-float-badge {
  position: absolute;
  top: 0; right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0d652d;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  animation: hvFloat 3s ease-in-out infinite;
  z-index: 2;
}
.hv-float-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #e6f4ea;
  border-radius: 50%;
  font-size: 0.6rem;
}
@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hv-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.11), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Search bar */
.hv-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.hv-search-lupe {
  color: #5f6368;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: hvLupe 2.8s ease-in-out infinite;
}
@keyframes hvLupe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  35% { transform: scale(1.2) rotate(-10deg); }
  65% { transform: scale(1.2) rotate(-10deg); }
  85% { transform: scale(1) rotate(0deg); }
}
.hv-search-input {
  flex: 1;
  font-size: 0.87rem;
  font-weight: 500;
  color: #1a1a1a;
  font-family: inherit;
  min-width: 0;
}
.hv-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: #1a1a1a;
  vertical-align: middle;
  margin-left: 1px;
  animation: hvBlink 0.8s step-end infinite;
}
@keyframes hvBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.hv-search-glogo { flex-shrink: 0; letter-spacing: -0.01em; }

/* Map */
.hv-map {
  position: relative;
  height: 170px;
  background: linear-gradient(135deg, #e8f3e8 0%, #d4ebd4 30%, #ddedf2 65%, #d2e6f0 100%);
  overflow: hidden;
}
.hv-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(255,255,255,0.32) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(45deg, rgba(255,255,255,0.18) 1px, transparent 1px) 0 0 / 72px 72px;
}
.hv-map::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70px 35px at 18% 72%, rgba(195,220,195,0.55) 0%,transparent 100%),
    radial-gradient(ellipse 85px 42px at 78% 22%, rgba(195,212,228,0.45) 0%,transparent 100%),
    radial-gradient(ellipse 55px 28px at 54% 82%, rgba(208,224,208,0.4) 0%,transparent 100%);
}
.hv-scan-ring {
  position: absolute;
  top: 42%; left: 37%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 2px solid rgba(255,86,40,0.5);
  animation: hvScan 2.6s ease-out infinite;
}
.hv-scan-ring-2 { animation-delay: 1.0s; }
@keyframes hvScan {
  0%   { width: 16px; height: 16px; opacity: 1; border-color: rgba(255,86,40,0.7); }
  100% { width: 110px; height: 110px; opacity: 0; border-color: rgba(255,86,40,0); }
}
.hv-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hv-pin-body {
  width: 24px; height: 24px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}
.hv-pin-inner {
  width: 9px; height: 9px;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
}
.hv-pin-shadow {
  width: 7px; height: 3px;
  background: rgba(0,0,0,0.14);
  border-radius: 50%;
  margin-top: 2px;
}
.hv-pin-orange { background: var(--orange); }
.hv-pin-grey   { background: #5f6368; }
.hv-pin-a { left: 35%; top: 28%; animation: hvPinDrop 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.5s both; }
.hv-pin-b { left: 63%; top: 18%; animation: hvPinDrop 0.55s cubic-bezier(0.34,1.56,0.64,1) 0.8s both; }
.hv-pin-c { left: 59%; top: 60%; animation: hvPinDrop 0.55s cubic-bezier(0.34,1.56,0.64,1) 1.1s both; }
@keyframes hvPinDrop {
  from { transform: translateY(-28px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hv-maps-label {
  position: absolute;
  bottom: 7px; right: 10px;
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.03em;
}

/* Results */
.hv-results { padding: 2px 0; }
.hv-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid #f5f5f5;
  animation: hvResultIn 0.4s ease both;
}
.hv-result:last-child { border-bottom: none; }
.hv-result-top { background: #fafafa; }
.hv-result:nth-child(1) { animation-delay: 0.6s; }
.hv-result:nth-child(2) { animation-delay: 0.85s; }
.hv-result:nth-child(3) { animation-delay: 1.1s; }
@keyframes hvResultIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hv-dot-orange { background: var(--orange); }
.hv-dot-grey   { background: #9aa0a6; }
.hv-result-info { flex: 1; min-width: 0; }
.hv-result-name {
  font-size: 0.81rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hv-result-sub { display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.hv-stars { font-size: 0.68rem; color: #fbbc04; }
.hv-stars-dim { color: #dadada; }
.hv-reviews { font-size: 0.68rem; color: #5f6368; }
.hv-open-badge {
  font-size: 0.67rem; font-weight: 700;
  color: #0d652d; background: #e6f4ea;
  padding: 3px 8px; border-radius: 10px; flex-shrink: 0;
}

/* Stats mini strip */
.hv-stats { display: flex; gap: 8px; }
.hv-stat {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 6px;
  text-align: center;
}
.hv-stat-dark { background: var(--dark); border-color: var(--dark); }
.hv-stat-dark .hv-stat-num   { color: #fff; }
.hv-stat-dark .hv-stat-label { color: rgba(255,255,255,0.5); }
.hv-stat-orange { background: var(--orange); border-color: var(--orange); }
.hv-stat-orange .hv-stat-num   { color: #fff; }
.hv-stat-orange .hv-stat-label { color: rgba(255,255,255,0.75); }
.hv-stat-num {
  font-size: 1rem; font-weight: 900;
  color: var(--dark); line-height: 1;
  margin-bottom: 3px; letter-spacing: -0.02em;
}
.hv-stat-label { font-size: 0.6rem; font-weight: 500; color: var(--text-muted); line-height: 1.3; }

@media (max-width: 1024px) {
  .hv-stats { flex-wrap: wrap; }
  .hv-stat  { min-width: calc(33.33% - 6px); }
}
@media (max-width: 480px) {
  .hv-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; }
}

/* ===================================
   34. Hero Visual – Dual Website + GMB
   =================================== */

/* Dual split container */
.hv-dual {
  display: flex;
  height: 200px;
  position: relative;
  overflow: hidden;
}

/* ── Left: Website preview ── */
.hv-web-preview {
  flex: 1;
  padding: 10px 12px 20px;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
  animation: hvPanelFadeIn 0.5s ease 0.3s both;
}
.hv-web-topbar {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 7px;
}
.hv-web-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
}
.hv-web-dot-r { background: #ff5f57; }
.hv-web-dot-y { background: #febc2e; }
.hv-web-dot-g { background: #28c840; }
.hv-web-url {
  flex: 1;
  background: white;
  border-radius: 3px;
  height: 11px;
  font-size: 0.5rem;
  color: #aaa;
  display: flex;
  align-items: center;
  padding: 0 5px;
  margin-left: 4px;
  overflow: hidden;
  white-space: nowrap;
}
.hv-web-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 5px;
  padding: 5px 8px;
  margin-bottom: 7px;
  border-bottom: 2px solid var(--orange);
}
.hv-web-logo-bar {
  width: 34px; height: 6px;
  background: var(--dark);
  border-radius: 3px;
}
.hv-web-nav-links { display: flex; gap: 4px; }
.hv-web-link-pill {
  width: 18px; height: 4px;
  background: #d8d8d8;
  border-radius: 2px;
}
.hv-web-body {
  background: white;
  border-radius: 5px;
  padding: 8px 10px;
}
.hv-web-headline {
  width: 80%; height: 7px;
  background: var(--dark);
  border-radius: 3px;
  margin-bottom: 5px;
}
.hv-web-subline {
  height: 4px;
  background: #d0d0d0;
  border-radius: 2px;
  margin-bottom: 4px;
  width: 65%;
}
.hv-web-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.52rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
  white-space: nowrap;
}
.hv-panel-label {
  position: absolute;
  bottom: 5px; left: 0; right: 0;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(0,0,0,0.28);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Divider ── */
.hv-dual-divider {
  width: 1px;
  background: #e0e0e0;
  flex-shrink: 0;
}

/* ── Right: GMB panel ── */
.hv-gmb-panel {
  flex: 1;
  padding: 10px 12px 20px;
  background: white;
  position: relative;
  overflow: hidden;
  animation: hvPanelFadeIn 0.5s ease 0.5s both;
}
.hv-gmb-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.hv-gmb-avatar {
  width: 26px; height: 26px;
  background: var(--orange);
  border-radius: 6px;
  color: white;
  font-size: 0.48rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.hv-gmb-biz-info { flex: 1; min-width: 0; }
.hv-gmb-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv-gmb-cat { font-size: 0.58rem; color: #777; }
.hv-gmb-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.hv-gmb-status-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}
.hv-gmb-hours { font-size: 0.62rem; color: #555; }
.hv-gmb-action-row {
  display: flex;
  gap: 5px;
  margin-bottom: 7px;
}
.hv-gmb-btn {
  flex: 1;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 0.57rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  white-space: nowrap;
}
.hv-gmb-btn-primary {
  background: #1a73e8;
  color: white;
  border-color: #1a73e8;
}
.hv-gmb-map-mini {
  height: 30px;
  background: linear-gradient(135deg, #e8f3e8 0%, #d4ebd4 50%, #ddedf2 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ── Animated mouse cursor ── */
.hv-mouse-cursor {
  position: absolute;
  top: 50px;
  left: 40px;
  pointer-events: none;
  z-index: 20;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.4));
  animation: hvMouseMove 7s ease-in-out infinite;
}
@keyframes hvMouseMove {
  0%   { top: 35px;  left: 30px;  opacity: 0; transform: scale(1); }
  7%   { opacity: 1; }
  22%  { top: 138px; left: 42px;  transform: scale(1); }
  28%  { top: 138px; left: 42px;  transform: scale(0.8); }
  33%  { top: 138px; left: 42px;  transform: scale(1); }
  50%  { top: 55px;  left: 172px; transform: scale(1); }
  62%  { top: 112px; left: 182px; transform: scale(1); }
  68%  { top: 112px; left: 182px; transform: scale(0.8); }
  72%  { top: 112px; left: 182px; transform: scale(1); }
  84%  { top: 48px;  left: 195px; transform: scale(1); }
  93%  { opacity: 1; }
  100% { top: 35px;  left: 30px;  opacity: 0; transform: scale(1); }
}
@keyframes hvPanelFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hv-mouse-cursor { animation: none; opacity: 0; }
  .hv-web-preview, .hv-gmb-panel { animation: none; }
}

/* ===================================
   35. Kombi-Paket Card
   =================================== */
.kombi-outer {
  background: var(--dark);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.kombi-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.kombi-glow-top {
  top: -100px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,86,40,0.16) 0%, transparent 65%);
}
.kombi-glow-bottom {
  bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,86,40,0.08) 0%, transparent 65%);
}
.kombi-card-inner {
  padding: 44px 48px;
  position: relative;
}
.kombi-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.kombi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.kombi-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.kombi-tagline {
  color: rgba(255,255,255,0.58);
  margin: 0;
  font-size: 0.95rem;
  max-width: 440px;
  font-style: italic;
}
.kombi-price {
  text-align: right;
  flex-shrink: 0;
}
.kombi-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.kombi-price-main {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.kombi-price-suffix { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.38); }
.kombi-price-monthly {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 3px;
}
.kombi-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 48px;
}
.kombi-features {
  padding: 32px 48px 36px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.kombi-feature-col {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
}
.kombi-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.kombi-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.kombi-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kombi-col-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.kombi-check {
  width: 18px; height: 18px;
  background: rgba(255,86,40,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.58rem;
  color: var(--orange);
  margin-top: 1px;
}
.kombi-bottom {
  padding: 24px 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.kombi-savings {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,86,40,0.08);
  border: 1px solid rgba(255,86,40,0.2);
  border-radius: 12px;
  padding: 12px 16px;
}
.kombi-savings-text { color: rgba(255,255,255,0.58); font-size: 0.85rem; }
.kombi-savings-highlight { color: #fff; }
.single-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 40px;
}
.single-divider-line { flex: 1; height: 1px; background: var(--border); }
.single-divider-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@media (max-width: 680px) {
  .kombi-card-inner { padding: 32px 24px; }
  .kombi-features   { padding: 24px 24px 28px; }
  .kombi-bottom     { padding: 16px 24px 32px; flex-direction: column; align-items: flex-start; }
  .kombi-divider    { margin: 0 24px; }
  .kombi-price      { text-align: left; }
}

/* ===================================
   36. Nav Dropdown (Leistungen)
   =================================== */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.nav-dropdown-btn:hover { color: var(--dark); }
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.11), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 8px;
  min-width: 268px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  transition: background 0.14s;
}
.nav-dropdown-menu a:hover { background: var(--bg); }
.nav-dd-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.nav-dd-label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.nav-dd-sub { display: block; font-size: 0.74rem; color: var(--text-muted); margin-top: 1px; }

/* ===================================
   37. Intro Offer Badge
   =================================== */
.intro-offer-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,86,40,0.07);
  border: 1px solid rgba(255,86,40,0.22);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
}
.intro-offer-strip svg { flex-shrink: 0; }

/* ===================================
   38. Über mich Section
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; display: flex; justify-content: center; }
.about-avatar-wrap { position: relative; }
.about-avatar {
  width: 260px;
  height: 300px;
  background: linear-gradient(145deg, var(--dark) 0%, #2a2a2d 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 25%, rgba(255,86,40,0.22) 0%, transparent 60%);
}
.about-initials {
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-name-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  z-index: 2;
}
.about-stat-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 14px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
}
.about-stat-top { top: 20px; right: -24px; animation: hvFloat 3.5s ease-in-out infinite; }
.about-stat-bottom { bottom: 44px; left: -24px; animation: hvFloat 3.5s ease-in-out 1.4s infinite; }
.about-stat-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2px;
}
.about-stat-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.about-content .badge { margin-bottom: 20px; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 14px; font-size: 1rem; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.about-value-icon {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  border: 1px solid var(--border);
}
.about-value-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.about-value-sub { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
}

/* ===================================
   39. Pricing Page (additional components)
   =================================== */
.pricing-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-card-header { border-color: rgba(255,255,255,0.08); }
.pricing-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-card-featured .pricing-card-name { color: rgba(255,255,255,0.5); }
.pricing-price-suffix { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-price-monthly {
  font-size: 0.88rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 4px;
}
.pricing-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.pricing-card-featured .pricing-card-desc { color: rgba(255,255,255,0.55); }
.pricing-card-body { padding: 24px 32px 32px; }
.pricing-check {
  width: 18px; height: 18px;
  background: rgba(255,86,40,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 1px;
}
.pricing-card-featured .pricing-check { background: rgba(255,86,40,0.18); }

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    margin: 8px 0 4px;
    padding: 6px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    width: 100%;
    min-width: unset;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-btn { width: 100%; justify-content: space-between; }
  .nav-dropdown-btn:focus-visible { outline-offset: 2px; }
}
