/* Home/Landing page specific styles */

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fbfdff 0%, #ffffff 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero .bg-gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 50%, rgba(37,140,251,0.05) 0%, transparent 50%);
}
.hero .spacer { height: 3rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero .card.hero-card-preview {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(28,61,110,0.08);
  transition: transform 0.3s ease;
  background: white;
}
.hero .card.hero-card-preview:hover {
  transform: translateY(-5px);
}
.avatar-preview {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.qr-box-hero {
  width: 100px;
  height: 100px;
  background: repeating-linear-gradient(45deg, #e2e8f0, #e2e8f0 8px, #cbd5e1 8px, #cbd5e1 16px);
  border: 2px solid #cbd5e1;
}
/* Floating badge removed per new minimal design */

/* Success Metrics */
.metric-item {
  text-align: left;
}
.metric-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dk-primary);
  line-height: 1;
}
.metric-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Features */
.features-grid { row-gap: 20px; }
.feature-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--dk-accent);
}
.feature-icon-large {
  font-size: 2.5rem;
  line-height: 1;
}

/* Landing section rhythm */
.landing-section { padding-top: 3rem; padding-bottom: 3rem; }
.landing-section + .landing-section { margin-top: 2rem; }
@media (min-width: 992px) {
  .landing-section { padding-top: 4rem; padding-bottom: 4rem; }
  .landing-section + .landing-section { margin-top: 3rem; }
}

/* Steps Section */
.step-card {
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
}
.step-icon-large {
  font-size: 3rem;
  line-height: 1;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dk-accent) 0%, #1b6fd6 100%);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Demo Section */
.demo-section { 
  background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%);
}
.demo-card-preview {
  transition: transform 0.3s ease;
}
.demo-card-preview:hover {
  transform: scale(1.02);
}
.demo-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.btn-demo {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-size: 0.9rem;
  padding: 0.75rem 0.5rem;
  transition: all 0.2s ease;
}
.btn-demo:hover { 
  border-color: var(--dk-accent);
  box-shadow: 0 8px 20px rgba(37,140,251,0.15);
  transform: translateY(-2px);
  color: var(--dk-primary);
}
.btn-xl { padding: .9rem 1.5rem; font-size: 1.125rem; }

/* Clamp helpers */
.subtitle-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .subtitle-clamp { -webkit-line-clamp: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metric-number { font-size: 1.5rem; }
  .feature-icon-large { font-size: 2rem; }
  .step-icon-large { font-size: 2.5rem; }
  .hero-floating-badge { 
    position: static; 
    display: inline-block;
    margin-top: 1rem;
  }
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .hero .card.hero-card-preview {
    max-width: 90%;
  }
}


