/* ============================================
   Home Page - Minimalist Modern SaaS Style
   ============================================ */

/* ---- Section Header Pattern ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ---- Banner Carousel ---- */
#banner {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  padding-bottom: 32.8125%; /* 630 / 1920 */
  height: 0;
}

.carousel-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease-in-out, transform 800ms ease-in-out;
  transform: scale(1.02);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Caption overlay */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 48px 48px;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.4) 60%, transparent 100%);
  color: #fff;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease 300ms, transform 600ms ease 300ms;
}

.carousel-slide.active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

.carousel-caption .caption-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-secondary);
  margin-bottom: 12px;
  padding: 5px 14px;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.25);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.carousel-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.carousel-caption p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  max-width: 480px;
  line-height: 1.6;
}

.carousel-caption .btn-primary {
  box-shadow: 0 4px 16px rgba(0,82,255,0.4);
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 4;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  box-shadow: 0 0 10px rgba(0,82,255,0.5);
  transition: width 0.1s linear;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
}

.carousel-indicators button.active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,82,255,0.6), 0 0 20px rgba(0,82,255,0.3);
  transform: scale(1.3);
}

.carousel-indicators button:hover {
  background: rgba(255,255,255,0.6);
}

/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(0, 82, 255, 0.3);
  border-color: rgba(0, 82, 255, 0.4);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,82,255,0.3);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* ---- Hero Section (text + floating cards) ---- */
#hero {
  padding: 40px 0 60px;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content .section-label {
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

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

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero-ring {
  position: absolute;
  inset: 20px;
  border: 2px dashed rgba(0, 82, 255, 0.2);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

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

.hero-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  animation: float 5s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
}

.hero-card i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  border-radius: 10px;
  font-size: 18px;
}

.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 40%;
  right: 0;
  animation-delay: -1.5s;
}

.card-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: -3s;
}

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

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.04;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ---- Stats Section ---- */
#stats {
  background: var(--foreground);
  padding: 60px 0;
  position: relative;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.stats-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

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

.stat-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,82,255,0.2), rgba(77,124,255,0.15));
  border-radius: 12px;
  color: var(--accent-secondary);
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,82,255,0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-foreground);
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--accent-secondary);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 13px;
  color: var(--muted-foreground);
}

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

/* ---- Features Section ---- */
#features {
  padding: 100px 0;
  background: var(--background);
}

.features-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all var(--transition-medium);
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.feature-card.featured {
  position: relative;
}

.feature-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.feature-link:hover {
  gap: 10px;
}

/* ---- Product Carousel ---- */
#products {
  padding: 100px 0;
  background: var(--muted);
}

.products-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

#carousel {
  position: relative;
}

#carousel-content {
  position: relative;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.nav-arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

#carousel-arrowleft {
  left: -60px;
}

#carousel-arrowleft::before {
  transform: rotate(-135deg);
}

#carousel-arrowright {
  right: -60px;
}

#carousel-arrowright::before {
  transform: rotate(45deg);
}

.nav-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.nav-arrow:hover::before {
  border-color: var(--accent-foreground);
}

#carousel-main {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

#carousel-ul {
  display: flex;
  gap: 20px;
  height: 100%;
  will-change: transform;
}

.solution {
  flex: 0 0 270px;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.solution:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.solution-image {
  height: 220px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.solution:hover .solution-image img {
  transform: scale(1.05);
}

.solution-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--foreground);
}

.item-content {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
}

.item-end {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.item-end a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.item-end a:hover {
  gap: 10px;
}

#carousel-end {
  margin-top: 40px;
  text-align: center;
}

/* ---- Process Section ---- */
#process {
  padding: 100px 0;
  background: var(--background);
}

.process-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.process-step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-medium);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
}

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

.step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0,82,255,0.25);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--muted-foreground);
  font-size: 15px;
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  z-index: 2;
}

/* ---- Highlights Section ---- */
#highlights {
  padding: 100px 0;
  background: var(--muted);
}

.highlights-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.highlight-tech {
  background-size: cover;
  background-position: center;
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
}

.highlight-content {
  position: relative;
  z-index: 1;
  color: white;
}

.highlight-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 14px;
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,82,255,0.3);
}

.highlight-content .highlight-icon {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.highlight-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.highlight-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.highlight-recruit {
  background: var(--card);
  border: 1px solid var(--border);
}

.highlight-recruit h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.highlight-recruit p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 24px;
}

.highlight-image {
  margin-top: auto;
  padding-top: 24px;
}

.highlight-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

/* ---- News Section ---- */
#news {
  padding: 100px 0;
  background: var(--background);
}

.news-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

#news .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  max-width: none;
  margin-bottom: 48px;
}

#news .section-header h2 {
  margin-bottom: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-medium);
}

.news-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.news-category {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(0, 82, 255, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.news-date {
  font-size: 13px;
  color: var(--muted-foreground);
}

.news-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card h3 a {
  color: var(--foreground);
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--accent);
}

.news-card p {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-link:hover {
  gap: 10px;
}

/* ---- CTA Section ---- */
#cta {
  padding: 100px 0;
  background: var(--foreground);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-foreground);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .nav-arrow {
    display: none;
  }
  
  #carousel-main {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  #carousel-ul {
    padding: 0 24px;
  }
  
  .solution {
    scroll-snap-align: start;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step-arrow {
    display: none;
  }
  
  .highlights-container {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-item {
    flex: 0 0 45%;
  }
}

/* Carousel Responsive */
@media (max-width: 1024px) {
  .hero-carousel {
    aspect-ratio: 1920 / 630;
  }
  .carousel-caption {
    padding: 60px 32px 40px;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }
}

@media (max-width: 768px) {
  .hero-carousel {
    aspect-ratio: 1920 / 630;
  }
  .carousel-caption {
    padding: 40px 20px 36px;
  }
  .carousel-caption h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .carousel-caption p {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .carousel-caption .btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-indicators {
    bottom: 12px;
    gap: 8px;
  }
  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 40px 0 60px;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  #features,
  #products,
  #process,
  #highlights,
  #news,
  #cta {
    padding: 48px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 28px 24px;
  }
  
  .process-step {
    padding: 28px 24px;
  }
  
  .step-number {
    font-size: 2.5rem;
  }
  
  .highlight-card {
    min-height: 280px;
    padding: 28px 24px;
  }
  
  .highlight-content h2,
  .highlight-recruit h2 {
    font-size: 1.5rem;
  }
  
  #news .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .news-card {
    padding: 24px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    width: 100%;
  }
  
  #carousel {
    padding: 0 16px;
  }
  
  .solution {
    flex: 0 0 300px;
  }
}
