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

.raditherm-hero-wrapper {
  --color-primary:       #D4703C;
  --color-primary-dark:  #B85C2E;
  --color-accent:        #E8A850;
  --color-dark:           #2A2024;
  --color-white:     #FFFFFF;
  --font-sans: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
  
  font-family: var(--font-sans);
}

.raditherm-hero-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.raditherm-hero-wrapper .rt-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.raditherm-hero-wrapper .rt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #1E1620 0%, #2A2024 40%, #241A22 100%);
  overflow: hidden;
}

.raditherm-hero-wrapper .rt-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-dark);
}

.raditherm-hero-wrapper .rt-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s linear;
  transform: scale(1.05);
}

.raditherm-hero-wrapper .rt-hero-slide.active {
  opacity: 0.45;
  transform: scale(1);
}

.raditherm-hero-wrapper .rt-hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,112,60,0.28) 0%, transparent 52%),
    radial-gradient(circle at 80% 20%, rgba(232,168,80,0.18) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(212,80,40,0.12) 0%, transparent 42%);
  pointer-events: none;
}

.raditherm-hero-wrapper .rt-hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.raditherm-hero-wrapper .rt-hero-content {
  position: relative;
  z-index: 3;
  padding: 132px 0 80px; 
}

.raditherm-hero-wrapper .rt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(230,92,0,0.15);
  border: 1px solid rgba(230,92,0,0.3);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.raditherm-hero-wrapper .rt-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: rt-pulse 2s infinite;
}

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

.raditherm-hero-wrapper .rt-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.raditherm-hero-wrapper .rt-hero-title .rt-highlight {
  background: linear-gradient(135deg, #FF8C00, #E65C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.raditherm-hero-wrapper .rt-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.raditherm-hero-wrapper .rt-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.raditherm-hero-wrapper .rt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-sans);
}

.raditherm-hero-wrapper .rt-btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.raditherm-hero-wrapper .rt-btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230,92,0,0.35);
  color: var(--color-white);
}

.raditherm-hero-wrapper .rt-btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.raditherm-hero-wrapper .rt-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.raditherm-hero-wrapper .rt-btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.raditherm-hero-wrapper .rt-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.raditherm-hero-wrapper .rt-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.raditherm-hero-wrapper .rt-hero-stat-value {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.raditherm-hero-wrapper .rt-hero-stat-value .rt-unit {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.raditherm-hero-wrapper .rt-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
}

.raditherm-hero-wrapper .rt-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: rt-bouncePulse 2s ease-in-out infinite;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  z-index: 3;
}

.raditherm-hero-wrapper .rt-scroll-indicator svg { 
  width: 24px; 
  height: 24px; 
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(212,112,60,0.8));
}

@keyframes rt-bouncePulse {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) scale(1); 
    opacity: 0.7;
  }
  50% { 
    transform: translateX(-50%) translateY(10px) scale(1.05); 
    opacity: 1;
  }
}
