.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 159, 28, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(46, 196, 182, 0.1) 0%, transparent 50%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero-glow-1 {
  background: var(--primary-color);
  top: -200px;
  left: -100px;
}

.hero-glow-2 {
  background: var(--secondary-color);
  bottom: -200px;
  right: -100px;
  animation-delay: -10s;
}

.hero-glow-3 {
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  padding: var(--spacing-2xl) 0;
}

.hero-content {
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-icon {
  color: var(--primary-color);
  animation: rotate 10s linear infinite;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.stat-item .stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: var(--spacing-xs);
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

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

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

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

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: cardFloat 6s ease-in-out infinite;
}

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

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 159, 28, 0.2) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  opacity: 0.5;
  pointer-events: none;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-card:hover .hero-image {
  transform: scale(1.05);
}

.card-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
}

.card-decoration-1 {
  top: -10px;
  left: -10px;
  animation: pulse 2s ease-in-out infinite;
}

.card-decoration-2 {
  bottom: -10px;
  right: -10px;
  animation: pulse 2s ease-in-out infinite 1s;
}

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

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.floating-card-1 {
  top: 10%;
  left: -30px;
  animation: floatDiagonal 4s ease-in-out infinite;
}

.floating-card-2 {
  bottom: 10%;
  right: -30px;
  animation: floatDiagonal 4s ease-in-out infinite -2s;
}

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

.floating-icon {
  font-size: 1.25rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  z-index: 10;
  animation: bounceUp 2s ease-in-out infinite;
}

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

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.features {
  background: var(--bg-dark);
  padding: var(--spacing-2xl) 0;
}

[data-theme="light"] .features {
  background: var(--bg-light);
}

.features-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.features-title h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

[data-theme="light"] .features-title h2 {
  color: var(--text-primary);
}

.features-title p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="light"] .features-title p {
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

[data-theme="light"] .feature-card {
  background: white;
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-sm);
}

[data-theme="light"] .feature-title {
  color: var(--text-primary);
}

.feature-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

[data-theme="light"] .feature-description {
  color: var(--text-secondary);
}

/* === Features Section Responsive === */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .feature-card {
    padding: var(--spacing-md);
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: var(--spacing-sm);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
  }
}

/* === News Preview Responsive === */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-list {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .news-preview {
    padding: var(--spacing-md);
  }
}

.news-preview {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

[data-theme="light"] .news-preview {
  background: white;
  border-color: var(--border-color);
}

.news-preview:hover {
  border-color: var(--primary-color);
}

.news-preview a {
  text-decoration: none;
}

.news-date {
  color: var(--primary-color);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.news-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast);
}

[data-theme="light"] .news-title {
  color: var(--text-primary);
}

.news-preview:hover .news-title {
  color: var(--primary-color);
}

.news-summary {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme="light"] .news-summary {
  color: var(--text-secondary);
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

[data-theme="light"] .news-card {
  background: white;
  border-color: var(--border-color);
}

.news-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.news-card:hover .news-image {
  transform: scale(1.05);
}

.news-content {
  padding: var(--spacing-md);
}

.news-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast);
}

[data-theme="light"] .news-content h3 {
  color: var(--text-primary);
}

.news-card:hover .news-content h3 {
  color: var(--primary-color);
}

.news-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme="light"] .news-content p {
  color: var(--text-secondary);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.news-link:hover {
  color: var(--accent-color);
}

.news-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.news-link:hover svg {
  transform: translateX(4px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
}

[data-theme="light"] .contact-form {
  background: white;
  border-color: var(--border-color);
}

.contact-form h3 {
  color: white;
  margin-bottom: var(--spacing-lg);
}

[data-theme="light"] .contact-form h3 {
  color: var(--text-primary);
}

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

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

[data-theme="light"] .form-group label {
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
  background: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
}

.contact-success {
  text-align: center;
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.contact-success h3 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

[data-theme="light"] .contact-success h3 {
  color: var(--text-primary);
}

.contact-success p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

[data-theme="light"] .contact-success p {
  color: var(--text-secondary);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 50%, var(--bg-dark) 100%);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.page-header-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.page-header-glow-1 {
  background: var(--primary-color);
  top: -100px;
  left: -50px;
}

.page-header-glow-2 {
  background: var(--secondary-color);
  bottom: -100px;
  right: -50px;
}

.page-header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.75rem;
  }
}

.home-page {
  min-height: 100vh;
}

.page-content {
  min-height: 100vh;
  background: var(--bg-dark);
}

[data-theme="light"] .page-content {
  background: var(--bg-light);
}

.category-filter {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.section-title-dark {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title-dark h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: var(--spacing-sm);
}

[data-theme="light"] .section-title-dark h2 {
  color: var(--text-primary);
}

.section-title-dark p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="light"] .section-title-dark p {
  color: var(--text-secondary);
}

.features-section {
  background: var(--bg-dark);
}

[data-theme="light"] .features-section {
  background: var(--bg-light);
}

.products-section {
  background: var(--bg-dark-secondary);
}

[data-theme="light"] .products-section {
  background: var(--bg-light);
}

.news-section {
  background: var(--bg-dark);
}

[data-theme="light"] .news-section {
  background: var(--bg-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 159, 28, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(46, 196, 182, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--spacing-2xl) 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-light:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.news-page {
  min-height: 100vh;
  background: var(--bg-dark);
  padding-top: 80px;
}

[data-theme="light"] .news-page {
  background: var(--bg-light);
}

.news-list {
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-normal);
}

[data-theme="light"] .news-item {
  background: white;
  border-color: var(--border-color);
}

.news-item:hover {
  border-color: var(--primary-color);
}

.news-item a {
  text-decoration: none;
}

.news-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast);
}

[data-theme="light"] .news-item-title {
  color: var(--text-primary);
}

.news-item:hover .news-item-title {
  color: var(--primary-color);
}

.news-item-summary {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

[data-theme="light"] .news-item-summary {
  color: var(--text-secondary);
}

.news-meta {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

[data-theme="light"] .news-meta {
  color: var(--text-muted);
}

.news-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

.news-detail-title {
  font-size: 2rem;
  color: white;
  margin-bottom: var(--spacing-md);
}

[data-theme="light"] .news-detail-title {
  color: var(--text-primary);
}

.news-detail-meta {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

[data-theme="light"] .news-detail-meta {
  color: var(--text-muted);
}

.news-detail-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

[data-theme="light"] .news-detail-content {
  color: var(--text-primary);
}

.news-detail-content h2 {
  font-size: 1.5rem;
  color: white;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

[data-theme="light"] .news-detail-content h2 {
  color: var(--text-primary);
}

.news-detail-content p {
  margin-bottom: var(--spacing-md);
}

.news-detail-content img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: var(--spacing-md) 0;
}

/* === Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }
  
  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-floating-card {
    display: none;
  }
}

/* === Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: var(--spacing-md);
  }
  
  .stat-item .stat-value {
    font-size: 1.75rem;
  }
  
  .stat-item .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-glow {
    width: 400px;
    height: 400px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .section-title-dark h2 {
    font-size: 1.75rem;
  }
}

/* === Small Mobile (max-width: 480px) === */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .hero-glow {
    width: 300px;
    height: 300px;
  }
  
  .hero-scroll-indicator {
    display: none;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
}