/* ==========================================================================
   SOLAR TASK - MODERN HOME DESIGN SYSTEM
   Theme: Orange/Coral - Premium Light Theme 
   ========================================================================== */

/* CSS Custom Properties - Design Tokens */
:root {
  /* Primary Colors - Orange Theme */
  --st-primary: #FD5631;
  --st-primary-light: #FFF4F1;
  --st-primary-dark: #E63E1C;
  --st-primary-gradient: linear-gradient(135deg, #FD5631 0%, #FF7A5C 100%);
  
  /* Accent Colors */
  --st-accent: #5D3CF2;
  --st-accent-light: #F0EDFE;
  
  /* Success/Secondary */
  --st-success: #07C98B;
  --st-success-light: #E6FAF4;
  
  /* Neutral Palette */
  --st-white: #FFFFFF;
  --st-gray-50: #FAFAFA;
  --st-gray-100: #F5F4F8;
  --st-gray-200: #EFECF3;
  --st-gray-300: #D5D2DC;
  --st-gray-400: #BBB7C5;
  --st-gray-500: #9691A4;
  --st-gray-600: #666276;
  --st-gray-700: #454056;
  --st-gray-800: #1F1B2D;
  --st-gray-900: #0D0A14;
  
  /* Typography */
  --st-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --st-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing Scale */
  --st-space-xs: 0.25rem;
  --st-space-sm: 0.5rem;
  --st-space-md: 1rem;
  --st-space-lg: 1.5rem;
  --st-space-xl: 2rem;
  --st-space-2xl: 3rem;
  --st-space-3xl: 4rem;
  --st-space-4xl: 6rem;
  --st-space-5xl: 8rem;
  
  /* Border Radius */
  --st-radius-sm: 6px;
  --st-radius-md: 12px;
  --st-radius-lg: 16px;
  --st-radius-xl: 24px;
  --st-radius-2xl: 32px;
  --st-radius-full: 9999px;
  
  /* Shadows */
  --st-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --st-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --st-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
  --st-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --st-shadow-glow: 0 0 40px rgba(253, 86, 49, 0.2);
  --st-shadow-orange: 0 8px 32px rgba(253, 86, 49, 0.25);
  
  /* Transitions */
  --st-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --st-transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --st-transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ==========================================================================
   PREMIUM NAVBAR
   ========================================================================== */

.st-navbar {
  position: relative;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--st-transition-base);
}

.st-navbar.st-navbar-scrolled {
  box-shadow: var(--st-shadow-md);
}

.st-navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--st-space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Navbar brand styles moved to layout-premium.css */

.st-navbar-nav {
  display: none;
  align-items: center;
  gap: var(--st-space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .st-navbar-nav {
    display: flex;
  }
}

.st-navbar-nav a {
  font-family: var(--st-font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--st-gray-700);
  text-decoration: none;
  transition: color var(--st-transition-fast);
  position: relative;
}

.st-navbar-nav a:hover {
  color: var(--st-primary);
}

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

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

.st-navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--st-space-md);
}

.st-navbar-user {
  display: none;
  align-items: center;
  gap: var(--st-space-sm);
  font-size: 0.875rem;
  color: var(--st-gray-600);
}

@media (min-width: 768px) {
  .st-navbar-user {
    display: flex;
  }
}

.st-navbar-user-name {
  font-weight: 600;
  color: var(--st-primary);
}

.st-navbar-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--st-space-sm);
  padding: 10px 20px;
  font-family: var(--st-font-display);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--st-radius-md);
  text-decoration: none;
  transition: all var(--st-transition-base);
  cursor: pointer;
}

.st-navbar-btn-outline {
  color: var(--st-gray-700);
  background: transparent;
  border: 1.5px solid var(--st-gray-300);
}

.st-navbar-btn-outline:hover {
  border-color: var(--st-primary);
  color: var(--st-primary);
  background: var(--st-primary-light);
}

.st-navbar-btn-primary {
  color: var(--st-white);
  background: var(--st-primary);
  border: 1.5px solid var(--st-primary);
}

.st-navbar-btn-primary:hover {
  background: var(--st-primary-dark);
  border-color: var(--st-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--st-shadow-orange);
}

/* Mobile Menu Toggle */
.st-navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .st-navbar-toggle {
    display: none;
  }
}

.st-navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--st-gray-700);
  border-radius: 2px;
  transition: all var(--st-transition-fast);
}

/* Dropdown Menu */
.st-dropdown {
  position: relative;
}

.st-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--st-white);
  border-radius: var(--st-radius-lg);
  box-shadow: var(--st-shadow-xl);
  border: 1px solid var(--st-gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--st-transition-fast);
  z-index: 100;
}

.st-dropdown:hover .st-dropdown-menu,
.st-dropdown:focus-within .st-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.st-dropdown-menu a,
.st-dropdown-menu button {
  display: flex;
  align-items: center;
  gap: var(--st-space-md);
  width: 100%;
  padding: 12px 16px;
  font-family: var(--st-font-body);
  font-size: 0.9375rem;
  color: var(--st-gray-700);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--st-transition-fast);
  text-align: left;
}

.st-dropdown-menu a:hover,
.st-dropdown-menu button:hover {
  background: var(--st-gray-100);
  color: var(--st-primary);
}

.st-dropdown-menu a:first-child {
  border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0;
}

.st-dropdown-menu a:last-child,
.st-dropdown-menu button:last-child {
  border-radius: 0 0 var(--st-radius-lg) var(--st-radius-lg);
}

.st-dropdown-divider {
  height: 1px;
  background: var(--st-gray-200);
  margin: 4px 0;
}

/* ==========================================================================
   PREMIUM FOOTER
   ========================================================================== */

.st-footer {
  background: var(--st-gray-800);
  color: var(--st-white);
  padding: var(--st-space-4xl) 0 var(--st-space-xl);
}

.st-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--st-space-lg);
}

.st-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--st-space-2xl);
}

@media (min-width: 768px) {
  .st-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--st-space-3xl);
  }
}

.st-footer-brand {
  max-width: 320px;
}

.st-footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: var(--st-space-lg);
  filter: brightness(0) invert(1);
}

.st-footer-tagline {
  font-size: 1rem;
  color: var(--st-gray-400);
  line-height: 1.6;
  margin-bottom: var(--st-space-xl);
}

.st-footer-social {
  display: flex;
  gap: var(--st-space-sm);
}

.st-footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--st-radius-md);
  color: var(--st-white);
  font-size: 1.125rem;
  transition: all var(--st-transition-fast);
}

.st-footer-social a:hover {
  background: var(--st-primary);
  transform: translateY(-3px);
}

.st-footer-column h4 {
  font-family: var(--st-font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--st-white);
  margin-bottom: var(--st-space-lg);
}

.st-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.st-footer-links li {
  margin-bottom: var(--st-space-md);
}

.st-footer-links a {
  font-size: 0.9375rem;
  color: var(--st-gray-400);
  text-decoration: none;
  transition: all var(--st-transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--st-space-sm);
}

.st-footer-links a:hover {
  color: var(--st-white);
  transform: translateX(4px);
}

.st-footer-links a i {
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--st-transition-fast);
}

.st-footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.st-footer-bottom {
  margin-top: var(--st-space-3xl);
  padding-top: var(--st-space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--st-space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .st-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.st-footer-copyright {
  font-size: 0.875rem;
  color: var(--st-gray-500);
}

.st-footer-copyright a {
  color: var(--st-primary);
  text-decoration: none;
}

.st-footer-legal {
  display: flex;
  gap: var(--st-space-lg);
}

.st-footer-legal a {
  font-size: 0.8125rem;
  color: var(--st-gray-500);
  text-decoration: none;
  transition: color var(--st-transition-fast);
}

.st-footer-legal a:hover {
  color: var(--st-white);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

.st-home {
  font-family: var(--st-font-body);
  color: var(--st-gray-700);
  background: var(--st-white);
  overflow-x: hidden;
}

.st-home *,
.st-home *::before,
.st-home *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.st-heading-display {
  font-family: var(--st-font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--st-gray-900);
}

.st-heading-1 {
  font-family: var(--st-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--st-gray-900);
}

.st-heading-2 {
  font-family: var(--st-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--st-gray-900);
}

.st-heading-3 {
  font-family: var(--st-font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--st-gray-800);
}

.st-text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--st-gray-600);
}

.st-text-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--st-gray-600);
}

.st-text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--st-gray-500);
}

.st-text-accent {
  color: var(--st-primary);
}

/* ==========================================================================
   DRAMATIC HEADLINE STYLES
   ========================================================================== */

.st-hero-title {
  margin-bottom: var(--st-space-lg);
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

/* Highlighted word with brush stroke underline */
.st-highlight {
  position: relative;
  color: var(--st-primary);
  display: inline-block;
}

.st-highlight::before {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.02em;
  right: -0.02em;
  height: 0.32em;
  background: rgba(253, 86, 49, 0.22);
  z-index: -1;
  transform: skewX(-6deg) rotate(-0.5deg);
  border-radius: 3px;
}

/* Alternative dramatic underline - thick stroke */
.st-underline-stroke {
  position: relative;
  display: inline-block;
}

.st-underline-stroke::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--st-primary);
  opacity: 0.85;
  z-index: -1;
  border-radius: 4px;
}

/* Animated gradient underline */
.st-underline-animated {
  position: relative;
  display: inline-block;
}

.st-underline-animated::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, 
    #FD5631 0%, 
    #FF7A5C 25%, 
    #FD5631 50%, 
    #FF7A5C 75%, 
    #FD5631 100%
  );
  background-size: 200% 100%;
  z-index: -1;
  border-radius: 3px;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Hand-drawn style underline - uses only the highlight background, no extra stroke */
.st-underline-handdrawn {
  position: relative;
  display: inline-block;
  /* No additional ::after pseudo-element - just the highlight */
}

/* ==========================================================================
   HERO SECTION V3 - Split Layout, Bold Form
   ========================================================================== */

.st-hero-v3 {
  min-height: auto;
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F4F8 50%, #FFF4F1 100%);
  padding: 100px 0 56px;
  display: flex;
  align-items: center;
}

.st-hero-v3-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .st-hero-v3-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }
}

/* Single column on mobile (image hidden) */
@media (max-width: 1023px) {
  .st-hero-v3-container {
    max-width: 600px;
  }
}

/* Left Column */
.st-hero-v3-main {
  order: 2;
}

@media (min-width: 1024px) {
  .st-hero-v3-main {
    order: 1;
  }
}

/* Badge */
.st-hero-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--st-white);
  border: 1px solid var(--st-gray-200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--st-gray-600);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.st-hero-v3-badge i {
  color: var(--st-primary);
}

/* Title */
.st-hero-v3-title {
  font-family: var(--st-font-display);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--st-gray-900);
  margin: 0 0 28px;
}

.st-hero-v3-highlight {
  color: var(--st-primary);
  position: relative;
  display: inline-block;
  isolation: isolate;
}

/* Brush stroke effect - light orange background */
.st-hero-v3-highlight::before {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -8px;
  right: -8px;
  height: 40%;
  background: #FFE4DC;
  z-index: -1;
  transform: skewX(-10deg) rotate(-0.5deg);
  border-radius: 4px 16px 4px 12px;
}

/* Form Card */
.st-hero-v3-form-card {
  background: var(--st-white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 
    0 0 0 1px rgba(0,0,0,0.03),
    0 4px 16px rgba(0,0,0,0.06),
    0 12px 40px rgba(0,0,0,0.08);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.st-hero-v3-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--st-primary), #FF8A65);
}

.st-hero-v3-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--st-gray-100);
}

.st-hero-v3-form-title {
  font-family: var(--st-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--st-gray-800);
}

.st-hero-v3-form-subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--st-success);
  display: flex;
  align-items: center;
  gap: 4px;
}

.st-hero-v3-form-subtitle::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--st-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Form Fields */
.st-hero-v3-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .st-hero-v3-form-row {
    grid-template-columns: 1.5fr 1fr;
    gap: 14px;
  }
}

.st-hero-v3-field {
  margin-bottom: 0;
}

.st-hero-v3-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--st-gray-600);
  margin-bottom: 8px;
}

.st-hero-v3-label i {
  color: var(--st-primary);
  font-size: 0.875rem;
}

.st-hero-v3-input {
  width: 100%;
  padding: 15px 16px;
  font-family: var(--st-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--st-gray-800);
  background: var(--st-gray-50);
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s;
}

.st-hero-v3-input:hover {
  background: var(--st-gray-100);
}

.st-hero-v3-input:focus {
  background: var(--st-white);
  border-color: var(--st-primary);
  box-shadow: 0 0 0 4px rgba(253, 86, 49, 0.1);
}

.st-hero-v3-input::placeholder {
  color: var(--st-gray-400);
  font-weight: 400;
}

/* Money Input */
.st-hero-v3-input-money {
  position: relative;
}

.st-hero-v3-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--st-font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--st-gray-500);
}

.st-hero-v3-input-money .st-hero-v3-input {
  padding-left: 48px;
}

/* Submit Button */
.st-hero-v3-submit {
  width: 100%;
  padding: 16px 24px;
  font-family: var(--st-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--st-white);
  background: linear-gradient(135deg, var(--st-primary) 0%, #E84A1F 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}

.st-hero-v3-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(253, 86, 49, 0.35);
}

.st-hero-v3-submit:active {
  transform: translateY(-1px);
}

/* Trust */
.st-hero-v3-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.st-hero-v3-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--st-gray-500);
}

.st-hero-v3-trust i {
  color: var(--st-success);
}

/* Stats */
.st-hero-v3-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.st-hero-v3-stat {
  text-align: center;
  padding: 14px;
  background: var(--st-white);
  border-radius: 12px;
  border: 1px solid var(--st-gray-200);
}

.st-hero-v3-stat-number {
  font-family: var(--st-font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--st-primary);
  letter-spacing: -0.02em;
}

.st-hero-v3-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--st-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Right Column - Visual */
.st-hero-v3-visual {
  position: relative;
  order: 1;
  display: none;
}

@media (min-width: 1024px) {
  .st-hero-v3-visual {
    order: 2;
    display: block;
  }
}

.st-hero-v3-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.st-hero-v3-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/4;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .st-hero-v3-image {
    aspect-ratio: 4/5;
    max-height: 480px;
  }
}

.st-hero-v3-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}

/* Floating Card */
.st-hero-v3-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
  .st-hero-v3-float {
    left: -32px;
    right: auto;
    width: 240px;
    bottom: 40px;
  }
}

.st-hero-v3-float-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.st-hero-v3-float-text strong {
  display: block;
  font-family: var(--st-font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--st-gray-800);
}

.st-hero-v3-float-text span {
  font-size: 0.75rem;
  color: var(--st-gray-500);
}

/* ==========================================================================
   HERO SECTION V2 - Centered, Form-Focused (Palmetto Style)
   ========================================================================== */

.st-hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}

/* Background Image */
.st-hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.st-hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 10, 20, 0.75) 0%,
    rgba(15, 10, 20, 0.85) 50%,
    rgba(15, 10, 20, 0.92) 100%
  );
}

/* Container */
.st-hero-v2-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.st-hero-v2-content {
  margin-bottom: var(--st-space-2xl);
}

.st-hero-v2-title {
  font-family: var(--st-font-display);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--st-white);
  margin: 0 0 var(--st-space-lg);
}

.st-hero-v2-highlight {
  position: relative;
  color: var(--st-primary);
  display: inline-block;
}

.st-hero-v2-highlight::before {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -0.02em;
  right: -0.02em;
  height: 0.28em;
  background: rgba(253, 86, 49, 0.35);
  z-index: -1;
  transform: skewX(-4deg);
  border-radius: 3px;
}

.st-hero-v2-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Form Wrapper */
.st-hero-v2-form-wrapper {
  margin-bottom: var(--st-space-2xl);
}

.st-hero-v2-form {
  background: var(--st-white);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.st-hero-v2-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 768px) {
  .st-hero-v2-form-grid {
    grid-template-columns: 1.5fr 1fr auto;
    gap: 0;
  }
}

/* Input Groups */
.st-hero-v2-input-group {
  display: flex;
  align-items: center;
  gap: var(--st-space-md);
  padding: 16px 20px;
  background: var(--st-gray-50);
  border-radius: 14px;
  transition: all var(--st-transition-fast);
}

@media (min-width: 768px) {
  .st-hero-v2-input-group {
    background: transparent;
    border-radius: 0;
    padding: 20px 24px;
  }
  
  .st-hero-v2-input-address {
    border-right: 1px solid var(--st-gray-200);
  }
}

.st-hero-v2-input-group:focus-within {
  background: var(--st-primary-light);
}

@media (min-width: 768px) {
  .st-hero-v2-input-group:focus-within {
    background: var(--st-primary-light);
    border-radius: 14px;
  }
}

.st-hero-v2-input-icon {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-primary);
  font-size: 1.25rem;
}

.st-hero-v2-currency {
  font-family: var(--st-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--st-primary);
}

.st-hero-v2-input-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.st-hero-v2-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--st-gray-500);
  margin-bottom: 2px;
}

.st-hero-v2-input {
  width: 100%;
  padding: 0;
  font-family: var(--st-font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--st-gray-800);
  background: transparent;
  border: none;
  outline: none;
}

.st-hero-v2-input::placeholder {
  color: var(--st-gray-400);
  font-weight: 400;
}

/* Submit Button */
.st-hero-v2-submit {
  padding: 20px 40px;
  font-family: var(--st-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--st-white);
  background: var(--st-primary);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--st-transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.st-hero-v2-submit:hover {
  background: var(--st-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 86, 49, 0.4);
}

.st-hero-v2-submit:active {
  transform: translateY(0);
}

/* Trust Indicators */
.st-hero-v2-trust {
  display: flex;
  justify-content: center;
  gap: var(--st-space-lg);
  padding: var(--st-space-md) 0;
  flex-wrap: wrap;
}

.st-hero-v2-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--st-gray-500);
}

.st-hero-v2-trust i {
  color: var(--st-success);
  font-size: 0.875rem;
}

/* Stats Row */
.st-hero-v2-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--st-space-lg);
}

.st-hero-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.st-hero-v2-stat strong {
  font-family: var(--st-font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--st-white);
  letter-spacing: -0.02em;
}

.st-hero-v2-stat span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.st-hero-v2-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   HERO SECTION V1 (Legacy - kept for reference)
   ========================================================================== */

.st-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--st-gray-50) 0%, var(--st-white) 100%);
  padding: var(--st-space-4xl) 0 var(--st-space-3xl);
  overflow: hidden;
}

.st-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(253, 86, 49, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(93, 60, 242, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.st-hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--st-space-lg);
  position: relative;
  z-index: 1;
}

.st-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--st-space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .st-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .st-hero-content {
    text-align: left;
  }
}

.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--st-space-sm);
  padding: var(--st-space-sm) var(--st-space-md);
  background: var(--st-primary-light);
  border-radius: var(--st-radius-full);
  margin-bottom: var(--st-space-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--st-primary);
  animation: fadeInUp 0.6s ease-out;
}

.st-hero-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-primary);
  border-radius: 50%;
  color: white;
  font-size: 0.75rem;
}

.st-hero-description {
  max-width: 520px;
  margin-bottom: var(--st-space-xl);
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@media (max-width: 1023px) {
  .st-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero Form */
.st-hero-form {
  background: var(--st-white);
  border-radius: var(--st-radius-xl);
  padding: var(--st-space-xl);
  box-shadow: var(--st-shadow-xl);
  border: 1px solid var(--st-gray-200);
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
  max-width: 500px;
}

@media (max-width: 1023px) {
  .st-hero-form {
    margin: 0 auto;
  }
}

.st-form-group {
  margin-bottom: var(--st-space-md);
}

.st-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--st-gray-700);
  margin-bottom: var(--st-space-sm);
}

.st-form-input-wrapper {
  position: relative;
}

.st-form-input-wrapper .st-form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--st-gray-400);
  font-size: 1.125rem;
  pointer-events: none;
}

.st-form-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-size: 16px;
  font-family: var(--st-font-body);
  border: 2px solid var(--st-gray-200);
  border-radius: var(--st-radius-md);
  background: var(--st-gray-50);
  color: var(--st-gray-800);
  transition: all var(--st-transition-fast);
  outline: none;
}

.st-form-input:hover {
  border-color: var(--st-gray-300);
}

.st-form-input:focus {
  border-color: var(--st-primary);
  background: var(--st-white);
  box-shadow: 0 0 0 4px rgba(253, 86, 49, 0.1);
}

.st-form-input::placeholder {
  color: var(--st-gray-400);
}

/* Currency Input */
.st-form-input-currency {
  padding-left: 60px;
}

.st-form-currency-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--st-gray-500);
  font-size: 0.9375rem;
  pointer-events: none;
}

/* Submit Button */
.st-btn-primary {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--st-font-display);
  color: var(--st-white);
  background: var(--st-primary);
  border: none;
  border-radius: var(--st-radius-md);
  cursor: pointer;
  transition: all var(--st-transition-base);
  position: relative;
  overflow: hidden;
}

.st-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s;
}

.st-btn-primary:hover {
  background: var(--st-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--st-shadow-orange);
}

.st-btn-primary:hover::before {
  left: 100%;
}

.st-btn-primary:active {
  transform: translateY(0);
}

/* Form Subtitle */
.st-form-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--st-space-sm);
  margin-top: var(--st-space-md);
  font-size: 0.8125rem;
  color: var(--st-gray-500);
}

.st-form-subtitle i {
  color: var(--st-success);
}

/* Hero Image */
.st-hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.st-hero-image-wrapper {
  position: relative;
  border-radius: var(--st-radius-2xl);
  overflow: hidden;
  box-shadow: var(--st-shadow-xl);
}

.st-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Floating Stats Card */
.st-hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--st-white);
  padding: var(--st-space-lg);
  border-radius: var(--st-radius-lg);
  box-shadow: var(--st-shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--st-space-md);
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 767px) {
  .st-hero-float-card {
    display: none;
  }
}

.st-float-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-success-light);
  border-radius: var(--st-radius-md);
  color: var(--st-success);
  font-size: 1.25rem;
}

.st-float-card-content strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--st-gray-900);
}

.st-float-card-content span {
  font-size: 0.875rem;
  color: var(--st-gray-500);
}

/* ==========================================================================
   TRUST BAR - Dramatic Statistics
   ========================================================================== */

.st-trust-bar {
  background: linear-gradient(135deg, #1a1520 0%, #2d1f24 50%, #1f1a22 100%);
  padding: var(--st-space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.st-trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(253, 86, 49, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(253, 86, 49, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(253, 86, 49, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.st-trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--st-space-lg);
  position: relative;
  z-index: 1;
}

.st-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--st-space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  .st-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3 column variant */
.st-trust-grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .st-trust-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
  }
}

.st-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--st-space-xl) var(--st-space-lg);
  position: relative;
}

/* Divider between items on desktop */
@media (min-width: 768px) {
  .st-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(253, 86, 49, 0.3), transparent);
  }
}

.st-trust-number {
  font-family: var(--st-font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--st-white);
  margin-bottom: var(--st-space-md);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(253, 86, 49, 0.4);
}

.st-trust-number span {
  color: var(--st-primary);
  text-shadow: 0 0 40px rgba(253, 86, 49, 0.6);
}

.st-trust-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.st-section {
  padding: var(--st-space-4xl) 0;
}

.st-section-light {
  background: linear-gradient(180deg, var(--st-white) 0%, var(--st-gray-50) 100%);
}

.st-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--st-space-lg);
}

.st-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--st-space-3xl);
}

.st-section-header .st-heading-2 {
  margin-bottom: var(--st-space-md);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.st-section-header .st-text-lg {
  font-size: 1.0625rem;
  color: var(--st-gray-500);
}

/* Dramatic Section Header */
.st-section-header-dramatic {
  max-width: 720px;
}

.st-section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--st-primary-light);
  color: var(--st-primary);
  font-family: var(--st-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.st-section-header-dramatic .st-heading-2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.st-heading-dot {
  color: var(--st-primary);
}

.st-section-header-dramatic .st-text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--st-gray-600);
  max-width: 560px;
  margin: 0 auto;
}

.st-section-header-dramatic .st-text-lg strong {
  color: var(--st-gray-800);
  font-weight: 600;
}

.st-hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .st-hide-mobile {
    display: inline;
  }
}

/* Steps Grid */
.st-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--st-space-lg);
  position: relative;
}

@media (min-width: 768px) {
  .st-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .st-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.st-step-card {
  background: var(--st-white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--st-gray-200);
  transition: all var(--st-transition-base);
  position: relative;
}

.st-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--st-primary-light);
}

.st-step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--st-primary) 0%, #E84A1F 100%);
  color: white;
  font-family: var(--st-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(253, 86, 49, 0.25);
}

.st-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-primary-light);
  color: var(--st-primary);
  font-size: 1.5rem;
  border-radius: 14px;
  margin: 0 auto 16px;
  transition: all var(--st-transition-base);
}

.st-step-card:hover .st-step-icon {
  background: var(--st-primary);
  color: var(--st-white);
  transform: scale(1.05);
}

.st-step-card h3 {
  font-family: var(--st-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--st-gray-800);
  margin-bottom: 8px;
}

.st-step-card p {
  font-size: 0.875rem;
  color: var(--st-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Step connector line for desktop */
@media (min-width: 1024px) {
  .st-step-card::after {
    content: '';
    position: absolute;
    top: 72px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--st-primary), rgba(253, 86, 49, 0.3));
    border-radius: 2px;
  }
  
  .st-step-card:last-child::after {
    display: none;
  }
}

/* ==========================================================================
   COMPARE INSTALLERS SECTION
   ========================================================================== */

.st-compare-section {
  padding: var(--st-space-4xl) 0;
  background: linear-gradient(180deg, var(--st-white) 0%, var(--st-gray-50) 100%);
}

.st-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--st-space-3xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .st-compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-compare-content {
  max-width: 520px;
}

@media (max-width: 1023px) {
  .st-compare-content {
    text-align: center;
    margin: 0 auto;
  }
}

.st-compare-content .st-heading-2 {
  margin-bottom: var(--st-space-lg);
}

.st-compare-features {
  list-style: none;
  padding: 0;
  margin: var(--st-space-xl) 0;
}

.st-compare-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--st-space-md);
  padding: var(--st-space-md) 0;
  border-bottom: 1px solid var(--st-gray-200);
}

.st-compare-features li:last-child {
  border-bottom: none;
}

.st-compare-features .st-check-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-success-light);
  color: var(--st-success);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.st-compare-features span {
  color: var(--st-gray-700);
  font-size: 1rem;
}

.st-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--st-space-sm);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--st-font-display);
  color: var(--st-primary);
  background: transparent;
  border: 2px solid var(--st-primary);
  border-radius: var(--st-radius-md);
  cursor: pointer;
  transition: all var(--st-transition-base);
  text-decoration: none;
}

.st-btn-outline:hover {
  background: var(--st-primary);
  color: var(--st-white);
  transform: translateY(-2px);
  box-shadow: var(--st-shadow-orange);
}

/* Compare Cards Preview */
.st-compare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--st-space-md);
  perspective: 1000px;
}

@media (max-width: 640px) {
  .st-compare-content {
    order: -1;
  }

  .st-compare-cards {
    grid-template-columns: 1fr;
    gap: var(--st-space-lg);
    order: 0;
  }

  .st-compare-features .st-check-icon {
    flex-shrink: 0;
    min-width: 24px;
    min-height: 24px;
  }

  .st-installer-card {
    min-width: 0;
  }
}

.st-installer-card {
  background: var(--st-white);
  min-width: 0;
  border-radius: var(--st-radius-xl);
  padding: var(--st-space-lg);
  box-shadow: var(--st-shadow-md);
  border: 1px solid var(--st-gray-200);
  transition: all var(--st-transition-base);
  transform-style: preserve-3d;
}

.st-installer-card:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow: var(--st-shadow-lg);
}

.st-installer-card-header {
  display: flex;
  align-items: center;
  gap: var(--st-space-md);
  margin-bottom: var(--st-space-md);
  padding-bottom: var(--st-space-md);
  border-bottom: 1px solid var(--st-gray-100);
}

.st-installer-avatar {
  width: 48px;
  height: 48px;
  background: var(--st-primary-light);
  border-radius: var(--st-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.st-installer-info h4 {
  font-family: var(--st-font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--st-gray-800);
  margin: 0 0 4px;
}

.st-installer-info .st-location {
  font-size: 0.75rem;
  color: var(--st-gray-500);
}

.st-installer-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--st-space-sm);
}

.st-installer-rating i {
  color: #FFC107;
  font-size: 0.75rem;
}

.st-installer-rating span {
  font-size: 0.8125rem;
  color: var(--st-gray-600);
  margin-left: 4px;
}

.st-installer-stats {
  display: flex;
  gap: var(--st-space-md);
  margin-bottom: var(--st-space-md);
}

.st-installer-stat {
  display: flex;
  flex-direction: column;
}

.st-installer-stat strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--st-gray-800);
}

.st-installer-stat span {
  font-size: 0.6875rem;
  color: var(--st-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.st-installer-price {
  background: var(--st-success-light);
  padding: var(--st-space-sm) var(--st-space-md);
  border-radius: var(--st-radius-sm);
  text-align: center;
}

.st-installer-price strong {
  font-family: var(--st-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--st-success);
}

.st-installer-price span {
  font-size: 0.75rem;
  color: var(--st-gray-500);
  display: block;
}

/* Highlight card */
.st-installer-card.st-card-highlight {
  border-color: var(--st-primary);
  position: relative;
}

.st-card-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--st-primary);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--st-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.st-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--st-space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .st-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.st-benefits-image {
  position: relative;
  border-radius: var(--st-radius-2xl);
  overflow: hidden;
  box-shadow: var(--st-shadow-xl);
}

.st-benefits-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.st-benefits-content {
  padding: var(--st-space-xl) 0;
}

@media (min-width: 1024px) {
  .st-benefits-content {
    padding-left: var(--st-space-2xl);
  }
}

.st-benefits-list {
  display: grid;
  gap: var(--st-space-lg);
  margin-top: var(--st-space-xl);
}

.st-benefit-item {
  display: flex;
  gap: var(--st-space-md);
  align-items: flex-start;
}

.st-benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-primary-light);
  color: var(--st-primary);
  border-radius: var(--st-radius-lg);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.st-benefit-content h4 {
  font-family: var(--st-font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--st-gray-800);
  margin: 0 0 4px;
}

.st-benefit-content p {
  font-size: 0.9375rem;
  color: var(--st-gray-500);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.st-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--st-space-xl);
}

@media (min-width: 768px) {
  .st-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .st-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-testimonial-card {
  background: var(--st-white);
  border-radius: var(--st-radius-xl);
  padding: var(--st-space-xl);
  border: 1px solid var(--st-gray-200);
  transition: all var(--st-transition-base);
}

.st-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--st-shadow-md);
}

.st-testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--st-space-md);
}

.st-testimonial-rating i {
  color: #FFC107;
  font-size: 1rem;
}

.st-testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--st-gray-600);
  margin-bottom: var(--st-space-lg);
}

.st-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--st-space-md);
  padding-top: var(--st-space-md);
  border-top: 1px solid var(--st-gray-100);
}

.st-testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--st-primary-light), var(--st-gray-100));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-primary);
  font-weight: 700;
  font-size: 1rem;
}

.st-testimonial-info strong {
  display: block;
  font-family: var(--st-font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--st-gray-800);
}

.st-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--st-gray-500);
}

/* ==========================================================================
   CITIES SECTION
   ========================================================================== */

.st-cities-section {
  padding: var(--st-space-4xl) 0;
}

.st-cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--st-space-sm);
  margin-bottom: var(--st-space-xl);
}

.st-city-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--st-space-sm) var(--st-space-md);
  background: var(--st-white);
  border: 1px solid var(--st-gray-200);
  border-radius: var(--st-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--st-gray-700);
  text-decoration: none;
  transition: all var(--st-transition-fast);
}

.st-city-tag:hover {
  background: var(--st-primary);
  border-color: var(--st-primary);
  color: var(--st-white);
  transform: translateY(-2px);
}

.st-city-tag .st-count {
  background: var(--st-gray-100);
  padding: 2px 8px;
  border-radius: var(--st-radius-full);
  margin-left: var(--st-space-sm);
  font-size: 0.75rem;
  color: var(--st-gray-500);
  transition: all var(--st-transition-fast);
}

.st-city-tag:hover .st-count {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.st-cities-cta {
  text-align: center;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.st-cta-section {
  background: var(--st-primary-gradient);
  padding: var(--st-space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.st-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.st-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.st-cta-content .st-heading-2 {
  color: var(--st-white);
  margin-bottom: var(--st-space-md);
}

.st-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--st-space-xl);
}

.st-btn-white {
  display: inline-flex;
  align-items: center;
  gap: var(--st-space-sm);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--st-font-display);
  color: var(--st-primary);
  background: var(--st-white);
  border: none;
  border-radius: var(--st-radius-md);
  cursor: pointer;
  transition: all var(--st-transition-base);
  text-decoration: none;
}

.st-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.st-gallery-section {
  padding: var(--st-space-4xl) 0;
  background: var(--st-gray-50);
}

.st-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--st-space-md);
}

@media (min-width: 768px) {
  .st-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .st-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.st-gallery-item {
  position: relative;
  border-radius: var(--st-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.st-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--st-transition-slow);
}

.st-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--st-transition-base);
}

.st-gallery-item:hover img {
  transform: scale(1.08);
}

.st-gallery-item:hover::after {
  opacity: 1;
}

.st-gallery-overlay {
  position: absolute;
  bottom: var(--st-space-md);
  left: var(--st-space-md);
  right: var(--st-space-md);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--st-transition-base);
  z-index: 1;
}

.st-gallery-item:hover .st-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Scroll-triggered animations */
.st-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease-out;
}

.st-animate.st-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

.st-hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .st-hide-mobile {
    display: block;
  }
}

.st-hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .st-hide-desktop {
    display: none;
  }
}

/* Remove default spinner from number inputs */
.st-no-spinners::-webkit-inner-spin-button,
.st-no-spinners::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.st-no-spinners {
  -moz-appearance: textfield;
}

/* Google Places Autocomplete Styling */
.pac-container {
  border-radius: var(--st-radius-md);
  box-shadow: var(--st-shadow-lg);
  border: 1px solid var(--st-gray-200);
  margin-top: 8px;
  font-family: var(--st-font-body);
}

.pac-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--st-gray-100);
  font-size: 0.9375rem;
}

.pac-item:hover {
  background: var(--st-gray-50);
}

.pac-item-query {
  font-weight: 600;
  color: var(--st-gray-800);
}

.pac-matched {
  font-weight: 700;
}
