:root {
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green-500: #22c55e;

  --bg-secondary: #f8f9fa;
  --border: #e5e7eb;
  --text: #111827;
  --text-secondary: #374151;
  --text-muted: #9ca3af;
  --primary: #2563eb;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
}

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

#nav-placeholder {
  height: 73px;
}

#devices-placeholder {
  min-height: 260px;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.nav-logo {
  height: 45px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--slate-900);
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}
.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--slate-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--slate-900);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white) !important;
}
.btn-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}
.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  transform: translateY(-2px);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 10rem 5% 6rem;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  color: var(--blue-600);
}
.hero p {
  font-size: 1.15rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Visual with animations */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*  VMS Summary */
.vms-summary {
  background: var(--bg-secondary, #f8f9fa);
  border-top: 1px solid var(--border, #e5e7eb);
  border-bottom: 1px solid var(--border, #e5e7eb);
  padding: 3rem 0;
}

.vms-summary-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.vms-summary-inner h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text, #111827);
}

.vms-summary-inner p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary, #374151);
  margin-bottom: 1rem;
}

.vms-repeated-claim {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary, #2563eb);
  border-left: 3px solid var(--primary, #2563eb);
  padding: 0.75rem 1rem;
  margin-top: 1.5rem;
  background: var(--bg-secondary, #f8f9fa);
  border-radius: 0 0.375rem 0.375rem 0;
  text-align: left;
}

/* Image Styles */
.img-showcase {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.img-showcase:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.25);
}

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--slate-100);
  padding: 1rem;
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}
.hero-float:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.hero-float-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}
.hero-float-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.float-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.hero-float:hover .float-icon {
  transform: scale(1.1);
}
.float-icon.green {
  background: #dcfce7;
}
.float-icon.blue {
  background: var(--blue-100);
}
.float-text {
  font-size: 0.8rem;
}
.float-text strong {
  display: block;
  color: var(--slate-800);
}
.float-text span {
  color: var(--slate-500);
}

/* Logos */
.logos-section {
  padding: 4rem 5%;
  border-bottom: 1px solid var(--slate-100);
}
.logos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.logos-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-300);
  transition: all 0.3s ease;
}
.logo-item:hover {
  color: var(--slate-500);
  transform: scale(1.05);
}

/* Sections */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 6rem 5%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  border-color: var(--blue-200);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}
.feature-icon.blue {
  background: var(--blue-100);
}
.feature-icon.green {
  background: #dcfce7;
}
.feature-icon.orange {
  background: #ffedd5;
}
.feature-icon.purple {
  background: #f3e8ff;
}
.feature-icon.cyan {
  background: #cffafe;
}
.feature-icon.rose {
  background: #ffe4e6;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* Showcase */
.showcase {
  padding: 6rem 5%;
  background: var(--slate-50);
}
.showcase-item {
  max-width: 1200px;
  margin: 0 auto 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.showcase-item:nth-child(odd) .showcase-visual {
  order: 2;
}
.showcase-item:last-child {
  margin-bottom: 0;
}
.showcase-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.showcase-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.showcase-text {
  font-size: 1.05rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.showcase-list {
  list-style: none;
  margin-bottom: 2rem;
}
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--slate-700);
  transition: transform 0.2s ease;
}
.showcase-list li:hover {
  transform: translateX(5px);
}
.showcase-list li::before {
  content: "✓";
  color: var(--green-500);
  font-weight: bold;
  flex-shrink: 0;
}

.showcase-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px #0000000f;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px #00000014;
}

.showcase-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.showcase-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .showcase-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .showcase-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Showcase Image Container */
.showcase-visual {
  position: relative;
}
.showcase-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.showcase-img-wrapper:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25);
}
.showcase-img-wrapper:hover::before {
  opacity: 1;
}
.showcase-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Decorative elements for images */
.showcase-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--blue-100);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  transition: all 0.4s ease;
}
.showcase-visual::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 16px;
  z-index: -1;
  opacity: 0.2;
  transition: all 0.4s ease;
}
.showcase-visual:hover::before {
  transform: scale(1.2);
  opacity: 0.4;
}
.showcase-visual:hover::after {
  transform: scale(1.1) rotate(5deg);
  opacity: 0.3;
}

/* Integrations */
.integrations {
  padding: 6rem 5%;
}
.integration-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.integration-card {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.integration-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.integration-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
  transition: all 0.4s ease;
}
.integration-card:hover::before {
  transform: scale(1.5);
  opacity: 0.8;
}
.integration-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.integration-card:hover .integration-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.15);
}
.integration-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.integration-card p {
  color: var(--slate-400);
  line-height: 1.7;
  font-size: 0.95rem;
}

.integration-card a {
  color: var(--white);
  text-decoration: none;
}

/* Stats */
.stats {
  padding: 5rem 5%;
  background: var(--blue-600);
  color: var(--white);
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: scale(1.05);
}
.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Testimonial */
.testimonial {
  padding: 6rem 5%;
  background: var(--slate-50);
}
.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--blue-100);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.testimonial-author:hover .author-avatar {
  transform: scale(1.1);
}
.author-info {
  text-align: left;
}
.author-info h4 {
  font-weight: 600;
  color: var(--slate-800);
}
.author-info span {
  font-size: 0.9rem;
  color: var(--slate-500);
}

/* CTA */
.cta {
  padding: 6rem 5%;
}
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.cta-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3);
}
.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 70%
  );
  transition: all 0.4s ease;
}
.cta-container:hover::before {
  transform: scale(1.3);
}
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
.cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.cta-wrapper {
  text-align: center;
  margin: 2rem 0 6rem;
  background: transparent;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--blue-600) !important;
}
.cta .btn-primary:hover {
  background: var(--slate-100);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary, #374151);
  background: var(--bg-secondary, #f8f9fa);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 2rem;
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
}

.hyper-link {
  font-weight: bold;
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--slate-900);
  color: var(--white);
  padding: 4rem 5% 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p,
.footer-company p {
  color: var(--slate-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-links h4,
.footer-company h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--slate-300);
}
.footer-links ul,
.footer-company ul {
  list-style: none;
}
.footer-links li,
.footer-company li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-company p:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
  font-size: 0.85rem;
  color: var(--slate-400);
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}


.footer-socials a:nth-child(1):hover {
  color: #000;
}

.footer-socials a:nth-child(2):hover {
  color: #0a66c2;
}

.footer-socials a:nth-child(3):hover {
  color: #1877f2;
}

.footer-socials a:nth-child(4):hover {
  color: #ff0000;
}

.footer-socials a:nth-child(5):hover {
  color: #e1306c;
}

.footer-socials a:nth-child(6):hover {
  color: #1185fe;
}

.footer-claim {
  font-size: 0.8rem;
  color: var(--text-muted, #9ca3af);
  line-height: 1.6;
  margin-top: 1rem;
  font-style: italic;
}

.footer-line {
  border-bottom: 1px solid var(--slate-600);
  margin-bottom: 0.6rem;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--slate-700);
}

/* Demo form */
.hidden {
  display: none;
}
.demo-form {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  animation: fadeInUp 0.4s ease-out;
}
.demo-form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
}
.form-group select option {
  color: black;
}
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.form-success {
  margin-top: 1rem;
  color: #86efac;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-group a.priv {
  color: var(--white);
}
.form-group .checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-group .checkbox-container input {
  margin-top: 3px;
  flex-shrink: 0;
}
.form-group .checkbox-container label {
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger-children.visible > *:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-children.visible > *:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-children.visible > *:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-children.visible > *:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-children.visible > *:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger-children.visible > *:nth-child(6) {
  transition-delay: 0.6s;
}
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    max-width: 550px;
    margin: 0 auto;
  }
  .hero-float {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-item {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .showcase-item:nth-child(odd) .showcase-visual {
    order: 0;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
    width: 100%;
    background: #fffffffa;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 12px #0000000d;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
  .hero {
    padding: 8rem 5% 4rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .integration-cards {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .cta-container {
    padding: 3rem 2rem;
  }
  .img-showcase {
    transform: none;
  }

  .img-showcase:hover {
    transform: none;
  }

  .hero {
    padding: 6rem 5% 3rem;
  }

  .showcase-img-wrapper:hover {
    transform: none;
  }

  .showcase-list li:hover {
    transform: none;
  }

  .feature-card:hover {
    transform: none;
  }

  .logo-item:hover {
    transform: none;
  }
}

.footer-socials a {
  width: 48px;
  height: 48px;
}

@media (max-width: 768px) {
  .nav-links a {
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: center;
  }
}
