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

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #0f172a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(at 40% 20%, rgba(2, 124, 161, 0.08) 0px, transparent 50%), radial-gradient(at 80% 0%, rgba(6, 182, 212, 0.06) 0px, transparent 50%), radial-gradient(at 0% 50%, rgba(2, 124, 161, 0.05) 0px, transparent 50%), radial-gradient(at 80% 50%, rgba(6, 182, 212, 0.04) 0px, transparent 50%), radial-gradient(at 0% 100%, rgba(2, 124, 161, 0.06) 0px, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #027ca1;
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0 0 12px 12px;
  transition: top 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
.skip-link:focus {
  top: 0;
}

noscript p {
  background: #f59e0b;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.75rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 16px;
  color: #475569;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #027ca1;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
a:hover {
  color: #026485;
}

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

ul, ol {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-title {
  margin-bottom: 16px;
  color: #0f172a;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header:hover .section-title::after {
  opacity: 1;
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin-top: 24px;
}

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

.text-primary {
  color: #027ca1;
}

.text-muted {
  color: #94a3b8;
}

::selection {
  background-color: rgba(2, 124, 161, 0.08);
  color: #027ca1;
}

:focus-visible {
  outline: 2px solid #027ca1;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: 12px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.btn:hover::before {
  left: 100%;
}
.btn:focus {
  outline: none;
}
.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(2, 124, 161, 0.08), 0 10px 30px rgba(2, 124, 161, 0.2);
}
.btn svg {
  transition: transform 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
.btn:hover svg {
  transform: translateX(2px);
}

.btn-primary {
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(2, 124, 161, 0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(2, 124, 161, 0.2), 0 10px 30px rgba(2, 124, 161, 0.15);
  color: white;
}
.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(2, 124, 161, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #e2e8f0;
  color: #0f172a;
  position: relative;
}
.btn-outline::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover {
  border-color: transparent;
  color: #027ca1;
  background-color: #ffffff;
}
.btn-outline:hover::after {
  opacity: 1;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 16px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-2px);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 12px;
}
.btn-icon svg {
  width: 20px;
  height: 20px;
}
.btn-icon:hover svg {
  transform: scale(1.1);
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.6;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(2, 124, 161, 0.12);
}

.card-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, #0891b2 0%, #027ca1 50%, #0369a1 100%);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  filter: blur(40px);
}
.card-glow:hover::after {
  opacity: 0.1;
}

.card-gradient-border {
  background: #ffffff;
  border: none;
  position: relative;
}
.card-gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(2, 124, 161, 0.3), rgba(6, 182, 212, 0.1), transparent);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #0f172a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  color: #0f172a;
  background-color: #ffffff;
  transition: all 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #027ca1;
  box-shadow: 0 0 0 4px rgba(2, 124, 161, 0.08);
}

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

.form-note {
  margin-top: 16px;
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 124, 161, 0.2);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(2, 124, 161, 0.08);
  color: #027ca1;
}

.badge-gradient {
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  color: white;
}

.gradient-text {
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-primary {
  background: radial-gradient(circle, rgba(2, 124, 161, 0.4) 0%, transparent 70%);
}

.blob-accent {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-20px, -10px) scale(1.02);
  }
}
.gradient-animated {
  background: linear-gradient(-45deg, #027ca1, #0891b2, #06b6d4, #0369a1);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.shimmer {
  position: relative;
  overflow: hidden;
}
.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.pulse-ring {
  position: relative;
}
.pulse-ring::before, .pulse-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #027ca1;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}
.pulse-ring::after {
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.glow-text {
  text-shadow: 0 0 20px rgba(2, 124, 161, 0.4), 0 0 40px rgba(2, 124, 161, 0.2);
}

.hover-scale {
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  opacity: 0.8;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-links li {
  display: block;
}
@media (max-width: 1280px) {
  .nav-links {
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 32px;
    gap: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 300;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links li {
    display: block;
    width: 100%;
  }
  .nav-links a {
    display: block;
    font-size: 18px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }
  .nav-links a::after {
    display: none;
  }
}
.nav-links a {
  color: #475569;
  font-weight: 500;
  font-size: 14px;
  transition: color 150ms cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  transition: width 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-links a:hover {
  color: #027ca1;
}
.nav-links a:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .nav-cta {
    display: none;
  }
}

.nav-cta-mobile {
  display: none !important;
}
@media (max-width: 1024px) {
  .nav-cta-mobile {
    display: block !important;
    margin-top: auto;
    padding: 32px 0;
    border-bottom: none !important;
    text-align: center;
  }
  .nav-cta-mobile a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: none;
    border-radius: 9999px;
  }
  .nav-cta-mobile a::after {
    display: none;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border-radius: 8px;
  transition: background 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex;
  }
}
.mobile-menu-btn:hover {
  background: #f8fafc;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  transition: all 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 25%, #f0f9ff 50%, #e0e7ff 75%, #f8fafc 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}
.hero::before {
  width: 600px;
  height: 600px;
  background: rgba(2, 124, 161, 0.15);
  top: -200px;
  right: -200px;
}
@media (max-width: 576px) {
  .hero::before {
    width: 300px;
    height: 300px;
  }
}
.hero::after {
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.15);
  bottom: -100px;
  left: -100px;
}
@media (max-width: 576px) {
  .hero::after {
    width: 200px;
    height: 200px;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}
@media (max-width: 576px) {
  .hero .container {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    order: 2;
  }
}

.hero-devices {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero-devices {
    order: 1;
    max-width: 450px;
    height: 350px;
  }
}
@media (max-width: 576px) {
  .hero-devices {
    max-width: 320px;
    height: 280px;
  }
}

.device {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.device-laptop {
  width: 320px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .device-laptop {
    width: 280px;
  }
}
@media (max-width: 576px) {
  .device-laptop {
    width: 200px;
  }
}

.laptop-screen {
  background: #0f172a;
  border-radius: 16px 16px 0 0;
  padding: 8px;
  border: 3px solid #1e293b;
  border-bottom: none;
}

.screen-header {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.screen-dot:nth-child(1) {
  background: #ff5f57;
}
.screen-dot:nth-child(2) {
  background: #febc2e;
}
.screen-dot:nth-child(3) {
  background: #28c840;
}

.screen-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  min-height: 160px;
}
@media (max-width: 576px) {
  .screen-content {
    min-height: 100px;
    padding: 8px;
  }
}

.screen-nav {
  height: 12px;
  background: #f8fafc;
  border-radius: 6px;
  margin-bottom: 12px;
  width: 60%;
}
@media (max-width: 576px) {
  .screen-nav {
    height: 8px;
    margin-bottom: 8px;
  }
}

.screen-hero {
  height: 40px;
  background: linear-gradient(135deg, rgba(2, 124, 161, 0.2), rgba(2, 124, 161, 0.1));
  border-radius: 8px;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .screen-hero {
    height: 25px;
    margin-bottom: 8px;
  }
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 576px) {
  .screen-grid {
    gap: 4px;
  }
}

.screen-card {
  height: 55px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: cardPulse 3s ease-in-out infinite;
}
.screen-card:nth-child(2) {
  animation-delay: -1s;
}
.screen-card:nth-child(3) {
  animation-delay: -2s;
}

@keyframes cardPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.card-img {
  height: 24px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border-radius: 4px;
  animation: shimmer 2s infinite;
}

.card-text {
  height: 6px;
  width: 80%;
  background: #f1f5f9;
  border-radius: 3px;
}

.card-price {
  height: 6px;
  width: 50%;
  background: linear-gradient(90deg, #027ca1, #0891b2);
  border-radius: 3px;
}

@keyframes shimmer {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@media (max-width: 576px) {
  .screen-card {
    height: 35px;
    padding: 4px;
    gap: 2px;
  }
  .card-img {
    height: 14px;
  }
  .card-text, .card-price {
    height: 4px;
  }
}

.laptop-base {
  height: 12px;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border-radius: 0 0 4px 4px;
  margin: 0 20px;
}
@media (max-width: 576px) {
  .laptop-base {
    height: 8px;
    margin: 0 15px;
  }
}

.device-tablet {
  width: 140px;
  height: 200px;
  right: 60px;
  top: 10%;
  z-index: 2;
  border: 4px solid #0f172a;
  border-radius: 24px;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 1024px) {
  .device-tablet {
    width: 120px;
    height: 170px;
    right: 40px;
  }
}
@media (max-width: 576px) {
  .device-tablet {
    width: 90px;
    height: 130px;
    right: 20px;
    top: 5%;
  }
}

.tablet-screen {
  width: 100%;
  height: 100%;
  padding: 10px;
}
.tablet-screen .screen-content {
  height: 100%;
  min-height: auto;
}
.tablet-screen .screen-nav {
  width: 50%;
  margin-bottom: 10px;
}

.screen-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 576px) {
  .screen-list {
    gap: 5px;
  }
}

.screen-item {
  height: 38px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: slideIn 0.5s ease-out forwards;
}
.screen-item:nth-child(1) { animation-delay: 0.1s; }
.screen-item:nth-child(2) { animation-delay: 0.2s; }
.screen-item:nth-child(3) { animation-delay: 0.3s; }

.item-img {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
  border-radius: 6px;
  flex-shrink: 0;
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.item-title {
  height: 5px;
  width: 70%;
  background: #e2e8f0;
  border-radius: 2px;
}

.item-price {
  height: 5px;
  width: 40%;
  background: linear-gradient(90deg, #027ca1, #0891b2);
  border-radius: 2px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .screen-item {
    height: 26px;
    padding: 4px;
    gap: 4px;
  }
  .item-img {
    width: 18px;
    height: 18px;
  }
  .item-title, .item-price {
    height: 3px;
  }
}

.device-phone {
  width: 90px;
  height: 180px;
  right: 0;
  bottom: 10%;
  z-index: 3;
  border: 4px solid #0f172a;
  border-radius: 24px;
  animation: float 5s ease-in-out infinite;
  animation-delay: -2s;
}
@media (max-width: 1024px) {
  .device-phone {
    width: 80px;
    height: 160px;
  }
}
@media (max-width: 576px) {
  .device-phone {
    width: 65px;
    height: 130px;
    right: 0;
    bottom: 15%;
  }
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: #0f172a;
  border-radius: 10px;
  z-index: 1;
}
@media (max-width: 576px) {
  .phone-notch {
    width: 30px;
    height: 8px;
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 28px 8px 8px;
}
@media (max-width: 576px) {
  .phone-screen {
    padding: 22px 6px 6px;
  }
}
.phone-screen .screen-content {
  height: 100%;
  min-height: auto;
  padding: 8px;
}
@media (max-width: 576px) {
  .phone-screen .screen-content {
    padding: 5px;
  }
}
.phone-screen .screen-nav {
  width: 40%;
  height: 8px;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .phone-screen .screen-nav {
    height: 5px;
    margin-bottom: 5px;
  }
}

.screen-product {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 6px;
  border: 1px solid #e2e8f0;
}

.product-img {
  height: 35px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #cffafe 100%);
  border-radius: 6px;
  margin-bottom: 6px;
  animation: shimmer 2s infinite;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-title {
  height: 5px;
  width: 70%;
  background: #e2e8f0;
  border-radius: 2px;
}

.product-price {
  height: 6px;
  width: 45%;
  background: linear-gradient(90deg, #027ca1, #0891b2);
  border-radius: 2px;
}

.product-rating {
  display: flex;
  gap: 2px;
}

.product-rating .star {
  width: 6px;
  height: 6px;
  background: #fbbf24;
  border-radius: 1px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@media (max-width: 576px) {
  .screen-product {
    padding: 4px;
    margin-bottom: 5px;
  }
  .product-img {
    height: 22px;
    margin-bottom: 4px;
  }
  .product-title {
    height: 4px;
  }
  .product-price {
    height: 4px;
  }
  .product-rating .star {
    width: 4px;
    height: 4px;
  }
}

.screen-btn {
  height: 20px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(2, 124, 161, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(2, 124, 161, 0); }
}

@media (max-width: 576px) {
  .screen-btn {
    height: 14px;
    font-size: 5px;
  }
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 4;
  backdrop-filter: blur(10px);
}
.hero-badge-float svg {
  color: #027ca1;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hero-badge-float {
    padding: 8px 12px;
    font-size: 10px;
    gap: 6px;
  }
  .hero-badge-float svg {
    width: 14px;
    height: 14px;
  }
}

/* Badge 1 - Order Confirmed */
.hero-badge-1 {
  top: -5%;
  left: 25%;
  animation: floatBadge 4s ease-in-out infinite, fadeInUp 0.6s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}
.hero-badge-1 svg {
  color: #10b981;
}
.badge-icon-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: notificationPulse 2s ease-in-out infinite;
}
.badge-icon-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #10b981;
  border-radius: 50%;
  animation: notificationRing 2s ease-out infinite;
}

@keyframes notificationPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes notificationRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* Badge 2 - Sales */
.hero-badge-2 {
  bottom: 15%;
  left: 5%;
  animation: floatBadge 4s ease-in-out infinite, fadeInUp 0.6s ease-out 0.2s backwards;
  animation-delay: -1.5s;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}
.hero-badge-2 svg {
  color: #10b981;
  position: absolute;
  top: 12px;
  right: 12px;
}
.badge-amount {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.amount-value {
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
  letter-spacing: -0.5px;
}
.amount-label {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
}

/* Badge 3 - Delivery */
.hero-badge-3 {
  top: 30%;
  right: -5%;
  animation: floatBadge 4s ease-in-out infinite, fadeInUp 0.6s ease-out 0.4s backwards;
  animation-delay: -3s;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}
.hero-badge-3 svg {
  color: #3b82f6;
}

/* Badge 4 - Cart */
.hero-badge-4 {
  bottom: 35%;
  right: 15%;
  animation: floatBadge 4s ease-in-out infinite, fadeInUp 0.6s ease-out 0.6s backwards;
  animation-delay: -2s;
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
}
.hero-badge-4 svg {
  color: #f59e0b;
}
.cart-count {
  position: absolute;
  top: -6px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cartBounce 0.6s ease-out;
}

@keyframes cartBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-badge-3, .hero-badge-4 {
    display: none;
  }
  .hero-badge-1 {
    left: 20%;
    top: 0;
  }
  .hero-badge-2 {
    left: 0;
    bottom: 10%;
  }
}

@media (max-width: 576px) {
  .hero-badge-1 {
    left: 10%;
  }
  .amount-value {
    font-size: 14px;
  }
  .amount-label {
    font-size: 9px;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: #475569;
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 576px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
}
@media (max-width: 1024px) {
  .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-image {
    max-width: 100%;
  }
}

.hero-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.mockup-browser {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid #f1f5f9;
}
@media (max-width: 576px) {
  .mockup-browser {
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  }
}

.browser-dots {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 576px) {
  .browser-dots {
    padding: 12px 16px;
    gap: 6px;
  }
}
.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .browser-dots span {
    width: 10px;
    height: 10px;
  }
}
.browser-dots span:nth-child(1) {
  background-color: #ff5f57;
}
.browser-dots span:nth-child(2) {
  background-color: #febc2e;
}
.browser-dots span:nth-child(3) {
  background-color: #28c840;
}

.browser-content {
  padding: 32px;
}
@media (max-width: 576px) {
  .browser-content {
    padding: 16px;
  }
}

.mockup-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, rgba(2, 124, 161, 0.05) 100%);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e2e8f0;
}
@media (max-width: 768px) {
  .mockup-placeholder {
    height: 240px;
  }
}
@media (max-width: 576px) {
  .mockup-placeholder {
    height: 160px;
    border-radius: 12px;
    border-width: 1px;
  }
}
.mockup-placeholder span {
  color: #94a3b8;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 576px) {
  .mockup-placeholder span {
    font-size: 14px;
  }
}

.features {
  padding: 120px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .features {
    padding: 80px 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 24px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(2, 124, 161, 0.2), transparent 40%, transparent 60%, rgba(6, 182, 212, 0.15));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(2, 124, 161, 0.08) 0%, transparent 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(2, 124, 161, 0.12);
  transform: translateY(-10px);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 50px rgba(2, 124, 161, 0.2), 0 10px 30px rgba(2, 124, 161, 0.15);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(2, 124, 161, 0.08);
  border-radius: 16px;
  margin-bottom: 24px;
  color: #027ca1;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.feature-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.integrations {
  padding: 120px 0;
  background: #f8fafc;
}
@media (max-width: 768px) {
  .integrations {
    padding: 80px 0;
  }
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
}

.integration-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 24px;
  padding: 48px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.integration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.integration-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(2, 124, 161, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.integration-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(2, 124, 161, 0.12);
  transform: translateY(-10px);
}
.integration-card:hover::before {
  transform: scaleX(1);
}
.integration-card:hover::after {
  opacity: 1;
}
.integration-card:hover .integration-icon {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 0 50px rgba(2, 124, 161, 0.2), 0 10px 30px rgba(2, 124, 161, 0.15);
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  color: white;
}

.integration-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(2, 124, 161, 0.08);
  border-radius: 16px;
  margin-bottom: 24px;
  color: #027ca1;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.integration-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.integration-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.integration-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: #0f172a;
}
.integration-list li svg {
  color: #10b981;
  flex-shrink: 0;
}

.ecommerce-showcase {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ecommerce-showcase {
    padding: 80px 0;
  }
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.showcase-graphic {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .showcase-graphic {
    max-width: 320px;
    height: 320px;
  }
}

.connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hub-center .hub-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 50px rgba(2, 124, 161, 0.25);
  animation: pulse 3s ease-in-out infinite;
}
@media (max-width: 576px) {
  .hub-center .hub-icon {
    width: 80px;
    height: 80px;
  }
  .hub-center .hub-icon svg {
    width: 36px;
    height: 36px;
  }
}
.hub-center span {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatBadge 4s ease-in-out infinite;
}
.orbit-item .orbit-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #027ca1;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  border: 2px solid #f1f5f9;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 576px) {
  .orbit-item .orbit-icon {
    width: 50px;
    height: 50px;
  }
  .orbit-item .orbit-icon svg {
    width: 22px;
    height: 22px;
  }
}
.orbit-item span {
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}
.orbit-item:hover .orbit-icon {
  transform: scale(1.1);
  border-color: #027ca1;
  box-shadow: 0 10px 30px rgba(2, 124, 161, 0.2);
}

.orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.orbit-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: -1s;
}

.orbit-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -2s;
}

.orbit-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: -3s;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-feature {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-feature:hover {
  border-color: transparent;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  transform: translateX(8px);
}
.showcase-feature:hover .showcase-feature-icon {
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  color: white;
}

.showcase-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 124, 161, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #027ca1;
  flex-shrink: 0;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.showcase-feature-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.how-it-works {
  padding: 120px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 80px 0;
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e2e8f0 10%, #e2e8f0 90%, transparent);
}
@media (max-width: 1024px) {
  .steps::before {
    display: none;
  }
}
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
  padding: 32px;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(2, 124, 161, 0.2);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.step-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.mobile-apps {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mobile-apps {
    padding: 80px 0;
  }
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.app-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 24px;
  padding: 32px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1), width 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.app-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(2, 124, 161, 0.12);
  transform: translateY(-12px);
}
.app-card:hover::before {
  opacity: 1;
  width: 80%;
}
.app-card:hover .phone-frame {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
}
.app-card:hover .app-icon {
  transform: scale(1.15);
  box-shadow: 0 20px 50px rgba(2, 124, 161, 0.25);
}

.app-mockup {
  margin-bottom: 32px;
}

.phone-frame {
  width: 140px;
  height: 280px;
  background: linear-gradient(145deg, #0f172a, rgb(4.2631578947, 6.5368421053, 11.9368421053));
  border-radius: 28px;
  padding: 8px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 576px) {
  .phone-frame {
    width: 120px;
    height: 240px;
    border-radius: 24px;
  }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: #0f172a;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
@media (max-width: 576px) {
  .phone-notch {
    width: 50px;
    height: 16px;
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, rgba(2, 124, 161, 0.08) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .phone-screen {
    border-radius: 16px;
  }
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}
@media (max-width: 576px) {
  .app-icon {
    width: 56px;
    height: 56px;
  }
  .app-icon svg {
    width: 28px;
    height: 28px;
  }
}

.app-icon-users {
  background: linear-gradient(135deg, #027ca1, #0369a1);
}

.app-icon-seller {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.app-icon-driver {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.app-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.app-desc {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: #0f172a;
}
.app-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

.app-stores {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0f172a;
  color: white;
  border-radius: 12px;
  transition: all 150ms cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
}
.store-badge:hover {
  background: rgb(21.7105263158, 33.2894736842, 60.7894736842);
  transform: translateY(-2px);
}
.store-badge svg {
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.store-text span {
  font-size: 9px;
  opacity: 0.8;
}
.store-text strong {
  font-size: 12px;
  font-weight: 600;
}

.contact {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
}
@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 24px;
  font-size: 2.75rem;
}

.contact-text {
  color: #475569;
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0f172a;
  font-weight: 500;
}
.contact-item svg {
  width: 24px;
  height: 24px;
  color: #027ca1;
}

.contact-form {
  background: #ffffff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}
@media (max-width: 576px) {
  .contact-form {
    padding: 32px;
  }
}

.footer {
  background: #0f172a;
  color: white;
  padding: 96px 0 48px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.footer-brand .logo-text {
  color: white;
}
.footer-brand .logo-icon {
  box-shadow: none;
}
.footer-brand .logo {
  margin-bottom: 24px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 150ms cubic-bezier(0.25, 1, 0.5, 1);
}
.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(2, 124, 161, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 124, 161, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(2, 124, 161, 0.2);
  top: -150px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.15);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Floating E-commerce Icons */
.hero-float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  color: #027ca1;
  opacity: 0.6;
  z-index: 0;
}

.float-icon-1 {
  top: 15%;
  left: 8%;
  animation: floatIcon 6s ease-in-out infinite;
}

.float-icon-2 {
  top: 25%;
  right: 12%;
  animation: floatIcon 7s ease-in-out infinite;
  animation-delay: -1s;
}

.float-icon-3 {
  bottom: 30%;
  left: 5%;
  animation: floatIcon 8s ease-in-out infinite;
  animation-delay: -2s;
}

.float-icon-4 {
  top: 60%;
  right: 8%;
  animation: floatIcon 6.5s ease-in-out infinite;
  animation-delay: -3s;
}

.float-icon-5 {
  bottom: 15%;
  right: 20%;
  animation: floatIcon 7.5s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero-float-icon {
    width: 36px;
    height: 36px;
    display: none;
  }
  .hero-float-icon svg {
    width: 18px;
    height: 18px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(2, 124, 161, 0.1);
  border: 1px solid rgba(2, 124, 161, 0.2);
  border-radius: 9999px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #027ca1;
}
@media (max-width: 1024px) {
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #027ca1;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(2, 124, 161, 0.1);
  border: 1px solid rgba(2, 124, 161, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #027ca1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-glow {
  position: relative;
}
.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: inherit;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn-glow:hover::before {
  opacity: 0.6;
}

.mockup-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  animation: floatBadge 4s ease-in-out infinite;
}
.mockup-float svg {
  color: #027ca1;
}
@media (max-width: 576px) {
  .mockup-float {
    display: none;
  }
}

.mockup-float-1 {
  top: 20%;
  left: -60px;
  animation-delay: 0s;
}

.mockup-float-2 {
  bottom: 30%;
  right: -60px;
  animation-delay: -2s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.stats {
  padding: 48px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}
@media (max-width: 768px) {
  .stat-item:not(:last-child)::after {
    display: none;
  }
}
.stat-item:hover .stat-number {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 576px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-platforms {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .live-platforms {
    padding: 80px 0;
  }
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 24px;
  text-decoration: none;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(2, 124, 161, 0.3), transparent 50%, rgba(6, 182, 212, 0.2));
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.platform-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 40px rgba(2, 124, 161, 0.12);
}
.platform-card:hover::before {
  opacity: 1;
}
.platform-card:hover .platform-logo {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(2, 124, 161, 0.2);
}
.platform-card:hover .platform-link {
  color: #027ca1;
  transform: translate(2px, -2px);
}

.platform-logo {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-logo-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.platform-logo-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.platform-logo-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.platform-logo-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.platform-logo-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.platform-logo-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.platform-logo-gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
}

.platform-logo-indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.platform-logo-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.platform-logo-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* App Store Links */
.platform-app-links {
  display: flex;
  gap: 8px;
  padding: 12px 24px 16px;
  border-top: 1px solid #f1f5f9;
  margin-top: -1px;
}

.platform-app-links:empty {
  display: none;
}

.app-store-link,
.play-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  transition: all 0.2s ease;
  text-decoration: none;
}

.app-store-link:hover,
.play-store-link:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-1px);
}

.app-store-link svg,
.play-store-link svg {
  width: 20px;
  height: 20px;
}

.platform-logo-sky {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.platform-initial {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.platform-info {
  flex: 1;
  min-width: 0;
}

.platform-name {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-type {
  font-size: 14px;
  color: #475569;
  margin-bottom: 4px;
}

.platform-region {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #027ca1;
  background: rgba(2, 124, 161, 0.08);
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-link {
  color: #94a3b8;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}
.platform-link svg {
  width: 20px;
  height: 20px;
}

/* Platform Cards V2 - Compact Modern Design */
.platforms-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .platforms-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .platforms-grid-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.platform-card-v2 {
  text-decoration: none;
  display: block;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
  overflow: hidden;
}

.platform-card-v2:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.platform-card-v2 .platform-card-inner {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.platform-card-v2:hover .platform-logo-v2 {
  transform: scale(1.05);
}

.platform-card-v2:hover .platform-link-icon {
  color: #027ca1;
  transform: translate(2px, -2px);
}

.platform-logo-v2 {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #027ca1, #06b6d4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.platform-initial-v2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.platform-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* When logo has image, use white background */
.platform-logo-v2:has(.platform-logo-img) {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 6px;
}

.platform-content-v2 {
  flex: 1;
  min-width: 0;
}

.platform-header-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.platform-name-v2 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-link-icon {
  color: #94a3b8;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.platform-type-v2 {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 8px;
}

.platform-region-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #027ca1;
  background: transparent;
  padding: 0;
}

.platform-region-v2 svg {
  display: none;
}

.tech-stack {
  padding: 64px 0;
  background: #f8fafc;
}

.tech-header {
  text-align: center;
  margin-bottom: 48px;
}

.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 576px) {
  .tech-grid {
    gap: 24px;
  }
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.tech-item:hover {
  border-color: #027ca1;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}
.tech-item:hover .tech-icon {
  color: #027ca1;
}
@media (max-width: 576px) {
  .tech-item {
    padding: 16px 24px;
  }
}

.tech-icon {
  color: #475569;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-item span {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.about {
  padding: 120px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-text .section-badge {
  margin-bottom: 16px;
}
.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .about-text .section-title {
    text-align: center;
  }
}

.about-desc {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 16px;
}
.about-desc strong {
  color: #0f172a;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .about-desc {
    text-align: center;
  }
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1024px) {
  .about-highlight {
    text-align: left;
  }
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(2, 124, 161, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #027ca1;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.highlight-text p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-image {
    display: none;
  }
}

.about-graphic {
  position: relative;
  width: 100%;
  height: 400px;
}

.graphic-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #027ca1 0%, #0891b2 50%, #0369a1 100%);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  opacity: 0.1;
  animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
}
.graphic-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid #f1f5f9;
}
.graphic-card svg {
  color: #027ca1;
}
.graphic-card span {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.graphic-card-1 {
  top: 10%;
  left: 10%;
  animation: floatBadge 5s ease-in-out infinite;
}

.graphic-card-2 {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation: floatBadge 5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.graphic-card-3 {
  bottom: 10%;
  left: 30%;
  animation: floatBadge 5s ease-in-out infinite;
  animation-delay: -3s;
}

.cta-section {
  position: relative;
  padding: 96px 0;
  background: #0f172a;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 64px 0;
  }
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

.cta-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(2, 124, 161, 0.35);
  top: -250px;
  left: 15%;
}

.cta-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.25);
  bottom: -200px;
  right: 15%;
  animation-delay: -4s;
}

@keyframes ctaGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
}

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

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(2, 124, 161, 0.08);
  border-radius: 12px;
  color: #027ca1;
  flex-shrink: 0;
}

.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #0f172a;
  font-weight: 500;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

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