/* ================================================
   KLK SISTEMAS - Landing Page Styles
   Réplica Pixel-Perfect del Diseño de Referencia
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Blues */
  --royal-blue: #0B52D6;
  --royal-blue-hover: #0940A8;
  --royal-blue-dark: #0B42A6;
  --blue-wedge: #1545A8;
  --navy-deep: #011438;
  --navy-darker: #020B1F;
  --navy-footer: #010D2A;
  --sky-blue: #38BDF8;
  --blue-connector: #2563EB;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0A1128;

  /* Layout */
  --container-width: 1140px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 50px;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
   HEADER
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: box-shadow 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.header-logo-img:hover {
  transform: scale(1.02);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--royal-blue);
  background: var(--gray-50);
}

.nav-link .arrow {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  border: 1px solid var(--gray-200);
  z-index: 100;
}

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

.dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
}

.dropdown a:hover {
  background: var(--gray-100);
  color: var(--royal-blue);
}

/* Header CTA Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--royal-blue-hover);
  box-shadow: 0 4px 12px rgba(11, 82, 214, 0.35);
}

.cta-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.header-cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ================================================
   HERO
   ================================================ */
.hero {
  padding-top: calc(var(--header-height) + 25px);
  padding-bottom: 25px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Dynamic Curved Hero Gradient Background matching reference */
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-gradient-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-container {
  display: grid;
  grid-template-columns: 0.88fr 1.45fr;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1260px;
}

.hero-content {
  max-width: 520px;
}

.hero-accent {
  width: 36px;
  height: 5px;
  background: var(--royal-blue);
  border-radius: 3px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.14;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-title .hero-blue {
  color: var(--royal-blue);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 430px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(11, 82, 214, 0.35);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--royal-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 82, 214, 0.45);
}

.btn-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--gray-100);
  color: var(--gray-900);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--gray-200);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  margin-right: -55px;
}

.hero-devices-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.14));
  transition: transform 0.3s ease;
  transform: translateX(45px);
}

@media (min-width: 1280px) {
  .hero-image-wrapper {
    margin-right: -80px;
  }

  .hero-devices-img {
    max-width: 770px;
    transform: translateX(65px);
  }
}

/* ================================================
   FEATURES BAR (Floating Overlapping White Card)
   ================================================ */
.features-bar {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 10;
  margin-bottom: -55px;
}

.features-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ================================================
   ECOSYSTEM / SOLUCIONES (Dark Navy Section)
   ================================================ */
.ecosystem {
  background: radial-gradient(circle at 50% 15%, #082963 0%, #011438 75%);
  padding: 95px 0 70px;
  color: var(--white);
  position: relative;
  z-index: 5;
}

.ecosystem-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.ecosystem-header .section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 10px;
  display: block;
}

.ecosystem-header .section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.ecosystem-header .section-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline .btn-arrow {
  font-size: 1rem;
}

/* ERP Integrations Banner (Ultra-HD Vector & Official Logos) */
.erp-integrations-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 12px 28px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 30px;
}

.erp-integrations-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.erp-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  flex: 1;
  transition: transform 0.2s ease;
}

.erp-logo-item:hover {
  transform: scale(1.06);
}

.erp-logo-item .erp-logo-img {
  max-height: 32px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.erp-logo-item .erp-b1 {
  max-height: 34px;
}

.erp-logo-item .erp-odoo {
  max-height: 24px;
}

.erp-profit-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.erp-profit-img {
  max-height: 26px !important;
  max-width: 105px !important;
}

.profit-badge {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.2;
  letter-spacing: 0.4px;
}

.profit-badge.badge-2k8 {
  background: linear-gradient(135deg, #0284c7, #0050d8);
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(2, 132, 199, 0.3);
}

.profit-badge.badge-2kdoce {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #1e293b;
  box-shadow: 0 2px 5px rgba(234, 179, 8, 0.3);
}

.erp-sep {
  width: 1px;
  height: 26px;
  background: #E2E8F0;
  flex-shrink: 0;
}

/* 7 Solution Cards Grid */
.solutions-cards-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  width: 100%;
  margin-bottom: 35px;
}

.solution-card-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  min-height: 200px;
}

.solution-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.solution-card-img {
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.solution-card-img img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.solution-card-item:hover .solution-card-img img {
  transform: scale(1.08);
}

.card-accent-pill {
  width: 34px;
  height: 3.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0B52D6 55%, #CBD5E1 55%);
  margin: 8px auto 10px;
}

.solution-card-item h4 {
  font-size: 0.74rem;
  font-weight: 800;
  color: #0A1B39;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  white-space: nowrap;
}

.solution-card-item p {
  font-size: 0.62rem;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

.solution-card-item p.empty-sub {
  user-select: none;
}

.ecosystem-footer-cta {
  display: flex;
  justify-content: center;
}

/* ================================================
   INDUSTRIES
   ================================================ */
.industries {
  padding: 65px 0 60px;
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-top: 0;
}

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

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.industry-image-container {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: visible;
}

.industry-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* The signature blue badge overlapping photo */
.industry-badge {
  position: absolute;
  bottom: -17px;
  left: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(11, 82, 214, 0.35);
  z-index: 2;
}

.industry-badge svg {
  width: 16px;
  height: 16px;
}

.industry-body {
  padding: 26px 16px 16px;
}

.industry-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.industry-body p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.industry-arrow {
  color: var(--royal-blue);
  font-size: 1.15rem;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease;
}

.industry-card:hover .industry-arrow {
  transform: translateX(4px);
}

/* ================================================
   CLIENTS (Continuous Flowing Carousel)
   ================================================ */
.clients {
  padding: 25px 0 55px;
  background: var(--white);
}

.clients-container {
  display: grid;
  grid-template-columns: 0.75fr 1.85fr;
  gap: 36px;
  align-items: center;
}

.clients-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1.15;
  margin-bottom: 8px;
}

.clients-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Carousel Column & Categories */
.clients-carousel-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.clients-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.client-cat-btn {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.client-cat-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.client-cat-btn.active {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11, 82, 214, 0.28);
}

/* Continuous Infinite Flowing Carousel */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  padding: 20px 0;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scrollMarquee 42s linear infinite;
  transition: opacity 0.25s ease;
}

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

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

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

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  min-width: 130px;
  padding: 0 10px;
}

.marquee-item img {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.25s ease;
}

.marquee-item:hover img {
  transform: scale(1.1);
}

/* ================================================
   SERVICES (Dark Navy Bar)
   ================================================ */
.services {
  padding: 0 0 50px;
  background: var(--white);
}

.services-bar {
  background: var(--navy-darker);
  border-radius: var(--radius-lg);
  padding: 26px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.service-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-glow-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-glow-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.6));
}

.service-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.25;
}

.service-info p {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.45;
  margin: 0;
}

/* ================================================
   CONTACT & LOCATION
   ================================================ */
.contact {
  padding: 45px 0 55px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.contact-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 45px;
  align-items: start;
}

.contact-title,
.location-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 12px;
}

/* Social icons */
.social-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.social-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-circle:hover {
  background: var(--royal-blue-hover);
  transform: translateY(-1px);
}

/* Form */
.contact-grid-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.form-row-three input,
.form-row-action input {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.82rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row-three input:focus,
.form-row-action input:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(11, 82, 214, 0.12);
}

.form-row-action {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-row-action input {
  flex: 1;
}

.btn-send {
  background: var(--royal-blue-dark);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
}

.btn-send:hover:not(:disabled) {
  background: var(--royal-blue-hover);
  transform: translateY(-1px);
}

.btn-send:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Honeypot Invisible */
.hp-check {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Form Feedback & WhatsApp Confirmation */
.form-feedback {
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  line-height: 1.55;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
}

.form-feedback.error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

.feedback-wa-action {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-wa-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-wa-direct:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(37, 211, 102, 0.45);
}

.wa-hint-text {
  font-size: 0.76rem;
  color: #15803D;
}

/* Location Box */
.location-detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.location-pin {
  flex-shrink: 0;
  margin-top: 2px;
}

.map-wrapper {
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  height: 135px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-footer);
  padding: 26px 0;
  color: var(--gray-400);
  font-size: 0.82rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

.footer-center p {
  color: var(--gray-400);
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
}

.footer-link:hover {
  color: var(--sky-blue);
}

/* ================================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-accent {
    margin: 0 auto 20px;
  }

  .hero-subtitle {
    margin: 0 auto 25px;
  }

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

  .hero-image-wrapper {
    justify-content: center;
    margin-top: 20px;
    margin-right: 0;
  }

  .hero-devices-img {
    max-width: 580px;
    margin: 0 auto;
    transform: none;
  }

  .hero-bg-gradient {
    opacity: 0.22;
  }

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

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

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

  .clients-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .clients-heading-box {
    text-align: center;
    margin-bottom: 6px;
  }

  .services-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-logo-img {
    height: 44px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .features-bar {
    margin-bottom: -35px;
  }

  .ecosystem {
    padding: 70px 0 50px;
  }

  .industries {
    margin-top: 0;
    padding: 50px 0 45px;
  }

  .features-card {
    grid-template-columns: 1fr;
  }

  .form-row-three {
    grid-template-columns: 1fr;
  }

  .form-row-action {
    flex-direction: column;
  }

  .btn-send {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .solutions-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .erp-integrations-wrapper {
    padding: 8px 12px;
  }
}