:root {
  --hero-gradient-start: #6366f1;
  --hero-gradient-end: #8b5cf6;
  --accent-gold: #fbbf24;
  --accent-gold-light: #fde68a;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
  color: var(--accent-gold);
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24 0%, #fde68a 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 100%;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
  max-width: 560px;
}

.hero-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
}

.mini-feature i {
  color: var(--accent-gold);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
  color: #1f2937;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
  border: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

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

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

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.btn-arrow {
  font-size: 20px;
  font-weight: 700;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: fadeInRight 0.8s ease-out;
}

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

.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.illustration-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 180px;
}

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

.main-card {
  animation-delay: 0s;
}

.ai-card {
  animation-delay: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.result-card {
  animation-delay: 1s;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.card-icon-wrapper.success {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.card-info {
  flex: 1;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}

.card-subtitle {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.card-body {
  margin-top: 8px;
}

.email-line {
  height: 6px;
  background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 3px;
  margin-bottom: 6px;
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.email-line.short {
  width: 70%;
}

.ai-brain {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}

.brain-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
  position: relative;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.brain-pulse {
  position: absolute;
  inset: -10px;
  border: 3px solid #6366f1;
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.ai-label {
  font-size: 14px;
  font-weight: 700;
  color: #6366f1;
  text-align: center;
}

.response-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.illustration-arrow {
  color: rgba(255, 255, 255, 0.8);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

.floating-agents {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.agent-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  animation: floatBubble 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes floatBubble {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(-5px) translateX(-5px);
  }
  75% {
    transform: translateY(-20px) translateX(5px);
  }
}

.agent-bubble:nth-child(1) {
  top: 10%;
  left: 5%;
}

.agent-bubble:nth-child(2) {
  top: 30%;
  right: 10%;
}

.agent-bubble:nth-child(3) {
  bottom: 30%;
  left: 8%;
}

.agent-bubble:nth-child(4) {
  bottom: 15%;
  right: 15%;
}

.agent-bubble i {
  color: var(--accent-gold);
  font-size: 16px;
}

.free-agents-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.section-header-pro {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.section-eyebrow {
  margin-bottom: 16px;
}

.free-badge-pro,
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid #fbbf24;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.eyebrow-badge {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.section-title-pro {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-description-pro {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.agents-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.loading-spinner-pro {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}

.spinner-circle {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.agent-card-pro {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.agent-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.agent-card-pro:hover::before {
  transform: scaleX(1);
}

.agent-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #6366f1;
}

.agent-logo-pro {
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.agent-card-pro:hover .agent-logo-pro {
  transform: scale(1.1) rotate(-5deg);
}

.agent-title-pro {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.agent-description-pro {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.agent-usage-stats {
  width: 100%;
  margin-bottom: 20px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.usage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.usage-label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.usage-count {
  font-size: 14px;
  font-weight: 800;
}

.usage-progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.usage-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.agent-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-email-display {
  padding: 12px 16px;
  background: #f3f4f6;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #374151;
  font-weight: 600;
  word-break: break-all;
  border: 1px solid #e5e7eb;
}

.copy-email-btn-pro {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  letter-spacing: 0.3px;
}

.copy-email-btn-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.copy-email-btn-pro:active {
  transform: translateY(0);
}

.empty-state-pro {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
}

.empty-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.empty-icon i {
  font-size: 48px;
  color: white;
}

.empty-icon.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
}

.empty-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.empty-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 500px;
}

.use-cases {
  padding: 100px 0;
  background: white;
}

.use-cases-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.use-case-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #6366f1;
}

.featured-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-color: #fbbf24;
}

.featured-card::before {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.use-case-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.use-case-card:hover .use-case-icon {
  transform: scale(1.1) rotate(5deg);
}

.gradient-purple {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.gradient-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gradient-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.use-case-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.use-case-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.use-case-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-tag {
  display: inline-block;
  background: #f3f4f6;
  color: #4b5563;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.meta-tag.premium {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.cta-pro {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-icon-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-icon-item {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 24px;
  animation: iconFloat 3s ease-in-out infinite;
}

.cta-icon-item:nth-child(2) {
  animation-delay: 0.3s;
}

.cta-icon-item:nth-child(3) {
  animation-delay: 0.6s;
}

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

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-description {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 48px;
}

.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-gold), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-cta-large {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
  color: #1f2937;
  padding: 20px 48px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
  border: none;
  letter-spacing: 0.3px;
}

.btn-cta-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.cta-note i {
  color: var(--accent-gold);
  font-size: 16px;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-buttons,
  .hero-features-mini {
    justify-content: center;
  }

  .hero-illustration {
    flex-direction: column;
    gap: 24px;
  }

  .illustration-arrow {
    transform: rotate(90deg);
  }

  .floating-agents {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px;
  }

  .hero-container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-features-mini {
    flex-direction: column;
    align-items: center;
  }

  .section-title-pro {
    font-size: 36px;
  }

  .section-description-pro {
    font-size: 18px;
  }

  .agents-grid-pro {
    grid-template-columns: 1fr;
  }

  .use-cases-grid-pro {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 18px;
  }

  .cta-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-visual {
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .btn-cta {
    padding: 16px 28px;
    font-size: 15px;
  }

  .section-title-pro {
    font-size: 32px;
  }

  .cta-title {
    font-size: 32px;
  }

  .stat-number {
    font-size: 32px;
  }

  .use-case-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

