*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  --bs-navbar-color: #94a3b8;
  --bs-nav-link-color: #94a3b8;
  --bs-emphasis-color-rgb: 255, 255, 255;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background-color: #1b284e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.no-transition,
.no-transition *,
.no-transition *::before,
.no-transition *::after {
  transition: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: #94a3b8;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary-color {
  color: #00d4ff;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.section-alt {
  background-color: #0d1321;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  border-radius: 9999px;
  transition: all 250ms ease-in-out;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
}

.btn-primary {
  background: #00d4ff;
  color: #050810;
  border-color: #00d4ff;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.4), 0 4px 8px -2px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
  background: #5ce1ff;
  border-color: #5ce1ff;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.45), 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: #00d4ff;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.btn-ghost {
  background: transparent;
  color: #94a3b8;
  border-color: transparent;
  padding: 0.625rem 1.25rem;
}
.btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 4rem;
  background: rgba(27, 40, 78, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 250ms ease-in-out;
  --bs-navbar-color: #94a3b8;
  --bs-nav-link-color: #94a3b8;
}
@media (min-width: 992px) {
  .navbar {
    height: 4.5rem;
  }
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand .navbar-logo {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-nav {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 991px) {
  .navbar.is-open .navbar-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(27, 40, 78, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    z-index: 1030;
  }
}

.navbar .navbar-nav .nav-link,
.navbar-nav .nav-link,
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8 !important;
  border-radius: 0.5rem;
  transition: all 150ms ease-in-out;
}
.navbar .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:hover,
.nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 991px) {
  .navbar .navbar-nav .nav-link,
  .navbar-nav .nav-link,
  .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }
}

.navbar-mobile-cta {
  display: block;
  margin: 0.5rem 1.5rem 0.25rem;
}
@media (min-width: 992px) {
  .navbar-mobile-cta {
    display: none;
  }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .navbar-actions .btn-sm {
    display: none;
  }
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 150ms ease-in-out;
}
.navbar-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar.scrolled {
  background: rgba(27, 40, 78, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(0, 212, 255, 0.12);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(99, 102, 241, 0.1) 0%, transparent 40%), #1b284e;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    padding-top: 3rem;
    min-height: 100vh;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .hero-stats {
    gap: 3rem;
  }
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1rem;
  color: #94a3b8;
}
@media (min-width: 768px) {
  .section-description {
    font-size: 1.125rem;
  }
}

.problem-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  padding: 1.5rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 250ms ease-in-out;
}
@media (min-width: 768px) {
  .problem-card {
    padding: 2rem;
  }
}
.problem-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}
.problem-card .problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.problem-card .problem-icon i {
  font-size: 1.25rem;
  color: #f59e0b;
}
.problem-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.problem-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

.solution-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .solution-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.solution-text h2 {
  margin-bottom: 1.5rem;
}
.solution-text p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.benefit-item .benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 0.25rem;
  margin-top: 2px;
}
.benefit-item .benefit-icon i {
  font-size: 0.875rem;
  color: #10b981;
}
.benefit-item span {
  color: #94a3b8;
  font-size: 1rem;
}

.solution-visual {
  position: relative;
}
.solution-visual .solution-card {
  padding: 2rem;
  background: linear-gradient(145deg, #111827 0%, rgba(17, 24, 39, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
}
.solution-visual .solution-card .card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.solution-visual .solution-card .card-header .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-visual .solution-card .card-header .card-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}
.solution-visual .solution-card .card-header .card-title h4 {
  margin-bottom: 0.25rem;
}
.solution-visual .solution-card .card-header .card-title span {
  font-size: 0.875rem;
  color: #64748b;
}
.solution-visual .solution-card .card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.solution-visual .solution-card .card-features .feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
.solution-visual .solution-card .card-features .feature-row i {
  color: #10b981;
  font-size: 0.875rem;
}

.products-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.product-card {
  padding: 2rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 250ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease-in-out;
}
.product-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-card:hover .product-icon {
  background: rgba(0, 212, 255, 0.2);
}
.product-card:hover .product-icon i {
  color: #00d4ff;
}
.product-card .product-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: all 250ms ease-in-out;
}
.product-card .product-icon i {
  font-size: 1.5rem;
  color: #94a3b8;
  transition: all 250ms ease-in-out;
}
.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.product-card p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.product-card .product-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card .product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
.product-card .product-features .feature-item i {
  color: #00d4ff;
  font-size: 0.75rem;
}

.features-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  padding: 1.5rem;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  transition: all 250ms ease-in-out;
}
.feature-card:hover {
  background: #111827;
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
}
.feature-card .feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.feature-card .feature-icon i {
  font-size: 1.125rem;
  color: #00d4ff;
}
.feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

.steps-container {
  display: grid;
  gap: 2rem;
  position: relative;
}
@media (min-width: 992px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.steps-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #6366f1);
  opacity: 0.3;
  display: none;
}
@media (min-width: 992px) {
  .steps-container::before {
    display: block;
  }
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-card .step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  position: relative;
}
.step-card .step-number::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.3);
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 1rem;
  color: #64748b;
  max-width: 300px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-card {
  padding: 2rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 250ms ease-in-out;
}
.why-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: #1a2236;
}
.why-card .why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 1rem;
  margin-bottom: 1.25rem;
}
.why-card .why-icon i {
  font-size: 1.25rem;
  color: #10b981;
}
.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  position: relative;
}
.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.25rem;
  color: rgba(0, 212, 255, 0.1);
  line-height: 1;
}
.testimonial-card .testimonial-text {
  font-size: 1rem;
  color: #94a3b8;
  font-style: italic;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
}
.testimonial-card .testimonial-author .author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.testimonial-card .testimonial-author .author-info span {
  font-size: 0.875rem;
  color: #64748b;
}

.cta-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-box {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  border-radius: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-box {
    padding: 4rem 3rem;
  }
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-box .cta-content {
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-box h2 {
    font-size: 1.875rem;
  }
}
.cta-box p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-box .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 576px) {
  .cta-box .cta-buttons {
    flex-direction: row;
  }
}
.cta-box .cta-buttons .btn-light {
  background: #ffffff;
  color: #4f46e5;
  border: none;
}
.cta-box .cta-buttons .btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}
.cta-box .cta-buttons .btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-box .cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.footer {
  padding: 3rem 0 2rem;
  background: #050810;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.footer-services {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

.footer-address {
  font-size: 0.875rem;
  color: #64748b;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  line-height: 1.625;
}
.footer-address i {
  color: #00d4ff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #64748b;
  font-size: 1rem;
  transition: all 150ms ease-in-out;
}
.social-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  transform: translateY(-2px);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.notify {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1070;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 520px;
  width: calc(100% - 2rem);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  animation: notifySlideIn 0.3s ease-out;
}
.notify i {
  font-size: 1.125rem;
  flex-shrink: 0;
}
.notify span {
  flex: 1;
}

.notify-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.notify-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

.notify-close {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.7;
  padding: 0 0 0 0.25rem;
  flex-shrink: 0;
}
.notify-close:hover {
  opacity: 1;
}

@keyframes notifySlideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.contact-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.025em;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out, background 150ms ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder {
  color: #64748b;
}
.form-input:hover {
  border-color: rgba(0, 212, 255, 0.3);
}
.form-input:focus {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.625;
}

.form-submit {
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  cursor: pointer;
  color: #94a3b8;
  font-size: 1rem;
  transition: all 150ms ease-in-out;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.theme-toggle .icon-light {
  display: none;
}
.theme-toggle .icon-dark {
  display: block;
}

[data-theme=light] {
  --bs-navbar-color: #475569;
  --bs-nav-link-color: #475569;
  --bs-emphasis-color-rgb: 15, 23, 42;
}
[data-theme=light] body {
  color: #0f172a;
  background-color: #f8fafc;
}
[data-theme=light] h1, [data-theme=light] h2, [data-theme=light] h3, [data-theme=light] h4, [data-theme=light] h5, [data-theme=light] h6 {
  color: #0f172a;
}
[data-theme=light] p {
  color: #475569;
}
[data-theme=light] a {
  color: inherit;
}
[data-theme=light] .section-alt {
  background-color: #f1f5f9;
}
[data-theme=light] .trust-bar {
  background: #f1f5f9;
  border-top-color: rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .navbar {
  background: rgba(248, 250, 252, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  --bs-navbar-color: #475569;
  --bs-nav-link-color: #475569;
}
[data-theme=light] .navbar.is-open .navbar-nav {
  background: rgba(248, 250, 252, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .navbar .navbar-nav .nav-link,
[data-theme=light] .navbar-nav .nav-link,
[data-theme=light] .nav-link {
  color: #475569 !important;
}
[data-theme=light] .navbar .navbar-nav .nav-link:hover,
[data-theme=light] .navbar-nav .nav-link:hover,
[data-theme=light] .nav-link:hover {
  color: #0f172a !important;
  background: rgba(0, 0, 0, 0.04);
}
[data-theme=light] .navbar-toggle span {
  background: #0f172a;
}
[data-theme=light] .theme-toggle {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}
[data-theme=light] .theme-toggle:hover {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .theme-toggle .icon-light {
  display: block;
}
[data-theme=light] .theme-toggle .icon-dark {
  display: none;
}
[data-theme=light] .hero {
  background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.08) 0%, transparent 50%), radial-gradient(ellipse at bottom right, rgba(99, 102, 241, 0.06) 0%, transparent 40%), #f8fafc;
}
[data-theme=light] .hero-subtitle {
  color: #475569;
}
[data-theme=light] .hero-stats {
  border-top-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .stat-value {
  color: #0f172a;
}
[data-theme=light] .stat-label {
  color: #94a3b8;
}
[data-theme=light] .btn-outline {
  color: #0f172a;
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme=light] .btn-outline:hover {
  border-color: #00d4ff;
  color: #00a8cc;
  background: rgba(0, 212, 255, 0.05);
}
[data-theme=light] .section-description {
  color: #475569;
}
[data-theme=light] .problem-card,
[data-theme=light] .product-card,
[data-theme=light] .why-card,
[data-theme=light] .testimonial-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .problem-card:hover,
[data-theme=light] .product-card:hover,
[data-theme=light] .why-card:hover,
[data-theme=light] .testimonial-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
}
[data-theme=light] .problem-card p,
[data-theme=light] .product-card p,
[data-theme=light] .why-card p,
[data-theme=light] .testimonial-card p {
  color: #64748b;
}
[data-theme=light] .feature-card {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme=light] .feature-card:hover {
  background: #ffffff;
  border-color: rgba(0, 212, 255, 0.2);
}
[data-theme=light] .feature-card p {
  color: #64748b;
}
[data-theme=light] .solution-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .solution-card .card-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .solution-card .card-header .card-title span {
  color: #94a3b8;
}
[data-theme=light] .solution-card .feature-row {
  color: #475569;
}
[data-theme=light] .benefit-item span {
  color: #475569;
}
[data-theme=light] .step-card p {
  color: #64748b;
}
[data-theme=light] .steps-container::before {
  opacity: 0.2;
}
[data-theme=light] .steps-vertical .step-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .steps-vertical .step-card:hover {
  border-color: rgba(0, 168, 204, 0.3);
}
[data-theme=light] .steps-vertical .step-card h3 {
  color: #0f172a;
}
[data-theme=light] .steps-vertical .step-card .step-number {
  background: rgba(0, 168, 204, 0.1);
  border-color: rgba(0, 168, 204, 0.25);
  color: #00a8cc;
}
[data-theme=light] .testimonial-text {
  color: #475569;
}
[data-theme=light] .author-info span {
  color: #94a3b8;
}
[data-theme=light] .quote-icon {
  color: rgba(0, 212, 255, 0.15) !important;
}
[data-theme=light] .footer {
  background: #e2e8f0;
  border-top-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .footer-tagline {
  color: #475569;
}
[data-theme=light] .footer-services {
  color: #94a3b8;
}
[data-theme=light] .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.06);
}
[data-theme=light] .footer-bottom p {
  color: #94a3b8;
}
[data-theme=light] .footer-address {
  color: #64748b;
}
[data-theme=light] .social-link {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #94a3b8;
}
[data-theme=light] .social-link:hover {
  background: rgba(0, 168, 204, 0.08);
  border-color: rgba(0, 168, 204, 0.25);
  color: #00a8cc;
}
[data-theme=light] .product-features .feature-item {
  color: #475569;
}
[data-theme=light] .why-card:hover {
  background: #f8fafc;
}
[data-theme=light] .notify-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #059669;
}
[data-theme=light] .notify-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
[data-theme=light] .form-label {
  color: #475569;
}
[data-theme=light] .form-input {
  color: #0f172a;
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}
[data-theme=light] .form-input::placeholder {
  color: #94a3b8;
}
[data-theme=light] .form-input:hover {
  border-color: rgba(0, 172, 204, 0.4);
}
[data-theme=light] .form-input:focus {
  border-color: #00a8cc;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.12);
}

.breadcrumb-nav {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .breadcrumb-nav {
    margin-top: 3rem;
  }
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.breadcrumb-item a {
  color: #64748b;
  transition: color 150ms ease-in-out;
}
.breadcrumb-item a:hover {
  color: #00d4ff;
}

.breadcrumb-sep {
  color: #64748b;
  font-size: 0.75rem;
  user-select: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: none;
  display: none;
}

.breadcrumb-current {
  color: #94a3b8;
  font-weight: 500;
}

.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1321;
}

.trust-regions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
}
.trust-regions .region-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 9999px;
  color: #94a3b8;
}
.trust-regions .region-tag i {
  color: #00d4ff;
  font-size: 0.75rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .trust-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-stat {
  text-align: center;
}
.trust-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00d4ff;
  display: block;
}
.trust-stat .stat-label {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  margin-top: 0.25rem;
}

.cta-inline-band {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.cta-inline-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-inline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .cta-inline-title {
    font-size: 1.5rem;
  }
}

.cta-inline-sub {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.related-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-links-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 576px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links-col a {
  font-size: 0.875rem;
  color: #64748b;
  padding: 0.25rem 0;
  transition: color 150ms ease-in-out;
}
.footer-links-col a:hover {
  color: #00d4ff;
}

.footer-links-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.content-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.content-narrow h2 {
  margin-top: 2rem;
}
.content-narrow h2:first-child {
  margin-top: 0;
}
.content-narrow h3 {
  margin-top: 1.5rem;
}
.content-narrow a {
  color: #00d4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content-narrow a:hover {
  color: rgb(51, 220.6, 255);
}

.prose p, .prose li {
  line-height: 1.625;
  color: #94a3b8;
}
.prose p {
  margin-bottom: 1rem;
}
.prose a {
  color: #00d4ff;
}
.prose a:hover {
  text-decoration: underline;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: #94a3b8;
  line-height: 1.625;
}
.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
}
.styled-list li strong {
  color: #ffffff;
}

.benefits-list {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.benefit-item .benefit-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 0.5rem;
  margin-top: 0.1rem;
}
.benefit-item .benefit-icon i {
  font-size: 1rem;
  color: #00d4ff;
}
.benefit-item .benefit-text h3, .benefit-item .benefit-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.benefit-item .benefit-text p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

.use-cases-list {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .use-cases-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .use-cases-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-case-item {
  padding: 1.25rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
  transition: border-color 250ms ease-in-out;
}
.use-case-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}
.use-case-item strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 250ms ease-in-out;
}
.faq-item[open] {
  border-color: rgba(0, 212, 255, 0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: #111827;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.875rem;
  color: #64748b;
  transition: transform 150ms ease-in-out;
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] .faq-question::after {
  transform: rotate(180deg);
}
.faq-question:hover {
  background: rgba(0, 212, 255, 0.04);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.625;
  background: #111827;
}

.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: static;
  max-width: 860px;
  margin: 0 auto;
}
.steps-vertical::before {
  display: none;
}
.steps-vertical .step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  position: static;
  text-align: left;
  transition: border-color 250ms ease-in-out;
}
.steps-vertical .step-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
}
.steps-vertical .step-card .step-number {
  flex-shrink: 0;
  margin: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 800;
  color: #00d4ff;
}
.steps-vertical .step-card .step-body {
  flex: 1;
  min-width: 0;
}
.steps-vertical .step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.steps-vertical .step-card p {
  font-size: 0.875rem;
  color: #64748b;
  max-width: none;
  margin-bottom: 0;
}
.steps-vertical .step-card p a {
  color: #00d4ff;
}
.steps-vertical .step-card p a:hover {
  text-decoration: underline;
}

.hero-service {
  min-height: 60vh;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .hero-service {
    min-height: 65vh;
    padding-top: 3rem;
  }
}

.related-solutions {
  padding: 3rem 0;
}

.related-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 576px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 250ms ease-in-out;
  color: #ffffff;
}
.related-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.4), 0 4px 8px -2px rgba(0, 0, 0, 0.3);
  color: #00d4ff;
}
.related-card .related-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 1.25rem;
  color: #00d4ff;
}
.related-card .related-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-split {
  display: grid;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-left {
  text-align: center;
}
@media (min-width: 992px) {
  .hero-left {
    text-align: left;
  }
  .hero-left .hero-badge {
    justify-content: flex-start;
  }
  .hero-left .hero-cta {
    justify-content: flex-start;
  }
  .hero-left .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-left .hero-stats {
    justify-items: start;
  }
  .hero-left .stat-item {
    text-align: left;
  }
}

.hero-right {
  display: none;
  position: relative;
}
@media (min-width: 992px) {
  .hero-right {
    display: block;
  }
}

.platform-mockup {
  position: relative;
  user-select: none;
}
@media (min-width: 992px) {
  .platform-mockup {
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) scale(0.98);
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .platform-mockup:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg) scale(1);
  }
}

.mockup-browser {
  background: #111827;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 212, 255, 0.12), 0 0 100px rgba(99, 102, 241, 0.07);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.6rem 1rem;
  background: #050810;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) {
  background: #ff5f57;
}
.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}
.mockup-dots span:nth-child(3) {
  background: #28c840;
}

.mockup-address {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mockup-address i {
  color: #10b981;
  font-size: 0.65rem;
}

.mockup-screen {
  display: flex;
  height: 300px;
}
@media (min-width: 768px) {
  .mockup-screen {
    height: 360px;
  }
}

.mockup-sidebar {
  width: 48px;
  background: rgba(5, 8, 16, 0.85);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 0.625rem;
}
.mockup-sidebar .mockup-nav-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}
.mockup-sidebar .mockup-nav-item.active {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.mockup-main {
  flex: 1;
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-width: 0;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.mockup-ticker {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.mockup-ticker .ticker-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mockup-ticker .ticker-price {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}
.mockup-ticker .ticker-change {
  font-size: 0.75rem;
  font-weight: 600;
}
.mockup-ticker .ticker-change.positive {
  color: #10b981;
}
.mockup-ticker .ticker-change.negative {
  color: #ef4444;
}

.mockup-cta-row {
  display: flex;
  gap: 0.375rem;
  flex-shrink: 0;
}

.mockup-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.mockup-btn.buy {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.mockup-btn.sell {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.mockup-chart {
  flex: 1;
  min-height: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}
.mockup-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mockup-assets {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mockup-asset {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.mockup-asset .asset-sym {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00d4ff;
  flex-shrink: 0;
}
.mockup-asset .asset-name {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-asset .asset-price {
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.mockup-asset .asset-price.positive {
  color: #10b981;
}
.mockup-asset .asset-price.negative {
  color: #ef4444;
}

.mockup-pill {
  position: absolute;
  bottom: -0.875rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: #111827;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.4), 0 4px 8px -2px rgba(0, 0, 0, 0.3), 0 0 16px rgba(16, 185, 129, 0.15);
  white-space: nowrap;
}
.mockup-pill i {
  font-size: 0.7rem;
}
.mockup-pill .mockup-live-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1030;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  background: #00d4ff;
  color: #050810;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.45), 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  transition: all 250ms ease-in-out;
  white-space: nowrap;
  text-decoration: none;
}
.floating-cta-btn i {
  font-size: 1rem;
  flex-shrink: 0;
}
.floating-cta-btn:hover {
  background: #5ce1ff;
  color: #050810;
  box-shadow: 0 6px 32px rgba(0, 212, 255, 0.6), 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}
@media (max-width: 575px) {
  .floating-cta-btn .cta-label {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-stagger > *.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger > *:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-stagger > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger > *:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal-stagger > *:nth-child(5) {
  transition-delay: 0.32s;
}
.reveal-stagger > *:nth-child(6) {
  transition-delay: 0.4s;
}
.reveal-stagger > *:nth-child(7) {
  transition-delay: 0.48s;
}
.reveal-stagger > *:nth-child(8) {
  transition-delay: 0.56s;
}
.reveal-stagger > *:nth-child(9) {
  transition-delay: 0.64s;
}
.reveal-stagger > *:nth-child(10) {
  transition-delay: 0.72s;
}
.reveal-stagger > *:nth-child(11) {
  transition-delay: 0.8s;
}
.reveal-stagger > *:nth-child(12) {
  transition-delay: 0.88s;
}

[data-theme=light] .navbar.scrolled {
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.07);
}
[data-theme=light] .btn-primary {
  background: #00a8cc;
  border-color: #00a8cc;
  color: #ffffff;
}
[data-theme=light] .btn-primary:hover {
  background: #00d4ff;
  border-color: #00d4ff;
  color: #050810;
  box-shadow: 0 0 24px rgba(0, 168, 204, 0.35), 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}
[data-theme=light] .btn-outline {
  color: #0f172a;
  border-color: rgba(0, 0, 0, 0.18);
}
[data-theme=light] .btn-outline:hover {
  border-color: #00a8cc;
  color: #00a8cc;
  background: rgba(0, 212, 255, 0.06);
}
[data-theme=light] .mockup-browser {
  background: #ffffff;
  border-color: rgba(0, 168, 204, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(0, 168, 204, 0.08);
}
[data-theme=light] .mockup-bar {
  background: #f1f5f9;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .mockup-screen {
  background: #f8fafc;
}
[data-theme=light] .mockup-sidebar {
  background: #f1f5f9;
  border-right-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .mockup-sidebar .mockup-nav-item.active {
  background: rgba(0, 168, 204, 0.12);
  color: #00a8cc;
}
[data-theme=light] .mockup-main {
  background: #f8fafc;
}
[data-theme=light] .mockup-ticker .ticker-price {
  color: #0f172a;
}
[data-theme=light] .mockup-asset {
  background: rgba(0, 0, 0, 0.025);
  border-color: rgba(0, 0, 0, 0.07);
}
[data-theme=light] .mockup-asset .asset-name {
  color: #475569;
}
[data-theme=light] .mockup-pill {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-theme=light] .floating-cta-btn {
  background: #00a8cc;
  color: #ffffff;
}
[data-theme=light] .floating-cta-btn:hover {
  background: #00d4ff;
  color: #050810;
}

.hero-simple {
  min-height: 58vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 992px) {
  .hero-simple {
    min-height: 62vh;
    padding-top: 4.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.section-sub {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-sub {
    font-size: 1.125rem;
  }
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: border-color 250ms ease-in-out;
}
@media (max-width: 575px) {
  .step-item {
    flex-direction: column;
    gap: 0.875rem;
  }
}
.step-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
}
.step-item .step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: #00d4ff;
}
.step-item .step-content {
  flex: 1;
  min-width: 0;
}
.step-item .step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.step-item .step-content p {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 0;
}
.step-item .step-content p a {
  color: #00d4ff;
}
.step-item .step-content p a:hover {
  text-decoration: underline;
}

a.feature-card,
.feature-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: #ffffff;
}
a.feature-card:hover,
.feature-card-link:hover {
  color: #ffffff;
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  padding-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00d4ff;
}
.feature-link i {
  font-size: 0.75rem;
  transition: transform 150ms ease-in-out;
}

a.feature-card:hover .feature-link i,
.feature-card-link:hover .feature-link i {
  transform: translateX(4px);
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.feature-card ul li {
  padding: 0.3rem 0;
  font-size: 0.75rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.625;
}
.feature-card ul li:first-child {
  border-top: none;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.875rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose table thead tr {
  background: rgba(0, 212, 255, 0.07);
}
.prose table th {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  white-space: nowrap;
}
.prose table td {
  padding: 0.625rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  line-height: 1.625;
}
.prose table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.025);
}
.prose table tbody tr:last-child td {
  font-weight: 600;
  color: #ffffff;
}
.prose ol {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}
.prose ol li {
  margin-bottom: 0.6rem;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00d4ff;
  display: block;
}

.trust-bar-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  text-align: center;
}

.trust-regions li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 9999px;
  color: #94a3b8;
  font-size: 0.875rem;
}
.trust-regions li i {
  color: #00d4ff;
  font-size: 0.75rem;
}

.trust-stats li {
  text-align: center;
}
.trust-stats li strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00d4ff;
  display: block;
}
.trust-stats li span {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  margin-top: 0.25rem;
}

[data-theme=light] .step-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme=light] .step-item:hover {
  border-color: rgba(0, 168, 204, 0.3);
}
[data-theme=light] .step-item .step-content p {
  color: #475569;
}
[data-theme=light] .feature-card ul li {
  color: #64748b;
  border-top-color: rgba(0, 0, 0, 0.06);
}
[data-theme=light] .feature-link {
  color: #00a8cc;
}
[data-theme=light] .prose table th {
  background: rgba(0, 168, 204, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
  color: #0f172a;
}
[data-theme=light] .prose table td {
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}
[data-theme=light] .prose table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}
[data-theme=light] .prose table tbody tr:last-child td {
  color: #0f172a;
}
[data-theme=light] .trust-bar-label {
  color: #64748b;
}
[data-theme=light] .trust-regions li {
  background: rgba(0, 168, 204, 0.06);
  border-color: rgba(0, 168, 204, 0.15);
  color: #475569;
}
[data-theme=light] .trust-stats li span {
  color: #64748b;
}
[data-theme=light] .faq-question {
  background: #ffffff;
  color: #0f172a;
}
[data-theme=light] .faq-question::after {
  color: #64748b;
}
[data-theme=light] .faq-question:hover {
  background: rgba(0, 168, 204, 0.04);
}
[data-theme=light] .faq-answer {
  background: #ffffff;
  color: #475569;
}
[data-theme=light] .faq-item {
  border-color: rgba(0, 0, 0, 0.1);
}

.related-links-section {
  padding: 3.5rem 0;
  background: rgba(0, 212, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.related-links-section .section-title-sm {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .related-links-section .section-title-sm {
    font-size: 1.5rem;
  }
}
.related-links-section .section-sub {
  color: #94a3b8;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.related-links-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .related-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .related-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-link-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1rem;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  text-decoration: none;
  color: #ffffff;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.related-link-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.05);
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}
.related-link-card:hover .rl-arrow {
  color: #00d4ff;
  transform: translateX(3px);
}

.rl-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 0.5rem;
  color: #00d4ff;
  font-size: 1.1rem;
}

.rl-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.rl-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.1rem;
  align-self: flex-start;
}

.rl-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.rl-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
}

.rl-arrow {
  flex-shrink: 0;
  align-self: center;
  color: #64748b;
  font-size: 0.9rem;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/*# sourceMappingURL=main.css.map */
