.material-card,
.portfolio-item {
  aspect-ratio: 1;
  overflow: hidden;
}
.hero-title,
.shimmer-text,
.stat-number {
  -webkit-text-fill-color: transparent;
}
.accordion-content,
.accordion-item,
.blog-card,
.blog-image,
.btn-primary,
.cta-section,
.hero,
.material-card,
.portfolio-item,
.preloader,
.tech-card {
  overflow: hidden;
}
.blog-card:hover .blog-image,
.tech-card:hover .icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.5),
    rgba(37, 99, 235, 0.5)
  );
}
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  font-family: Inter, sans-serif;
  background-color: #020617;
  color: #f8fafc;
  cursor: default;
}
.material-name,
.preloader-text span,
.stat-number,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Outfit, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
::selection {
  background: rgba(6, 182, 212, 0.5);
  color: #fff;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #06b6d4, #2563eb);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #22d3ee, #3b82f6);
}
.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(14, 165, 233, 0.15),
      transparent 40%
    ),
    linear-gradient(135deg, #020617 0, #06111f 40%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: 0.8s 3.8s forwards preloaderFadeOut;
}
.preloader-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(6, 182, 212, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(6, 182, 212, 0.08) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  animation: 8s linear infinite gridMove;
}
@keyframes gridMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(45px);
  }
}
@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.printer-loader {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-ring,
.printer-glow {
  position: absolute;
  width: 170px;
  height: 170px;
}
.printer-glow {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.45), transparent 70%);
  filter: blur(25px);
  animation: 2s ease-in-out infinite glowPulse;
}
@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.outer-ring {
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.2);
}
.inner-ring,
.outer-ring::before {
  position: absolute;
  border-radius: 50%;
}
.outer-ring::before {
  content: "";
  inset: -2px;
  border-top: 3px solid #06b6d4;
  border-right: 3px solid #2563eb;
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
  animation: 1.8s linear infinite rotateRing;
}
.inner-ring {
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(34, 211, 238, 0.35);
  animation: 4s linear infinite rotateReverse;
}
@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}
.cube-wrapper {
  perspective: 800px;
}
.cube {
  position: relative;
  width: 55px;
  height: 55px;
  transform-style: preserve-3d;
  animation: 4s linear infinite cubeRotate, 2s ease-in-out infinite cubeFloat;
}
.cube span,
.laser-beam,
.nav-link::after,
.preloader-text,
.printing-line {
  position: absolute;
}
.cube span {
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.9),
    rgba(37, 99, 235, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4),
    inset 0 0 12px rgba(255, 255, 255, 0.15);
}
.cube span:first-child {
  transform: rotateY(0) translateZ(27px);
}
.cube span:nth-child(2) {
  transform: rotateY(90deg) translateZ(27px);
}
.cube span:nth-child(3) {
  transform: rotateX(90deg) translateZ(27px);
}
.cube span:nth-child(4) {
  transform: rotateX(-90deg) translateZ(27px);
}
@keyframes cubeRotate {
  0% {
    transform: rotateX(-20deg) rotateY(0);
  }
  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
@keyframes cubeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.laser-beam {
  top: 48px;
  width: 3px;
  height: 85px;
  background: linear-gradient(to bottom, #22d3ee, rgba(34, 211, 238, 0));
  box-shadow: 0 0 15px #22d3ee;
  animation: 1.5s ease-in-out infinite laserScan;
}
@keyframes laserScan {
  0%,
  100% {
    height: 60px;
    opacity: 0.7;
  }
  50% {
    height: 90px;
    opacity: 1;
  }
}
.printing-line {
  bottom: 72px;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #06b6d4, transparent);
  animation: 1.2s linear infinite printMove;
}
@keyframes printMove {
  0% {
    transform: translateX(-25px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(25px);
    opacity: 0;
  }
}
.preloader-text {
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.preloader-text span {
  color: #67e8f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}
.loading-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.badge-hero,
.hero {
  align-items: center;
}
.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  animation: 1.2s ease-in-out infinite dotsBounce;
}
.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotsBounce {
  0%,
  100%,
  80% {
    transform: scale(0.5);
    opacity: 0.4;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}
.navbar {
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}
.btn-primary,
.hero,
.hero-content,
.nav-link {
  position: relative;
}
.navbar.scrolled {
  background: rgba(2, 6, 23, 0.92);
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-link {
  transition: color 0.3s;
  font-weight: 500;
}
.btn-outline,
.btn-primary,
.btn-white {
  transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  cursor: pointer;
}
.badge-hero,
.btn-outline,
.btn-primary,
.btn-white,
.section-label {
  font-weight: 600;
}
.nav-link::after {
  content: "";
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #2563eb);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-link:hover {
  color: #22d3ee;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0, #06b6d4 100%);
  letter-spacing: 0.01em;
  border: none;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  z-index: 1;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.45),
    0 0 0 4px rgba(6, 182, 212, 0.1);
}
.btn-outline:active,
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-outline {
  border: 2px solid #06b6d4;
  color: #06b6d4;
  background: 0 0;
}
.hero-glow-1,
.hero-glow-2,
.hero-glow-3,
.particle {
  border-radius: 50%;
}
.btn-outline:hover {
  background: rgba(6, 182, 212, 0.12);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.35),
    inset 0 0 35px rgba(6, 182, 212, 0.05);
  border-color: #22d3ee;
  transform: translateY(-3px);
}
.btn-white {
  background: #fff;
  color: #2563eb;
}
.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #020617;
}
.hero-bg-grid,
.hero-glow-1,
.hero-glow-2,
.hero-glow-3,
.hero-particles,
.material-card::after,
.particle,
.process-step::before,
.tech-card::before {
  position: absolute;
}
.hero-bg-grid {
  inset: 0;
  background-image: linear-gradient(
      rgba(6, 182, 212, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
}
.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.2) 0,
    transparent 70%
  );
  top: -150px;
  right: -100px;
  animation: 7s ease-in-out infinite float;
  filter: blur(30px);
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.2) 0,
    transparent 70%
  );
  bottom: -100px;
  left: -80px;
  animation: 9s ease-in-out infinite reverse float;
  filter: blur(30px);
}
.hero-glow-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.15) 0,
    transparent 70%
  );
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 6s ease-in-out 2s infinite float;
  filter: blur(20px);
}
.hero-particles {
  inset: 0;
  pointer-events: none;
}
.particle {
  width: 2px;
  height: 2px;
  background: #06b6d4;
  animation: 8s linear infinite particle;
  opacity: 0;
}
.particle:first-child {
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 25%;
  animation-delay: 1.5s;
  background: #2563eb;
}
.particle:nth-child(3) {
  left: 40%;
  animation-delay: 3s;
}
.particle:nth-child(4) {
  left: 55%;
  animation-delay: 4.5s;
  background: #22d3ee;
}
.particle:nth-child(5) {
  left: 70%;
  animation-delay: 2s;
}
.particle:nth-child(6) {
  left: 85%;
  animation-delay: 5.5s;
  background: #3b82f6;
}
.particle:nth-child(7) {
  left: 15%;
  animation-delay: 6.5s;
  background: #22d3ee;
}
.particle:nth-child(8) {
  left: 60%;
  animation-delay: 3.8s;
}
.hero-content {
  z-index: 10;
  text-align: center;
  max-width: 850px;
  padding: 0 1.5rem;
}
.highlight-card,
.tech-card > * {
  z-index: 1;
  position: relative;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    #f8fafc 0,
    #22d3ee 35%,
    #3b82f6 65%,
    #f8fafc 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 6s infinite gradient-shift, 0.8s ease-out fadeInUp;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: 0.8s ease-out 0.2s both fadeInUp;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: 0.8s ease-out 0.4s both fadeInUp;
}
.badge-hero {
  display: inline-flex;
  gap: 6px;
  padding: 0.55rem 1.2rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 50px;
  color: #22d3ee;
  font-size: 0.82rem;
  margin: 0.4rem;
  animation: 0.8s ease-out 0.5s both fadeInUp;
  transition: 0.3s;
  cursor: default;
}
.badge-hero:hover,
.material-pill:hover {
  background: rgba(6, 182, 212, 0.18);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  animation: 2s ease-in-out infinite pulse-glow;
  display: inline-block;
}
.section-padding {
  position: relative;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 1rem;
  }
}
.section-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 50px;
  color: #22d3ee;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.tech-card {
  position: relative;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(6, 182, 212, 0.18);
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  backdrop-filter: blur(5px);
}
.tech-card::before {
  content: "";
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(6, 182, 212, 0.06),
    transparent,
    rgba(37, 99, 235, 0.06),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
  animation: 15s linear infinite tech-spin;
}
.material-card:hover::after,
.portfolio-item:hover .portfolio-overlay,
.tech-card:hover::before {
  opacity: 1;
}
.tech-card:hover {
  border-color: rgba(6, 182, 212, 0.55);
  box-shadow: 0 25px 60px rgba(6, 182, 212, 0.2),
    0 0 0 1px rgba(6, 182, 212, 0.3) inset;
  transform: translateY(-10px);
  background: rgba(15, 23, 42, 0.75);
}
.icon-wrapper {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.25),
    rgba(37, 99, 235, 0.25)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: #22d3ee;
  transition: 0.4s;
  flex-shrink: 0;
}
.tech-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  color: #fff;
}
.highlight-card {
  border: 2px solid transparent;
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8))
      padding-box,
    linear-gradient(135deg, #06b6d4, #2563eb, #06b6d4) border-box;
  animation: 3s ease-in-out infinite border-glow;
}
.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 0.3rem;
  line-height: 1;
}
.stat-label {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.process-step {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 2.5rem;
}
.process-step::before {
  content: "";
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #06b6d4;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.7), 0 0 50px rgba(6, 182, 212, 0.3);
  z-index: 2;
  transition: 0.3s;
}
.process-step:hover::before {
  box-shadow: 0 0 40px #06b6d4, 0 0 80px rgba(6, 182, 212, 0.5);
  transform: scale(1.3);
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 30px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(
    180deg,
    rgba(6, 182, 212, 0.5),
    rgba(6, 182, 212, 0.05)
  );
  z-index: 1;
}
.material-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  cursor: pointer;
  position: relative;
}
.material-card::after {
  content: "";
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(6, 182, 212, 0.2) 0,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.material-card:hover {
  border-color: #06b6d4;
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.35);
}
.material-icon {
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}
.material-card:hover .material-icon {
  transform: scale(1.3);
}
.material-name {
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.portfolio-item {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  cursor: pointer;
}
.portfolio-item:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 25px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-12px);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 182, 212, 0.85) 0,
    rgba(37, 99, 235, 0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}
.portfolio-overlay h4 {
  transform: translateY(20px);
  transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
  transform: translateY(0);
}
.portfolio-overlay p {
  transform: translateY(30px);
  transition: transform 0.4s 50ms;
}
.testimonial-slide {
  min-width: 100%;
  padding: 3rem 2rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: 0.3s;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 1.1rem;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.3);
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}
.indicator.active {
  background: #06b6d4;
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 10px;
  color: #f8fafc;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  transition: 0.3s;
  outline: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.2), 0 0 0 3px rgba(6, 182, 212, 0.05);
  background: rgba(15, 23, 42, 0.8);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}
.form-select option {
  background: #0f172a;
  color: #f8fafc;
}
.cta-section {
  background: linear-gradient(135deg, #1e3a8a 0, #0e7490 50%, #1e3a8a 100%);
  background-size: 300% 300%;
  animation: 8s infinite gradient-shift;
  position: relative;
}
.mobile-menu,
.scroll-to-top {
  position: fixed;
  display: flex;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0,
    transparent 70%
  );
  border-radius: 50%;
  top: -300px;
  right: -200px;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -200px;
  left: -150px;
}
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.25);
}
.blog-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(2, 6, 23, 0.6) 100%
  );
}
.mobile-menu {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(2, 6, 23, 0.97);
  backdrop-filter: blur(15px);
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  padding-top: 5rem;
  flex-direction: column;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu a {
  display: block;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(6, 182, 212, 0.08);
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.3s;
}
.mobile-menu a:hover {
  background: rgba(6, 182, 212, 0.08);
  color: #22d3ee;
  padding-left: 2.5rem;
}
.scroll-to-top {
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0, #06b6d4 100%);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  z-index: 100;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
  border: none;
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-to-top:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.8);
}
.shimmer-text {
  background: linear-gradient(90deg, #94a3b8 0, #22d3ee 50%, #94a3b8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s linear infinite shimmer;
}
.hero-rp,
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0b1120 0, #020617 70%);
}
.hero-rp::before,
.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.15) 0,
    transparent 70%
  );
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: 8s ease-in-out infinite float;
}
.hero-rp::after,
.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.15) 0,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  animation: 10s ease-in-out infinite reverse float;
}
.section-padding {
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 1rem;
  }
}
.material-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.2rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 50px;
  color: #22d3ee;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s;
  cursor: default;
}
.accordion-item {
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: 0.3s;
  background: rgba(15, 23, 42, 0.4);
}
.accordion-item:hover {
  border-color: rgba(6, 182, 212, 0.4);
}
.accordion-header {
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  font-weight: 600;
  font-family: Outfit, sans-serif;
  font-size: 1.05rem;
  user-select: none;
  color: #f8fafc;
}
.accordion-header:hover {
  background: rgba(6, 182, 212, 0.06);
}
.accordion-content {
  max-height: 0;
  transition: max-height 0.4s, padding 0.4s;
  color: #cbd5e1;
  line-height: 1.7;
  padding: 0 1.5rem;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.accordion-arrow {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  font-size: 1.3rem;
  color: #06b6d4;
  flex-shrink: 0;
  margin-left: 1rem;
}
.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}
.category-pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.category-pill.active,
.category-pill:hover {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}
.category-pill.active {
  background: #06b6d4;
  color: #020617;
  border-color: #06b6d4;
}
.privacy-content h2,
.terms-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #22d3ee;
  border-left: 4px solid #06b6d4;
  padding-left: 1rem;
  font-family: Outfit, sans-serif;
  font-weight: 700;
}
.privacy-content h3,
.terms-content h3 {
  font-size: 1.2rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: #e2e8f0;
  font-family: Outfit, sans-serif;
  font-weight: 600;
}
.privacy-content p,
.terms-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #cbd5e1;
  font-size: 0.95rem;
}
.privacy-content ol,
.privacy-content ul,
.terms-content ol,
.terms-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}
.article-content li,
.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
}
.privacy-content a,
.terms-content a {
  color: #22d3ee;
  text-decoration: underline;
  transition: color 0.2s;
}
.privacy-content a:hover,
.terms-content a:hover {
  color: #06b6d4;
}
.article-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #22d3ee;
  border-left: 4px solid #06b6d4;
  padding-left: 1rem;
}
.article-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #e2e8f0;
}
.article-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #cbd5e1;
}
.article-content ol,
.article-content ul {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  color: #cbd5e1;
}
.article-content blockquote {
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.05);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #94a3b8;
}
.category-pill,
.comparison-table th {
  background: rgba(6, 182, 212, 0.08);
  color: #22d3ee;
  font-weight: 600;
}
.article-content img {
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid rgba(6, 182, 212, 0.2);
  width: 100%;
}
.article-content .highlight-box {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  color: #e2e8f0;
}
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  transition: 0.3s;
  text-decoration: none;
}
.category-pill:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: #06b6d4;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}
.blog-card {
  backdrop-filter: blur(5px);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 20px;
  transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.blog-card:hover {
  border-color: rgba(6, 182, 212, 0.55);
  box-shadow: 0 25px 60px rgba(6, 182, 212, 0.2);
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.75);
}
.blog-image {
  height: 220px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.3),
    rgba(37, 99, 235, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: 0.4s;
  position: relative;
}
.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #94a3b8;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 600;
}
.pagination-btn.active,
.pagination-btn:hover {
  background: #06b6d4;
  color: #020617;
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}
.comparison-table td,
.comparison-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(6, 182, 212, 0.15);
}
body,
html {
  overflow-x: hidden;
}