/* Hero - Premium dental clinic */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f1629 0%, #1a1f3a 40%, #2d3748 100%);
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(15, 22, 41, 0.55);
}
.hero-bg::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, rgba(15, 22, 41, 0.8), transparent); z-index: 1; }
.hero-content { position: relative; z-index: 1; padding: 24px; max-width: 780px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201, 169, 110, 0.12); border: 1px solid rgba(201, 169, 110, 0.25); color: var(--accent); padding: 8px 22px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; margin-bottom: 28px; letter-spacing: 0.03em; backdrop-filter: blur(4px); }
.hero-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.5rem, 5.5vw, 4.5rem); color: var(--white); margin: 0 0 22px; line-height: 1.12; letter-spacing: -0.01em; }
.hero-title .accent { color: var(--accent); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin: 0 0 44px; line-height: 1.7; max-width: 540px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero-cta .btn { padding: 16px 32px; font-size: 1.05rem; }

/* Scroll indicator */
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; text-decoration: none; }
.hero-scroll-dot { width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.3); border-radius: 10px; position: relative; }
.hero-scroll-dot::after { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--accent); border-radius: 2px; animation: scroll-dot 1.8s ease-in-out infinite; }
@keyframes scroll-dot { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; } }

/* Trust bar */
.trust-bar { background: var(--white); padding: 0; margin-top: -52px; position: relative; z-index: 2; }
.trust-bar .container { background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 40px rgba(26, 31, 58, 0.1); padding: 44px 48px; }
.trust-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item { position: relative; }
.trust-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--border); }
.trust-number { display: block; font-family: 'DM Serif Display', serif; font-size: 2.75rem; color: var(--accent); margin-bottom: 6px; line-height: 1; }
.trust-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
