:root {
  --primary: #142150;
  --secondary: #39e0bd;
  --bg-color: #020617;
  --surface: #0b1120;
  --card: #0f172a;
  --text-primary: #e5e7eb;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --gradient-main: linear-gradient(180deg, var(--bg-color) 0%, var(--primary) 40%, var(--secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-std: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 40px rgba(57, 224, 189, 0.15);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: var(--bg-color);
}
body {
  background-color: transparent;
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.5;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  
  scrollbar-width: none;  
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 44px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 60ch;
}

.text-muted {
  color: var(--text-muted);
}

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

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.mb-10 {
  margin-bottom: 2.5rem;
}

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

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

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

.mt-10 {
  margin-top: 2.5rem;
}

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

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

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

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

.flex {
  display: flex;
}

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

.justify-between {
  justify-content: space-between;
}

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

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.ml-4 {
  margin-left: 1rem;
}

.p-0 {
  padding: 0 !important;
}

.w-full {
  width: 100% !important;
}

.ml-auto {
  margin-left: auto !important;
}


.wrap {
  flex-wrap: wrap;
}

/* Layout grids & Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-content {
    margin-top: 80px;
  }
}

/* UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-family);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(57, 224, 189, 0.2);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.03);
}

.card {
  background: var(--card);
  border-radius: var(--radius-std);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(57, 224, 189, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar--scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.container-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav-contact-btn {
    display: none !important;
  }
  .nav-links {
    display: none;
  }
  .nav-links.mobile-active {
    display: flex !important;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #020617;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    z-index: 100;
  }
  .nav-links.mobile-active a {
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px;
}

.hero-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
}

.hero-content p {
  font-size: 20px;
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .hero-content h1 {
    white-space: nowrap;
  }
}

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

/* Work Section */
.work-layout {
  display: flex;
  gap: 60px;
}

.work-left {
  flex: 0 0 350px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.work-left h2 {
  margin-bottom: 24px;
}

.work-right {
  flex: 1;
}

.project-card {
  padding: 0;
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

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

.project-info {
  padding: 24px;
}

@media (max-width: 1024px) {
  .work-layout {
    flex-direction: column;
  }

  .work-left {
    position: relative;
    top: 0;
    flex: none;
  }
}

/* Services section */
.services-grid {
  display: flex;
  gap: 32px;
}

.service-large-card {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
}

.service-large-card p {
  margin-top: 16px;
  margin-bottom: 32px;
}

.services-small-grid {
  flex: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(57, 224, 189, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .services-grid {
    flex-direction: column;
  }

  .service-large-card {
    flex: none;
  }
}

/* Team section */
.team-img-wrapper {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.9;
  transition: var(--transition);
}

.team-card:hover .team-img-wrapper img {
  mix-blend-mode: normal;
  transform: scale(1.05);
}

.grad-1 {
  background: linear-gradient(135deg, #142150 0%, #2563eb 100%);
}

.grad-2 {
  background: linear-gradient(135deg, #0e7490 0%, #39e0bd 100%);
}

.grad-3 {
  background: linear-gradient(135deg, #1e3a8a 0%, #10b981 100%);
}

/* Testimonials */
.test-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  display: flex;
  gap: 4px;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  fill: #fbbf24;
}

/* Blog */
.blog-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-card>h3,
.blog-card>.blog-meta {
  padding: 24px 24px 0 24px;
}

.blog-card>h3 {
  padding-bottom: 24px;
  margin: 0;
}

.blog-img {
  height: 200px;
  overflow: hidden;
  margin-top: auto;
}

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

/* CTA Section */
.cta-banner {
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer-huge-name {
  font-size: 26vw;
  font-weight: 800;
  text-transform: lowercase;
  text-align: center;
  margin: 0;
  line-height: 0.75;
  background: linear-gradient(180deg, #39e0bc 0%, #39e0bc00 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  user-select: none;
  letter-spacing: -0.05em;
  transform: translateY(12%);
  z-index: 1;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding-bottom: 40px;
  background: #02040f;
  position: relative;
  z-index: 2;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
  margin-top: -5%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .footer {
    margin-top: 0;
    border-radius: 20px 20px 0 0;
    border-left: none;
    border-right: none;
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-top {
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
    text-align: center;
  }
  .footer-col {
    max-width: 100% !important;
    align-items: center;
  }
  .footer-col .input-group {
    width: 100%;
    max-width: 320px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 24px;
    text-align: center;
    padding-bottom: 40px;
    margin-top: 20px !important;
  }
}

.footer-top {
  padding-top: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  color: white;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: white;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input {
  width: 100%;
  padding: 12px 48px 12px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(57, 224, 189, 0.2);
}

.btn-icon {
  position: absolute;
  right: 6px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  color: var(--bg-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-icon:hover {
  transform: scale(1.1);
  background: var(--secondary);
  color: white;
}

.btn-icon i {
  width: 16px;
  height: 16px;
}

.socials i {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.socials i:hover {
  color: var(--secondary);
}

/* Credibility Section */
.credibility-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.credibility-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Mobile Navbar Overrides */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .nav-contact-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 0;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
  }

  .nav-links.mobile-active {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Feature / Value Section */
.p-0 {
  padding: 0 !important;
}

.pl-8 {
  padding-left: 32px;
}

.value-image {
  overflow: hidden;
  height: 500px;
}

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

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

.icon-box-small {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(57, 224, 189, 0.15);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(57, 224, 189, 0.1);
}

.icon-box-small i {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .wrap-reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .pl-8 {
    padding-left: 0;
  }

  .value-image {
    height: 350px;
  }
}

/* ===================== */
/* 3D Hero Animations    */
/* ===================== */

/* Perspective grid floor */
.tech-grid-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tech-grid {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%) rotateX(60deg);
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(57, 224, 189, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 224, 189, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 8s linear infinite;
  transform-origin: bottom center;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 60px;
  }
}

/* Glowing floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
  opacity: 0.45;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(57, 224, 189, 0.5) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-duration: 9s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 33, 80, 0.8) 0%, rgba(57, 224, 189, 0.2) 60%, transparent 100%);
  bottom: -80px;
  left: -80px;
  animation-duration: 12s;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.08);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.96);
  }
}

/* Hero text fade-in from below */
.hero-content h1 {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content p {
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating particles */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(57, 224, 189, 0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(57, 224, 189, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 50%, rgba(57, 224, 189, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(57, 224, 189, 0.35) 0%, transparent 100%);
  background-size: 100% 100%;
  animation: particlePulse 6s ease-in-out infinite alternate;
}

@keyframes particlePulse {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* ============================= */
/* Mouse Parallax 3D Hero Scene  */
/* ============================= */
.hero-3d-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(57, 224, 189, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(57, 224, 189, 0.12);
  will-change: translate;
}

.float-card-1 {
  top: 18%;
  left: 6%;
  animation: floatY 6s ease-in-out infinite;
}

.float-card-2 {
  top: 22%;
  right: 7%;
  animation: floatY 7s ease-in-out infinite reverse;
}

.float-card-3 {
  bottom: 28%;
  left: 8%;
  animation: floatY 8s ease-in-out infinite;
}

.float-card-4 {
  bottom: 24%;
  right: 6%;
  animation: floatY 5.5s ease-in-out infinite reverse;
}

.float-card-5 {
  top: 40%;
  left: 3%;
  animation: floatY 6.5s ease-in-out infinite;
}

.float-card-6 {
  top: 35%;
  right: 15%;
  animation: floatY 7.5s ease-in-out infinite reverse;
}

.float-card-7 {
  top: 60%;
  left: 12%;
  animation: floatY 5.8s ease-in-out infinite;
}

.float-card-8 {
  top: 15%;
  left: 25%;
  animation: floatY 6.2s ease-in-out infinite;
}

.float-card-9 {
  bottom: 15%;
  left: 20%;
  animation: floatY 6.8s ease-in-out infinite reverse;
}

.float-card-10 {
  bottom: 45%;
  right: 4%;
  animation: floatY 7.2s ease-in-out infinite;
}

.float-card-11 {
  top: 10%;
  right: 30%;
  animation: floatY 8s ease-in-out infinite reverse;
}

.float-card-12 {
  bottom: 10%;
  right: 22%;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {

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

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  will-change: translate;
}

.orb-a {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(57, 224, 189, 0.35) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: orbPulse 9s ease-in-out infinite alternate;
}

.orb-b {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(20, 33, 80, 0.9) 0%, rgba(57, 224, 189, 0.15) 60%, transparent 100%);
  bottom: -60px;
  left: -60px;
  animation: orbPulse 12s ease-in-out infinite alternate-reverse;
}

@keyframes orbPulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.12);
  }
}

.hero-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(57, 224, 189, 0.2);
  top: 50%;
  left: 50%;
  margin-left: -190px;
  margin-top: -190px;
  animation: ringRotate 20s linear infinite;
  will-change: translate, transform;
}

.hero-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39e0bd;
  box-shadow: 0 0 16px 4px rgba(57, 224, 189, 0.6);
  top: -5px;
  left: 50%;
  margin-left: -5px;
}

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

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

@media (max-width: 768px) {
  .float-card {
    display: none;
  }

  .hero-ring {
    width: 240px;
    height: 240px;
    margin-left: -120px;
    margin-top: -120px;
  }
}

/* Feature Section Watermark */
#features {
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 800px;
  height: 800px;
  background-image: url('../images/logo/logoSymbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  transform: translateY(-50%) rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}

/* Services Section Watermark */
#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  width: 800px;
  height: 800px;
  background-image: url('../images/logo/logoSymbol.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  transform: translateY(-50%) rotate(15deg);
  pointer-events: none;
  z-index: 1;
}

/* Bento Grid Section */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bento-card:hover {
  border-color: rgba(57, 224, 189, 0.3);
  box-shadow: 0 10px 40px rgba(57, 224, 189, 0.05);
}

.bento-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: auto;
  z-index: 2;
  color: #fff;
}

.bento-card p {
  font-size: 14px;
  z-index: 2;
  margin-bottom: 0;
  color: #8892b0;
}

.bento-48h { grid-column: span 2; }
.bento-icons { grid-column: span 4; }
.bento-invoice { grid-column: span 3; }
.bento-pause { grid-column: span 3; }
.bento-chat { grid-column: span 2; }
.bento-graph { grid-column: span 2; }
.bento-dashboard { grid-column: span 2; }

@media (max-width: 1024px) {
  .bento-48h, .bento-chat, .bento-graph, .bento-dashboard { grid-column: span 3; }
  .bento-icons, .bento-invoice, .bento-pause { grid-column: span 6; }
}

@media (max-width: 768px) {
  .bento-card { grid-column: span 6; }
}

/* Specific Card Interiors */
.bento-big-text {
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}

.icon-pack {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 20px;
  width: 100%;
}

.pack-icon {
  flex: 1;
  aspect-ratio: 1 / 1;
  max-height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-icon i {
  width: 44px;
  height: 44px;
  color: white;
  opacity: 0.8;
}

.fake-cursor {
  position: absolute;
  background: var(--secondary);
  color: var(--bg-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(57, 224, 189, 0.4);
  z-index: 10;
}

.fake-cursor::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -2px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-bottom: 14px solid var(--secondary);
  border-right: 8px solid transparent;
  transform: rotate(-25deg);
}

.cursor-1 { top: 60px; right: 200px; }
.cursor-2 { top: 110px; right: 40px; background: white; color: black; }
.cursor-2::before { border-bottom-color: white; }
.cursor-3 { top: 100px; right: 100px; }

.bento-invoice {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 10px 10px;
}

.invoice-text-content {
  padding: 40px;
  flex: 1;
  max-width: 50%;
  z-index: 2;
}

.invoice-text-content h4 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.invoice-text-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.invoice-mockup-wrap {
  flex: 1;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.invoice-mockup-new {
  width: 90%;
  max-width: 320px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  background-color: #0b0f19;
  border: 1px solid rgba(255,255,255,0.03);
  border-top-left-radius: 16px;
  border-right: none;
  border-bottom: none;
  padding: 30px;
  margin-right: -1px;
  margin-bottom: -1px;
  height: 90%;
  align-self: flex-end;
  box-shadow: -10px -10px 40px rgba(0,0,0,0.4);
}

.inv-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}

.inv-header-new .inv-logo {
  font-size: 28px;
  font-weight: 800;
  font-family: sans-serif;
  color: rgba(255,255,255,0.4);
}

.inv-status-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.inv-status-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inv-status-active {
  font-size: 32px;
  font-weight: 800;
  color: #39e0bd;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(57, 224, 189, 0.4);
}

.inv-rows-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inv-lines-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 50%;
}

.inv-lines-left .line {
  background: rgba(255,255,255,0.08);
  height: 3px;
  border-radius: 3px;
  width: 100%;
}

.inv-lines-left .line.short {
  width: 70%;
}

.inv-pill-right {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  height: 20px;
  width: 44px;
}

@media (max-width: 768px) {
  .bento-invoice {
    flex-direction: column;
  }
  .invoice-text-content {
    max-width: 100%;
  }
  .invoice-mockup-new {
    border-radius: 16px;
    margin: 0 auto -1px;
    height: auto;
    width: 100%;
    border-right: 1px solid rgba(255,255,255,0.03);
  }
}

.pause-glow {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.pause-glow::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 60px;
  background: var(--secondary);
  filter: blur(40px);
  opacity: 0.2;
}

.btn-pause {
  background: var(--gradient-accent);
  color: var(--bg-color);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(57, 224, 189, 0.4);
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.chat-mockup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  margin-top: auto;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
  max-width: 90%;
  color: #fff;
}

.chat-bubble.left {
  background: rgba(255, 255, 255, 0.03);
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.05);
}

.chat-bubble.right {
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-end;
}

.graph-mockup {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 30px;
  position: relative;
}

.graph-mockup::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.graph-mockup::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}

.bento-dashboard {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.dashboard-text-content {
  padding: 32px 32px 40px 32px;
}

.dashboard-text-content h4 {
  color: white;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.dashboard-text-content p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.5;
}

.dash-graphics {
  display: flex;
  gap: 16px;
  padding: 32px 32px 0 32px;
  flex: 1;
}

.mockup-code {
  background: #0b0f19;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  flex: 1.5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.code-header {
  background: rgba(255,255,255,0.03);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.code-header .dots {
  display: flex;
  gap: 6px;
}

.code-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.code-header .filename {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: monospace;
}

.code-body {
  padding: 20px;
  font-family: monospace;
  font-size: 12px;
  line-height: 1.6;
}

.code-body .keyword { color: #c678dd; }
.code-body .class { color: #e5c07b; }
.code-body .variable { color: #e06c75; }
.code-body .method { color: #61afef; }
.code-body .property { color: #d19a66; }
.code-body .string { color: #98c379; }

.mockup-tasks {
  background: #0b0f19;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

.mockup-status {
  background: #0b0f19;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.status-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.status-value {
  font-size: 24px;
  font-weight: 800;
  color: #39e0bd;
  margin-bottom: 12px;
}

.status-bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.status-bar .fill {
  height: 100%;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(57, 224, 189, 0.5);
}

.tx-info {
  text-align: right;
}

.tx-id {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.tx-amt {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.mockup-balance {
  padding: 20px 16px;
}

.mockup-balance h5 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
  color: white;
}

.bal-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.bal-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
}

@media (max-width: 600px) {
  .dash-graphics {
    flex-direction: column;
  }
}

/* Dashboard Card Animations (Hover & Scroll) */
.mockup-chart {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.bento-dashboard:hover .mockup-chart {
  transform: translateY(-8px);
  box-shadow: inset 0 0 60px rgba(57, 224, 189, 0.15), 0 16px 30px rgba(0,0,0,0.4);
  border-color: rgba(57, 224, 189, 0.3);
}

.mockup-txs, .mockup-balance {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.bento-dashboard:hover .mockup-txs {
  transform: translateY(-6px);
  box-shadow: inset 0 0 30px rgba(57, 224, 189, 0.1), 0 12px 24px rgba(0,0,0,0.4);
  border-color: rgba(57, 224, 189, 0.2);
}

.bento-dashboard:hover .mockup-balance {
  transform: translateY(-6px);
  box-shadow: inset 0 0 30px rgba(57, 224, 189, 0.1), 0 12px 24px rgba(0,0,0,0.4);
  border-color: rgba(57, 224, 189, 0.2);
  transition-delay: 0.1s;
}

.tx-item {
  transition: transform 0.3s ease, background 0.3s ease;
  padding: 6px;
  border-radius: 8px;
  margin: -6px;
}

.tx-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.05);
}

.mc-svg path {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.bento-dashboard.aos-animate .mc-svg path,
.bento-dashboard:hover .mc-svg path {
  opacity: 1;
}

.mc-svg polyline {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-dashboard.aos-animate .mc-svg polyline,
.bento-dashboard:hover .mc-svg polyline {
  stroke-dashoffset: 0;
}

/* --- Global Transition Settings for Bento Elements --- */
.bento-big-text, .pack-icon, .fake-cursor, 
.invoice-mockup, .invoice-mockup-new, .btn-pause, .pause-glow::before, 
.chat-bubble.left, .chat-bubble.right, 
.graph-mockup::before, .graph-mockup::after {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease, opacity 0.8s ease, border-color 0.6s ease, background 0.6s ease;
}

/* --- Scroll Animations (.aos-animate) --- */

/* Appears slightly hidden or offset until card scrolls in */
.bento-48h:not(.aos-animate) .bento-big-text { opacity: 0; transform: translateY(20px); }
.bento-48h.aos-animate .bento-big-text { opacity: 1; transform: translateY(0); transition-delay: 0.2s;}

.bento-icons:not(.aos-animate) .pack-icon { opacity: 0; transform: scale(0.8) translateY(20px); }
.bento-icons.aos-animate .pack-icon { opacity: 1; transform: scale(1) translateY(0); }
.bento-icons.aos-animate .pack-icon:nth-child(1) { transition-delay: 0.1s; }
.bento-icons.aos-animate .pack-icon:nth-child(2) { transition-delay: 0.2s; }
.bento-icons.aos-animate .pack-icon:nth-child(3) { transition-delay: 0.3s; }
.bento-icons.aos-animate .pack-icon:nth-child(4) { transition-delay: 0.4s; }

.bento-icons:not(.aos-animate) .fake-cursor.cursor-1 { opacity: 0; transform: translate(-20px, 20px); }
.bento-icons:not(.aos-animate) .fake-cursor.cursor-2 { opacity: 0; transform: translate(20px, 20px); }
.bento-icons.aos-animate .fake-cursor.cursor-1 { opacity: 1; transform: translate(0, 0); transition-delay: 0.6s; }
.bento-icons.aos-animate .fake-cursor.cursor-2 { opacity: 1; transform: translate(0, 0); transition-delay: 0.8s; }

.bento-invoice:not(.aos-animate) .invoice-mockup, .bento-invoice:not(.aos-animate) .invoice-mockup-new { opacity: 0; transform: translateY(30px) scale(0.95); }
.bento-invoice.aos-animate .invoice-mockup, .bento-invoice.aos-animate .invoice-mockup-new { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.3s; }

.bento-pause:not(.aos-animate) .btn-pause { opacity: 0; transform: scale(0.8); }
.bento-pause:not(.aos-animate) .fake-cursor.cursor-3 { opacity: 0; transform: translate(20px, 30px); }
.bento-pause.aos-animate .btn-pause { opacity: 1; transform: scale(1); transition-delay: 0.3s; }
.bento-pause.aos-animate .fake-cursor.cursor-3 { opacity: 1; transform: translate(0, 0); transition-delay: 0.7s; }

.bento-chat:not(.aos-animate) .chat-bubble.left { opacity: 0; transform: translateX(-20px); }
.bento-chat:not(.aos-animate) .chat-bubble.right { opacity: 0; transform: translateX(20px); }
.bento-chat.aos-animate .chat-bubble.left { opacity: 1; transform: translateX(0); transition-delay: 0.3s; }
.bento-chat.aos-animate .chat-bubble.right { opacity: 1; transform: translateX(0); transition-delay: 0.6s; }

.bento-graph:not(.aos-animate) .graph-mockup::before { opacity: 0; transform: scale(0); }
.bento-graph:not(.aos-animate) .graph-mockup::after { opacity: 0; transform: scale(0); }
.bento-graph.aos-animate .graph-mockup::before { opacity: 1; transform: scale(1); transition-delay: 0.3s; }
.bento-graph.aos-animate .graph-mockup::after { opacity: 1; transform: scale(1); transition-delay: 0.5s; }

/* --- Hover Animations --- */

/* Box 1 Hover */
.bento-48h:hover .bento-big-text {
  transform: scale(1.05) translateY(-5px);
  text-shadow: 0 10px 40px rgba(255,255,255,0.1);
  color: white;
}

/* Box 2 Hover */
.bento-icons:hover .pack-icon {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.bento-icons:hover .pack-icon:nth-child(even) { transform: translateY(-4px); }
.bento-icons:hover .fake-cursor.cursor-1 { transform: translate(15px, -15px) rotate(5deg); }
.bento-icons:hover .fake-cursor.cursor-2 { transform: translate(-15px, -10px) rotate(-5deg); }

/* Box 3 Hover */
.bento-invoice:hover .invoice-mockup, .bento-invoice:hover .invoice-mockup-new {
  transform: translateY(-8px) scale(1.02);
  box-shadow: -20px -20px 60px rgba(57, 224, 189, 0.15);
  border-color: rgba(57, 224, 189, 0.3);
}

/* Box 4 Hover */
.bento-pause:hover .btn-pause {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(57, 224, 189, 0.6);
}
.bento-pause:hover .pause-glow::before {
  transform: scale(1.5);
  opacity: 0.5;
}
.bento-pause:hover .fake-cursor.cursor-3 {
  transform: translate(-10px, -15px);
}

/* Box 5 Hover */
.bento-chat:hover .chat-bubble.left {
  transform: translateX(-5px) translateY(-5px);
  border-color: rgba(57, 224, 189, 0.3);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.bento-chat:hover .chat-bubble.right {
  transform: translateX(5px) translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Box 6 Hover */
.bento-graph:hover .graph-mockup::before {
  transform: scale(1.2) rotate(15deg);
  border-color: rgba(57, 224, 189, 0.3);
}
.bento-graph:hover .graph-mockup::after {
  transform: scale(0.8) rotate(-15deg);
  border-color: rgba(57, 224, 189, 0.6);
}

/* Value Board Section */
.value-board-card {
  background: #090e1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  margin-top: 40px;
}

.vb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.vb-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s ease;
}

.vb-item svg {
  color: #39e0bd;
  width: 24px;
  height: 24px;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.vb-item h4 {
  font-size: 18px;
  color: white;
  margin: 0;
}

.vb-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.vb-item:hover {
  transform: translateY(-5px);
}

.vb-item:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(57, 224, 189, 0.5));
}

@media (max-width: 1024px) {
  .vb-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vb-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-board-card { padding: 40px 24px; }
}

/* Design Solutions Section */
.solution-card {
  background: #090e1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  margin-top: 20px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sol-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  cursor: default;
}

.sol-icon {
  width: 44px;
  height: 44px;
  background: #04060b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.sol-icon svg {
  color: #39e0bd;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.sol-text {
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.sol-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(57, 224, 189, 0.2);
}

.sol-item:hover .sol-icon svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(57, 224, 189, 0.6));
}

@media (max-width: 1024px) {
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 24px; }
}

/* Progress Mockup */
.progress-mockup {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.tl-card {
  width: 100%;
  max-width: 580px;
  background: #0b0e14;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  box-shadow: -15px 15px 40px rgba(0,0,0,0.6);
  position: relative;
  padding-bottom: 24px;
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  color: white;
}

.tl-body {
  padding: 10px 24px 30px;
  position: relative;
}

.tl-months {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 20px;
}

.tl-grid-lines {
  position: absolute;
  top: 35px;
  bottom: 0;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.tl-grid-lines div {
  width: 1px;
  background: rgba(255,255,255,0.03);
  height: 100%;
}

.tl-tracks {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tl-track {
  height: 60px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  position: relative;
}

.tl-item {
  position: absolute;
  top: 0;
  height: 100%;
  background: #0f131a;
  border-radius: 6px;
  border-left-width: 3px;
  border-left-style: solid;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  cursor: default;
}

.tl-item:hover {
  transform: translateY(-2px);
  background: #141824;
}

.tl-item h6 {
  font-size: 11px;
  color: white;
  margin: 0 0 2px 0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tl-item small {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}

.tl-floating-assign {
  position: absolute;
  bottom: -40px;
  right: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: floatUpDown 4s ease-in-out infinite;
}

.tl-assign-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  background: #151a24;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 30px;
  position: relative;
}

.tl-pointer-line {
  position: absolute;
  width: 1px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  top: 35px;
}

.tl-avatars {
  display: flex;
  background: #151a24;
  padding: 6px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.tl-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #151a24;
  margin-left: -12px;
}
.tl-avatars img:first-child { margin-left: 0; }

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

@media (max-width: 1024px) {
  .progress-mockup { justify-content: center; margin-top: 40px; }
}

/* Global Presence Section */
.globe-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -30px;
}

.globe-sphere {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 5%, #1a2235, #000 70%);
  box-shadow: 0 -20px 60px rgba(255,255,255,0.05), inset 0 20px 40px rgba(255,255,255,0.1), inset 0 -2px 10px rgba(0,0,0,0.5);
  position: relative;
}

.globe-sphere::after {
  content: "";
  position: absolute;
  top: -40px; left: -40px; right: -40px; bottom: -40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.globe-sphere::before {
  content: "";
  position: absolute;
  top: -80px; left: -80px; right: -80px; bottom: -80px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.03);
  pointer-events: none;
  animation: spinRings 60s linear infinite;
}

@keyframes spinRings {
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .global-stats-row { flex-direction: column; gap: 40px; }
  .global-stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 40px; }
  .global-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .globe-container { margin-bottom: -50px; transform: scale(0.8); }
}

/* Client Logo Carousel */
.logo-carousel-wrap {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
}

.carousel-mask {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.left-mask {
  left: 0;
  background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.right-mask {
  right: 0;
  background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
  will-change: transform;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 120px;
  padding-right: 120px;
}

.client-logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: default;
}

.client-logo img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-logo:hover {
  color: #39e0bd;
  transform: scale(1.05);
}

.client-logo:hover svg {
  opacity: 1;
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-group { gap: 60px; padding-right: 60px; }
  .client-logo { font-size: 20px; }
}

/* FAQ Section */
.faq-list-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item[open] {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item:hover {
  border-color: rgba(57, 224, 189, 0.4);
  box-shadow: 0 4px 20px rgba(57, 224, 189, 0.05);
}

.faq-item summary {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: #39e0bd;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-icon {
  color: #39e0bd;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-content {
  padding: 0 24px 24px;
}

.faq-content p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.faq-h2-text {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -2px;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-h2-text {
    font-size: 42px;
  }
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  background: none;
  border: none;
  color: white;
  opacity: 0.8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lang-btn svg {
  width: 20px;
  height: 20px;
}

.lang-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-menu a:hover {
  background: rgba(57, 224, 189, 0.1);
  color: #39e0bd;
}

@media (max-width: 768px) {
  .lang-btn {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lang-btn svg {
    width: 24px;
    height: 24px;
  }
  .lang-menu {
    min-width: 120px;
  }
  .lang-menu a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .icon-pack {
    gap: 12px;
  }
  .pack-icon i {
    width: 24px;
    height: 24px;
  }
}

/* Design Showcase Carousel */
.design-carousel-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  display: flex;
}

.design-track {
  display: flex;
  width: max-content;
  animation: scrollDesigns 60s linear infinite;
  will-change: transform;
}

.design-track:hover {
  animation-play-state: paused;
}

.design-group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.design-card {
  width: 400px;
  height: 300px;
  flex: 0 0 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.design-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.design-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.design-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.design-overlay h3 {
  font-size: 22px;
  color: white;
  margin: 0;
}

.design-overlay span {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.design-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(57, 224, 189, 0.4);
  box-shadow: 0 20px 40px rgba(57, 224, 189, 0.15);
  z-index: 10;
}

.design-card:hover img {
  transform: scale(1.1);
}

.design-card:hover .design-overlay {
  transform: translateY(0);
  opacity: 1;
}

@keyframes scrollDesigns {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .design-card {
    width: 300px;
    height: 225px;
    flex: 0 0 300px;
  }
  .design-group {
    gap: 20px;
    padding-right: 20px;
  }
}

/* Contact Modal Styles */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.contact-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  animation: slideUp 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 30px;
  text-align: center;
}

.modal-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.8;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-family: var(--font-family);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(57, 224, 189, 0.08);
  box-shadow: 0 0 15px rgba(57, 224, 189, 0.1);
}

.form-status {
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
  .contact-modal {
    padding: 30px 20px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 2px 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 100px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(57, 224, 189, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  background-color: white;
  box-shadow: 0 6px 16px rgba(57, 224, 189, 0.6);
}

.scroll-top-btn:hover i {
  color: var(--secondary) !important;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-tooltip {
    display: none;
  }
  .scroll-top-btn {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}