/* Use Cases List Page Styles */
/* This stylesheet contains all the styles for the use cases list page */

:root {
  --color-primary-blue: #3b82f6;
  --color-text-light: #ffffff;
  --color-text-medium: #afbcd5;
  --color-text-dark: #99a1af;
  --color-text-darker: #6a7282;
  --color-text-darkest: #10182c;
  --color-bg-dark-1: #0a0e27;
  --color-bg-dark-2: #0d1132;
  --color-bg-dark-3: #10182c;
  --color-border-dark: #1e2939;
  --font-family-inter: 'Inter', sans-serif;
  --font-family-jakarta: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-jakarta);
  background: linear-gradient(180deg, #0a0e27 0%, #24338d 100%);
  color: var(--color-text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* CSS for section section:Banner */
.banner-section {
  padding: 12px 24px;
}
.banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: var(--color-text-light);
  border-radius: 20px;
  padding: 8px 24px;
  max-width: 1392px;
  margin: 0 auto;
  position: relative;
}
.banner-text {
  margin: 0;
  color: #0f172b;
  font-family: var(--font-family-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
}
.banner-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #2b7fff;
  color: var(--color-text-light);
  font-family: var(--font-family-inter);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background-color 0.3s;
}
.banner-button:hover {
  background-color: #1a6efd;
}
.banner-arrow {
  width: 9px;
  height: 7.5px;
}
.banner-close-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .banner-container {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    text-align: center;
  }
  .banner-close-btn {
    top: 12px;
    right: 12px;
    transform: none;
  }
}

/* CSS for section section:Header */
.site-header {
  background-color: rgba(15, 23, 43, 0.5);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
#header .header-container {
  display: grid !important;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr) !important;
  align-items: center !important;
  gap: 24px !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(24px, 3vw, 48px) !important;
}
#header .logo {
  justify-self: start !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-column: 1 !important;
}
#header .logo img {
  height: clamp(28px, 2.5vw, 36px) !important;
  width: auto !important;
  display: block !important;
}
.logo-svg-wrapper img {
  pointer-events: none;
}
#header .main-nav {
  justify-self: center !important;
  grid-column: 2 !important;
}
#header .main-nav ul {
  display: flex !important;
  align-items: center !important;
  gap: clamp(20px, 2vw, 32px) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
#header .main-nav a {
  color: #d3d3d3 !important;
  font-size: clamp(13px, 1.2vw, 15px) !important;
  font-weight: 500 !important;
  transition: color 0.3s !important;
  white-space: nowrap !important;
}
#header .main-nav a:hover {
  color: var(--color-text-light) !important;
}
#header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: clamp(8px, 1vw, 12px) !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: end !important;
  grid-column: 3 !important;
}
@media (max-width: 1024px) {
  #header .header-actions {
    display: none !important;
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 1.5vw, 24px);
  border-radius: 999px;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  line-height: 24px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-link {
  background-color: transparent;
  color: var(--color-text-light);
}
.btn-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-primary {
  background-color: var(--color-primary-blue);
  color: var(--color-text-light);
}
.btn-primary:hover {
  background-color: #2573df;
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
/* Large screens (1600px+) */
@media (min-width: 1600px) {
  .header-container {
    padding: 0 48px;
  }
  .main-nav ul {
    gap: 32px;
  }
  .main-nav a {
    font-size: 15px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}
/* Medium to large screens */
@media (max-width: 1440px) {
  .header-container {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  .header-container {
    padding: 0 24px;
  }
  .main-nav ul {
    gap: 20px;
  }
  .main-nav a {
    font-size: 13px;
  }
}
/* Mobile Navigation Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 280px;
  max-width: 90vw;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: rgba(15, 23, 43, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.active {
  display: block;
  transform: translateX(0);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-links a {
  color: #d3d3d3;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  transition: all 0.3s;
  border-radius: 8px;
}
.mobile-menu-links a:hover {
  color: #fff;
  background: rgba(43, 127, 255, 0.1);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
}

@media (max-width: 1024px) {
  #header .header-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 24px !important;
    gap: 16px !important;
  }
  #header .logo {
    justify-self: flex-start !important;
    grid-column: unset !important;
  }
  #header .main-nav {
    display: none !important;
  }
  #header .mobile-nav-toggle {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
  }
  .mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-light);
    transition: all 0.3s;
  }
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}
@media (max-width: 768px) {
  #header .header-container {
    padding: 0 20px !important;
  }
  .mobile-menu {
    top: 65px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 16px;
    right: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  .mobile-menu-links a {
    font-size: 15px;
    padding: 12px;
  }
  .mobile-menu-actions .btn {
    font-size: 15px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  #header .header-container {
    padding: 0 16px !important;
  }
  .mobile-menu {
    top: 60px;
    padding: 12px;
  }
  .mobile-menu-links {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .mobile-menu-links a {
    font-size: 14px;
    padding: 10px;
  }
  .mobile-menu-actions {
    gap: 10px;
  }
  .mobile-menu-actions .btn {
    font-size: 14px;
    padding: 10px 12px;
    white-space: nowrap;
  }
}

/* CSS for section section:Hero */
.hero-section {
  text-align: center;
  padding: 96px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1200px, 100%, 2000px);
  height: 633px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0.16%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.05;
  z-index: 0;
}
.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.hero-tag {
  background-color: var(--color-primary-blue);
  color: var(--color-text-light);
  font-size: clamp(13px, 1.2vw, 15px);
  padding: 9px 28px;
  border-radius: 999px;
  display: inline-block;
}
.hero-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  max-width: clamp(700px, 80%, 1000px);
}
.hero-title strong {
  font-weight: 700;
}
.hero-description {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--color-text-dark);
  max-width: clamp(700px, 75%, 950px);
  margin: 0;
}
.hero-stats {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  background-color: rgba(13, 17, 50, 0.5);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: clamp(20px, 2vw, 28px);
  min-width: clamp(150px, 15vw, 190px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.stat-number--green { color: #05df72; }
.stat-number--blue { color: #51a2ff; }
.stat-number--purple { color: #c27aff; }
.stat-label {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  color: var(--color-text-dark);
}
/* Large screens */
@media (min-width: 1600px) {
  .hero-section {
    padding: 120px 0;
  }
  .hero-container {
    max-width: 1600px;
  }
  .hero-title {
    font-size: 72px;
  }
  .hero-description {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 64px 0;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-description {
    font-size: 18px;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-item {
    min-width: 140px;
    padding: 16px;
  }
}

/* CSS for section section:UseCases */
.use-cases-section {
  background-color: var(--color-bg-dark-2);
  padding: clamp(24px, 3vw, 48px) clamp(20px, 5vw, 120px) clamp(60px, 8vw, 120px);
  width: 100%;
  overflow: hidden;
}
.use-cases-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.search-bar {
  position: relative;
  flex-grow: 1;
  max-width: clamp(350px, 40vw, 500px);
}
.search-bar input {
  width: 100%;
  background-color: var(--color-bg-dark-1);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: 12px 16px 12px 48px;
  color: var(--color-text-light);
  font-size: clamp(14px, 1.2vw, 16px);
  font-family: var(--font-family-jakarta);
}
.search-bar input::placeholder {
  color: var(--color-text-darker);
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.filter-buttons {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  flex-wrap: wrap;
}
.filter-icon {
  width: 20px;
  height: 20px;
}
.filter-btn {
  background-color: var(--color-bg-dark-1);
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-dark);
  padding: clamp(6px, 1vw, 10px) clamp(12px, 1.5vw, 18px);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-family-jakarta);
  font-size: clamp(13px, 1.1vw, 15px);
  transition: all 0.3s;
  white-space: nowrap;
}
.filter-btn:hover {
  background-color: #1a1e3a;
  color: var(--color-text-light);
}
.filter-btn.active {
  background-color: #155dfc;
  color: var(--color-text-light);
  border-color: #155dfc;
  box-shadow: 0px 4px 6px -4px rgba(21, 93, 252, 0.3), 0px 10px 15px -3px rgba(21, 93, 252, 0.3);
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 30vw, 380px), 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1600px;
  margin: 0 auto;
}
/* Large screens - optimize grid for better use of space */
@media (min-width: 1600px) {
  .use-cases-section {
    padding: 48px 120px 120px;
  }
  .use-cases-grid {
    max-width: 1800px;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
  }
}
@media (min-width: 2000px) {
  .use-cases-grid {
    max-width: 2000px;
  }
}
.card {
  background-color: var(--color-bg-dark-2);
  border: 2px solid var(--color-border-dark);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--color-primary-blue);
  transform: translateY(-5px);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid;
}
.icon-basic { background-color: rgba(0, 201, 80, 0.1); border-color: rgba(0, 201, 80, 0.3); }
.icon-basic-plus { background-color: rgba(0, 187, 167, 0.1); border-color: rgba(0, 187, 167, 0.3); }
.icon-intermediate { background-color: rgba(43, 127, 255, 0.1); border-color: rgba(43, 127, 255, 0.3); }
.icon-intermediate-plus { background-color: rgba(173, 70, 255, 0.1); border-color: rgba(173, 70, 255, 0.3); }

.card-tag {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid;
}
.tag-basic { background-color: rgba(0, 201, 80, 0.1); border-color: rgba(0, 201, 80, 0.3); color: #05df72; }
.tag-basic-plus { background-color: rgba(0, 187, 167, 0.1); border-color: rgba(0, 187, 167, 0.3); color: #00d5be; }
.tag-intermediate { background-color: rgba(43, 127, 255, 0.1); border-color: rgba(43, 127, 255, 0.3); color: #51a2ff; }
.tag-intermediate-plus { background-color: rgba(173, 70, 255, 0.1); border-color: rgba(173, 70, 255, 0.3); color: #c27aff; }

.card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-light);
  margin: 0;
  min-height: 56px;
}
.card-description {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin: 0;
  flex-grow: 1;
}
.card-footer {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-date {
  font-size: 14px;
  color: var(--color-text-darker);
}
.card-learn-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #51a2ff;
}
@media (max-width: 992px) {
  .use-cases-controls {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Footer */
.site-footer-main {
  background: linear-gradient(180deg, rgba(16, 24, 44, 0.3) 0%, #10182c 100%);
  padding: 48px 0 20px;
  width: 100%;
}
.site-footer-main .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 410px;
}
.footer-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}
.footer-description strong {
  font-weight: 800;
}
.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.subscribe-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-medium);
  margin: 0;
}
.subscribe-form {
  display: flex;
  gap: 8px;
}
.subscribe-form input {
  flex-grow: 1;
  background-color: #f5f5f5;
  border: 0.5px solid #e5e5e5;
  border-radius: 12px;
  padding: 8px 12px;
  font-family: var(--font-family-jakarta);
  font-size: 16px;
  color: var(--color-text-darkest);
}
.subscribe-form input::placeholder {
  color: rgba(16, 24, 44, 0.5);
}
.btn-beta {
  background-color: var(--color-primary-blue);
  color: var(--color-text-light);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.btn-beta:hover {
  background-color: #2573df;
  color: var(--color-text-light);
}
.subscribe-terms {
  font-size: 12px;
  color: var(--color-text-medium);
  margin: -6px 0 0 0;
}
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding: 32px 0;
  animation: fadeInUp 0.6s ease-out;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.pagination-btn:hover:not(.disabled) {
  background: rgba(43, 127, 255, 0.2);
  border-color: rgba(43, 127, 255, 0.5);
  transform: translateY(-2px);
}
.pagination-btn.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination-btn img {
  width: 12px;
  height: 12px;
}
.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}
.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.pagination-number:hover {
  background: rgba(43, 127, 255, 0.2);
  border-color: rgba(43, 127, 255, 0.5);
  transform: translateY(-2px);
}
.pagination-number.active {
  background: var(--color-primary-blue);
  border-color: var(--color-primary-blue);
  color: white;
  cursor: default;
}
.pagination-ellipsis {
  color: var(--color-text-light);
  padding: 0 8px;
  opacity: 0.5;
}
.pagination-info {
  color: var(--color-text-medium);
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}

/* Pagination responsive styles */
@media (max-width: 768px) {
  .pagination {
    gap: 4px;
  }
  .pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 6px 8px;
  }
  .pagination-number {
    min-width: 36px;
    height: 36px;
    padding: 6px;
    font-size: 13px;
  }
  .pagination-first,
  .pagination-last {
    display: none;
  }
  .pagination-numbers {
    margin: 0 4px;
  }
  .pagination-info {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 2px;
  }
  .pagination-btn,
  .pagination-number {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .pagination-numbers {
    display: none;
  }
  .pagination-container {
    margin-top: 32px;
    padding: 24px 0;
  }
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--color-text-medium);
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--color-text-light);
}
.footer-bottom {
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.copyright, .footer-legal a {
  font-size: 12px;
  color: #7c7c7c;
  margin: 0;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal .separator {
  width: 2px;
  height: 2px;
  background-color: #7c7c7c;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 48px;
  }
  .footer-nav {
    text-align: left;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Hero animation */
.fade-in-hero {
  animation: fadeInDown 0.8s ease-out forwards;
}

.hero-tag {
  animation: fadeIn 0.6s ease-out 0.2s backwards;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-description {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.stat-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(21, 93, 252, 0.2);
}

/* Card animations */
.card.animate-ready {
  opacity: 0;
  transform: translateY(30px);
}

.card.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(21, 93, 252, 0.15);
}

.card-icon-wrapper {
  transition: transform 0.3s ease;
}

.card:hover .card-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

/* Search and filter animations */
.search-bar input {
  transition: all 0.3s ease;
}

.search-bar input:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.1);
  transform: scale(1.02);
}

.filter-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(21, 93, 252, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.filter-btn:active {
  transform: scale(0.95);
}

.btn-edit-use-cases {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #364153;
  color: var(--color-text-light);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-left: 12px;
}
.btn-edit-use-cases img {
  width: 16px;
  height: 16px;
}
.btn-edit-use-cases:hover {
  background-color: #455366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Button animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:active {
  transform: scale(0.96);
}

/* Banner animation */
.banner-section {
  animation: fadeInDown 0.5s ease-out;
}

.banner-button {
  transition: all 0.3s ease;
}

.banner-button:hover {
  transform: translateX(3px);
}

.banner-button:hover .banner-arrow {
  animation: pulse 0.6s ease-in-out infinite;
}

/* Empty state animation */
.empty-state {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Loading state shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Utility animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating animation for stat items */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Enhanced card hover effects */
.card {
  transform-style: preserve-3d;
  will-change: transform;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.1) 0%, rgba(173, 70, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.card:hover::after {
  opacity: 1;
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax background */
.hero-bg-overlay {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Responsive Typography */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(40px, 6vw, 60px);
  }
  .hero-description {
    font-size: clamp(16px, 2vw, 20px);
  }
  .use-cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.2;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }
  .stat-item {
    min-width: auto;
    padding: 20px;
  }
  .use-cases-section {
    padding: 32px 20px 60px;
  }
  .use-cases-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .search-bar {
    max-width: 100%;
  }
  .filter-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-edit-use-cases {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card {
    padding: 20px;
  }
  .card-title {
    font-size: 18px;
    min-height: auto;
  }
  .banner-container {
    flex-direction: column;
    padding: 12px 16px;
    gap: 8px;
  }
  .banner-text {
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #header .header-container {
    padding: 0 16px !important;
  }
  #header .logo img {
    height: 24px !important;
  }
  .hero-section {
    padding: 40px 16px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-tag {
    font-size: 12px;
    padding: 8px 20px;
  }
  .hero-description {
    font-size: 14px;
    padding: 0 8px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-item {
    padding: 16px 12px;
  }
  .stat-number {
    font-size: 24px;
  }
  .stat-label {
    font-size: 12px;
  }
  .use-cases-section {
    padding: 24px 16px 48px;
  }
  .search-bar input {
    font-size: 14px;
    padding: 12px 12px 12px 40px;
  }
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  .btn-edit-use-cases {
    font-size: 13px;
    padding: 8px 16px;
  }
  .card {
    padding: 16px;
  }
  .card-title {
    font-size: 16px;
  }
  .card-description {
    font-size: 13px;
  }
  .empty-state {
    padding: 40px 16px;
  }
  .empty-state h2 {
    font-size: 20px;
  }
  .empty-state p {
    font-size: 14px;
  }
  .site-footer-main {
    padding: 32px 16px 16px;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-nav h3 {
    font-size: 14px;
  }
  .footer-nav a {
    font-size: 13px;
  }
  .newsletter-form input {
    font-size: 14px;
  }
  .pagination-info {
    font-size: 12px;
  }
}

/* Smooth grid transitions */
.use-cases-grid {
  transition: all 0.3s ease;
}

/* Loading skeleton for better UX */
@keyframes skeletonLoading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s ease-in-out infinite;
}

/* Enhance mobile nav toggle */
@media (max-width: 1024px) {
  .mobile-nav-toggle span {
    transition: all 0.3s ease;
  }

  .mobile-nav-toggle:hover span {
    background-color: #51a2ff;
  }
}

/* Better focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary-blue);
  outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .float-animation {
    animation: none;
  }
}

/* Print styles */
@media print {
  .banner-section,
  .site-header,
  .use-cases-controls,
  .site-footer-main {
    display: none;
  }

  .card {
    page-break-inside: avoid;
    border: 1px solid #000;
  }
}

