/* ===== CSS Variables ===== */
:root {
  --bg-primary: #0B0F17;
  --bg-secondary: #141B2A;
  --bg-card: #0F1420;
  --accent: #00D4AA;
  --accent-secondary: #00B4D8;
  --accent-tertiary: #0096C8;
  --text-primary: #F5F7FF;
  --text-secondary: #A7B1C8;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(0, 212, 170, 0.3);
  --glow: rgba(0, 212, 170, 0.4);
  --radius: 0.625rem;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

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

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-secondary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== Selection ===== */
::selection {
  background: rgba(0, 212, 170, 0.3);
  color: var(--text-primary);
}

/* ===== Utility Classes ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.font-mono {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.text-glow {
  text-shadow:
    0 0 5px rgba(0, 212, 170, 0.5),
    0 0 10px rgba(0, 212, 170, 0.3),
    0 0 20px rgba(0, 212, 170, 0.2);
}

.glass-effect {
  background: rgba(15, 20, 32, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

/* ===== Particle Canvas ===== */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== Spotlight Effect ===== */
#spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(0, 212, 170, 0.06), transparent 40%);
}

/* ===== Noise Overlay ===== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  z-index: 10000;
  transition: width 0.1s ease;
}

/* ===== Custom Cursor ===== */
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 212, 170, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, border-color 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
}

@media (pointer: coarse) {

  .cursor-ring,
  .cursor-dot {
    display: none;
  }
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 16px 0;
}

.navbar.scrolled {
  background: rgba(11, 15, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg,
.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.logo:hover .logo-text {
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 50%;
}

.nav-link.active {
  background: rgba(0, 212, 170, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: rgba(0, 212, 170, 0.9);
  box-shadow: 0 0 20px var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 170, 0.1);
}

.btn-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

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

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 23, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(36px, 8vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2rem;
}

@media (max-width: 1023px) {
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Hexagon Collage ===== */
.hexagon-collage {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hexagon-collage {
    max-width: 300px;
  }
}

.hexagon-frame {
  position: absolute;
  inset: 0;
}

.hexagon-frame svg {
  width: 100%;
  height: 100%;
}

.hexagon-frame polygon {
  stroke: rgba(0, 212, 170, 0.3);
  stroke-width: 2;
  fill: none;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    stroke-opacity: 0.3;
  }

  50% {
    stroke-opacity: 0.6;
  }
}

.hexagon-image {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
}

.hexagon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
}

.hexagon-1 {
  width: 32%;
  height: auto;
  aspect-ratio: 160/184;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.hexagon-2 {
  width: 28%;
  height: auto;
  aspect-ratio: 140/161;
  bottom: 16%;
  left: 6%;
}

.hexagon-3 {
  width: 24%;
  height: auto;
  aspect-ratio: 120/138;
  bottom: 16%;
  right: 6%;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.3), rgba(0, 180, 216, 0.2));
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.6), 0 0 60px rgba(0, 212, 170, 0.3);
  }
}

/* ===== Floating Elements ===== */
.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-item {
  position: absolute;
  opacity: 0.2;
}

/* ===== Glow Orbs ===== */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ===== Stats Section ===== */
.stats {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(11, 15, 23, 0.85);
  /* Much darker/opaque background for contrast */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Brighter border */
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  /* Default shadow for depth */
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px -10px rgba(0, 212, 170, 0.15);
  /* Accent glow on hover */
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 0 25px rgba(0, 212, 170, 0.4);
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ===== Section Styles ===== */
.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 18px;
}

/* Utility Classes */
.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
}

/* ===== About Section & Why Choose Us ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-content p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 24px;
}

.about-images {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about-images {
    max-width: 300px;
  }
}

.about-hex-1 {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: auto;
  aspect-ratio: 150/173;
}

.about-hex-2 {
  position: absolute;
  bottom: 14%;
  left: 5%;
  width: 29%;
  height: auto;
  aspect-ratio: 130/150;
  animation-delay: 1s;
}

.about-hex-3 {
  position: absolute;
  bottom: 14%;
  right: 5%;
  width: 22%;
  height: auto;
  aspect-ratio: 100/115;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.25), rgba(0, 180, 216, 0.15));
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== Tilt Card ===== */
.tilt-card {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tilt-card-inner {
  position: relative;
  padding: 32px;
  background: rgba(15, 20, 32, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-card:hover .tilt-card-inner {
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 170, 0.1);
}

.tilt-card-border {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  opacity: 0;
  filter: blur(8px);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.tilt-card:hover .tilt-card-border {
  opacity: 0.6;
}

.tilt-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.tilt-card:hover .tilt-card-icon {
  transform: scale(1.1);
}

.tilt-card-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.tilt-card-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.featured-post {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 180, 216, 0.05));
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.featured-post-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .featured-post-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-post-image {
  position: relative;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .featured-post-image {
    min-height: 400px;
  }
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(11, 15, 23, 0.8));
}

@media (min-width: 1024px) {
  .featured-post-overlay {
    background: linear-gradient(to right, transparent, rgba(11, 15, 23, 0.8));
  }
}

.featured-post-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .featured-post-content {
    padding: 3rem;
  }
}

.featured-post-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}

.category-tag {
  padding: 6px 14px;
  background: rgba(0, 212, 170, 0.15);
  color: #00D4AA;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.date-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #A7B1C8;
  border-radius: 20px;
  font-size: 12px;
}

.featured-post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .featured-post-title {
    font-size: 2rem;
  }
}

.featured-post-text {
  color: #A7B1C8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 212, 170, 0.2);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
}

.author-title {
  font-size: 12px;
  color: #A7B1C8;
}

/* ===== Footer ===== */
.tech-card {
  text-align: center;
  width: 100px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .tech-card {
    width: 80px;
  }
}

.cta-orb {
  bottom: -10%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.1), transparent 70%);
}

.footer-orb {
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.1), transparent 70%);
}

/* ===== Trusted By Section ===== */
.trusted-by {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.trusted-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: rgba(167, 177, 200, 0.5);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.logo-marquee {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: marquee 60s linear infinite;
  white-space: nowrap;
}

.brand-logo {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  user-select: none;
  font-family: 'Space Grotesk', sans-serif;
}

.brand-logo:hover {
  color: var(--accent);
  opacity: 0.8;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-track {
    gap: 40px;
  }

  .brand-logo {
    font-size: 20px;
  }
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-newsletter {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.footer-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .footer-newsletter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-form {
  display: flex;
  gap: 16px;
}

.footer-input {
  flex: 1;
  max-width: 400px;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.footer-input::placeholder {
  color: rgba(167, 177, 200, 0.5);
}

.footer-main {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 24px 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(0, 212, 170, 0.4);
}

.footer-title {
  font-size: 16px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-bottom span {
  color: var(--accent);
}

/* ===== Page Header ===== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
  background: linear-gradient(to right, #fff, #A7B1C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-description {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
}

.page-title {
  font-size: clamp(36px, 8vw, 64px);
  margin-bottom: 16px;
}

.page-description {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== About Page ===== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.15);
  transform: translateY(-5px);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 16px;
  margin: 0 auto 24px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--accent);
  color: #0B0F17;
  transform: scale(1.1);
}

.value-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Services Page ===== */
.service-detail-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-detail-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.15);
  transform: translateY(-5px);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
  background: var(--accent);
  color: #0B0F17;
  transform: scale(1.1) rotate(5deg);
}

.service-detail-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-detail-description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

/* ===== Products Page ===== */
.product-category {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.product-category:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.15);
  transform: translateY(-5px);
}

.product-category-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 12px;
  margin-bottom: 24px;
  color: var(--accent);
}

.product-category-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.product-category-description {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}

.product-items {
  list-style: none;
}

.product-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.product-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-item-name {
  font-size: 14px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.product-item-description {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== Portfolio Page ===== */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.15);
  transform: translateY(-5px);
}

.portfolio-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1) saturate(1);
}

.portfolio-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 23, 0.8), transparent);
}

.portfolio-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.portfolio-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.portfolio-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.portfolio-tech span {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Blog Page ===== */
.blog-search {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .blog-search {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(0, 212, 170, 0.3);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
  transition: transform 0.5s ease;
}

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

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.blog-content {
  padding: 24px;
}

.blog-category {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(167, 177, 200, 0.5);
}

.form-textarea {
  resize: none;
  min-height: 140px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  border-color: rgba(0, 212, 170, 0.3);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
  font-size: 14px;
  color: var(--text-primary);
}

.contact-info-content a:hover {
  color: var(--accent);
}

.contact-map {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ===== Animations ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes aurora {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  33% {
    transform: rotate(120deg) scale(1.1);
  }

  66% {
    transform: rotate(240deg) scale(0.9);
  }
}

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

.rotate-slow {
  animation: rotate-slow 20s linear infinite;
}

.animation-delay-1000 {
  animation-delay: 1s;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* ===== Reveal Animation Classes ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}


.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Industries Section ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
}

.industry-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.15);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  color: #fff;
}

.industry-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== FAQ Section ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: bounce-in 1s ease-out;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--accent);
  color: #0B0F17;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.6);
}

.cta-icon {
  width: 24px;
  height: 24px;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  60% {
    opacity: 1;
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .cta-text {
    display: none;
  }

  .cta-button {
    padding: 12px;
    border-radius: 50%;
  }
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 15, 23, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-image {
  height: 250px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
}

.modal-content {
  padding: 32px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .cta-box {
    padding: 32px 24px;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-input {
    max-width: none;
  }
}

/* ===== Timeline Mobile Responsive ===== */
@media (max-width: 768px) {
  .timeline::before {
    left: 40px !important;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 70px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
    margin-bottom: 40px !important;
  }

  .timeline-dot {
    left: 20px !important;
    right: auto !important;
  }

  .timeline-content {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  /* Fix vertical line position */
  .timeline>div:first-child {
    left: 30px !important;
  }
}

/* ===== Process Section New Styles ===== */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.process-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* Horizontal Line (Desktop) */
.timeline-line {
  position: absolute;
  top: 100px;
  /* Aligned with dots */
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  /* Starts at 0 width */
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transition: width 0.1s linear;
}

.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.step-card {
  margin-top: 60px;
  /* Space for line and dot */
  padding: 24px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Increased border visibility */
  background: rgba(11, 15, 25, 0.95);
  /* Much darker/more opaque background */
  min-height: 300px;
  height: auto;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  /* Stronger shadow for depth */
}

/* Thicker border on hover */
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px -10px rgba(0, 212, 170, 0.2);
  background: #0B0F19;
  /* Solid background on hover */
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: -10px;
  right: 15px;
  /* Adjusted position */
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  /* Slightly more visible */
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 0;
}

.step-card:hover .step-number {
  color: rgba(0, 212, 170, 0.15);
  /* Brighter on hover */
  transform: translateY(5px);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 170, 0.15);
  /* More visible bg */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 212, 170, 0.3);
  /* Stronger border */
  position: relative;
  z-index: 1;
}

.step-card:hover .step-icon {
  background: var(--accent);
  color: #0b0f17;
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
  transform: rotateY(360deg);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
  /* Pure white */
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: #E2E8F0;
  /* Much brighter grey, almost white */
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.step-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* Stronger divider */
  padding-top: 16px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #CBD5E1;
  /* Brighter list text */
  font-size: 13px;
  margin-bottom: 6px;
}

.step-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent);
  flex-shrink: 0;
}

.step-dot {
  position: absolute;
  top: 60px;
  /* Align with line */
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.dot-inner {
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.dot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  z-index: 1;
}

.process-step.active .dot-inner {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.process-step.active .dot-pulse {
  animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}

/* responsive-vertical (Mobile/Tablet) */
@media (max-width: 1024px) {
  .process-timeline {
    flex-direction: column;
    padding-left: 0;
    gap: 40px;
  }

  .timeline-line {
    top: 0;
    left: 30px;
    /* Vertical line position */
    width: 2px;
    height: 100%;
  }

  .timeline-progress {
    width: 100%;
    height: 0;
    /* Vertical animation */
    transition: height 0.1s linear;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding-left: 60px;
    /* Space for line */
  }

  .step-dot {
    top: 32px;
    /* Align with top of card */
    left: 30px;
    transform: translateX(-50%);
  }

  .step-card {
    margin-top: 0;
    width: 100%;
  }

  .step-icon {
    margin: 0 0 16px 0;
  }
}

/* ===== New Why Choose Us Grid ===== */
.choose-us-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .choose-us-grid {
    flex-direction: row;
    height: 400px;
    /* Increased height for 5 cards */
  }
}

@media (max-width: 1023px) {
  .choose-us-grid {
    height: auto;
  }
}

.feature-card {
  position: relative;
  flex: 1;
  background: rgba(15, 20, 32, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
  padding: 32px;
}

@media (min-width: 1024px) {
  .feature-card:hover {
    flex: 2.5;
    /* Expand on hover */
    background: rgba(15, 20, 32, 0.85);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  /* When one is hovered, others dim slightly */
  .choose-us-grid:hover .feature-card:not(:hover) {
    opacity: 0.7;
    filter: grayscale(0.4);
  }
}

.feature-card-content {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  border: 1px solid rgba(0, 212, 170, 0.2);
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent);
  color: #0b0f17;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 212, 170, 0.4);
}

.feature-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  white-space: normal;
}

/* Hide text initially on desktop to keep cards clean */
.feature-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 100%;
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {

  /* Text always visible now */
  .feature-card p {
    opacity: 0.7;
    transform: translateY(0);
    height: auto;
    display: block;
  }

  .feature-card:hover p {
    opacity: 1;
  }
}

.feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.05), transparent);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover .feature-card-bg {
  opacity: 1;
}
/* ===== Breadcrumbs ===== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-item a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 500;
}

.breadcrumb-separator {
  color: var(--border);
}
/* ===== Blog Detail Page ===== */
.blog-detail-hero {
    padding: 0 0 48px;
}

.blog-detail-hero-inner {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-detail-hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .blog-detail-hero-image {
        height: 420px;
    }
}

@media (min-width: 1024px) {
    .blog-detail-hero-image {
        height: 500px;
    }
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 15, 23, 0.95) 0%, rgba(11, 15, 23, 0.4) 40%, transparent 70%);
}

.blog-detail-hero-content {
    padding: 32px 24px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .blog-detail-hero-content {
        padding: 40px 40px;
        margin-top: -140px;
    }
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.blog-detail-title {
    font-size: clamp(24px, 5vw, 44px);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- Blog Layout: Article + Sidebar --- */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr 320px;
        gap: 64px;
    }
}

/* --- Article Content Typography --- */
.blog-detail-content {
    max-width: 100%;
    line-height: 1.85;
    font-size: 16.5px;
    color: #C8CDD8;
}

@media (min-width: 768px) {
    .blog-detail-content {
        font-size: 17.5px;
    }
}

.blog-detail-content h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #F5F7FF;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.blog-detail-content h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 36px 0 16px;
    color: #E8ECF4;
    font-weight: 600;
}

.blog-detail-content h4 {
    font-size: 18px;
    margin: 28px 0 12px;
    color: #D0D6E2;
    font-weight: 600;
}

.blog-detail-content p {
    margin-bottom: 20px;
    color: #B0B8CA;
}

.blog-detail-content a {
    color: #00D4AA;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.blog-detail-content a:hover {
    color: #00F0C0;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 16px 0 24px 24px;
    color: #B0B8CA;
}

.blog-detail-content li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.blog-detail-content ul li::marker {
    color: #00D4AA;
}

.blog-detail-content ol li::marker {
    color: #00D4AA;
    font-weight: 600;
}

.blog-detail-content blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 4px solid #00D4AA;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #C0C8D8;
}

.blog-detail-content pre {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow-x: auto;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    color: #C8CDD8;
}

.blog-detail-content code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.88em;
    padding: 2px 8px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 4px;
    color: #00D4AA;
}

.blog-detail-content pre code {
    padding: 0;
    background: none;
    border-radius: 0;
    color: inherit;
}

.blog-detail-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 28px 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-detail-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.blog-detail-content th,
.blog-detail-content td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    font-size: 14px;
}

.blog-detail-content th {
    background: rgba(0, 212, 170, 0.1);
    color: #00D4AA;
    font-weight: 600;
}

.blog-detail-content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 40px 0;
}

/* --- Sidebar Widgets --- */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .blog-detail-sidebar {
        position: sticky;
        top: 100px;
        align-self: start;
    }
}

.sidebar-widget {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.sidebar-widget-title {
    font-size: 15px;
    font-weight: 600;
    color: #F5F7FF;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #A7B1C8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: rgba(0, 212, 170, 0.3);
    color: #00D4AA;
    transform: translateY(-2px);
}

/* Author Box */
.blog-author-box {
    text-align: center;
}

/* --- Related Posts --- */
.related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-post-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.related-post-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 170, 0.08);
}

.related-post-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.related-post-card:hover .related-post-image img {
    transform: scale(1.08);
}

.related-post-body {
    padding: 20px;
}

.related-post-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #F5F7FF;
    transition: color 0.3s;
}

.related-post-card:hover .related-post-title {
    color: #00D4AA;
}

.related-post-excerpt {
    font-size: 13px;
    color: #A7B1C8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.related-post-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #00D4AA;
    transition: gap 0.3s;
}

.related-post-card:hover .related-post-link {
    gap: 10px;
}

/* --- Blog Grid (listing page) --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 170, 0.08);
}

.blog-card:hover img {
    transform: scale(1.08);
}
/* ===== Products Page — Redesigned ===== */

/* Tab Filter */
.product-tabs-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    color: #A7B1C8;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.product-tab:hover {
    background: rgba(0, 212, 170, 0.08);
    border-color: rgba(0, 212, 170, 0.2);
    color: #F5F7FF;
}

.product-tab.active {
    background: rgba(0, 212, 170, 0.12);
    border-color: rgba(0, 212, 170, 0.4);
    color: #00D4AA;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.1);
}

.product-tab svg {
    opacity: 0.7;
}

.product-tab.active svg {
    opacity: 1;
    stroke: #00D4AA;
}

/* Product Showcase Grid */
.products-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

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

@media (min-width: 1200px) {
    .products-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Showcase Card */
.product-showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 24px 20px;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.product-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4AA, #00B4D8, #00D4AA);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-showcase-card:hover {
    border-color: rgba(0, 212, 170, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 212, 170, 0.06);
    background: rgba(0, 212, 170, 0.02);
}

.product-showcase-card:hover::before {
    opacity: 1;
}

/* Card Header */
.product-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.product-card-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 180, 216, 0.08));
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 14px;
    flex-shrink: 0;
    color: #00D4AA;
}

.product-card-icon-wrap svg {
    stroke: #00D4AA;
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #F5F7FF;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.product-card-subtitle {
    font-size: 12px;
    color: #00D4AA;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.product-card-desc {
    font-size: 14px;
    color: #8892A8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    margin-bottom: 16px;
}

/* Product Items */
.product-card-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 20px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.product-card-items::-webkit-scrollbar {
    width: 3px;
}

.product-card-items::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 170, 0.2);
    border-radius: 10px;
}

.product-card-items::-webkit-scrollbar-track {
    background: transparent;
}

.product-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.product-card-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.product-item-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #00D4AA;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.4);
}

.product-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #E0E5EE;
}

.product-item-desc {
    font-size: 12px;
    color: #6B7590;
    line-height: 1.4;
}

/* Card Footer */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #0B0F17;
    background: linear-gradient(135deg, #00D4AA, #00B4D8);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-card-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.product-card-badge {
    font-size: 11px;
    font-weight: 500;
    color: #00D4AA;
    padding: 5px 12px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 100px;
}
