@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;500;700&family=Red+Hat+Display:wght@400;500;700;900&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  /* More professional blue */
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --secondary-color: #20282d;
  /* Dark Slate from Invena */
  --accent-color: #2563eb;
  --glow-color: rgba(37, 99, 235, 0.4);
  --text-dark: #20282d;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --font-heading: "Red Hat Display", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-invena: 15px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation & Top Bar */
.top-bar {
  background: #000;
  color: white;
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 60px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info span {
  color: white;
}

.top-bar-info span i {
  color: var(--primary-light);
  margin-right: 5px;
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.top-bar-social a:hover {
  color: var(--primary-light);
}

.navbar {
  position: fixed;
  top: 40px;
  width: 100%;
  background: var(--bg-white);
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  top: 0;
  background: var(--bg-white);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  max-width: 100%;
  padding: 0 60px;
}

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

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 45px;
  width: auto;
  /* Removed filter to show original dark logo */
  transition: all 0.4s ease;
}

.logo-wordmark {
  margin-left: -4px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.005em;
  color: #0f172a;
  line-height: 1;
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .logo-wordmark {
    font-size: 0.92rem;
    margin-left: -3px;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

/* Ensure each nav item is properly isolated - prevents click area bleed */
.nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Extra gap before the Get Started button */
.nav-menu li:last-child {
  margin-left: 0.5rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

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

.navbar.scrolled .nav-link:hover {
  color: var(--primary-color);
}

.nav-menu .nav-link[href="/register"] {
  background: var(--primary-color);
  color: white !important;
  padding: 10px 25px;
  border-radius: var(--radius-invena);
  margin-left: 10px;
  transition: all 0.3s ease;
}

.nav-menu .nav-link[href="/register"]:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu .nav-link[href="/register"]::after {
  display: none;
}

.btn-solutions {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  white-space: nowrap;
  /* Prevent click area from overlapping adjacent elements */
  position: relative;
  z-index: 2;
  user-select: none;
}

.btn-solutions:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Hidden Drawer Styles */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: min(400px, 100vw);
  height: 100vh;
  background: rgba(18, 24, 32, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 60px 40px;
  color: white;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.nav-drawer.active {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.drawer-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.drawer-close:hover {
  transform: rotate(90deg);
}

.drawer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer-group h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 20px;
  opacity: 0.8;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drawer-link {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-link:hover {
  color: var(--primary-light);
  padding-left: 10px;
}

.drawer-link i {
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.drawer-link:hover i {
  opacity: 1;
  transform: translateX(5px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  text-align: center;
}

.hero-section.hero-split {
  height: auto;
  min-height: calc(100vh - 142px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  text-align: left;
  background: #ffffff;
  color: #ffffff;
}

.hero-section.hero-split .hero-panel {
  position: relative;
  min-height: 620px;
}

.hero-section.hero-split .hero-panel-left {
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, rgba(15, 35, 77, 0.96) 0%, rgba(16, 44, 97, 0.92) 54%, rgba(8, 33, 83, 0.96) 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-section.hero-split .hero-panel-left::before {
  content: "";
  position: absolute;
  right: -28%;
  top: -18%;
  width: 70%;
  height: 145%;
  border-radius: 50%;
  background: rgba(73, 121, 212, 0.25);
  pointer-events: none;
}

.hero-section.hero-split .hero-panel-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(70px, 7vw, 96px) clamp(28px, 4vw, 52px) clamp(64px, 6vw, 92px)
    clamp(38px, 5.2vw, 84px);
}

.hero-section.hero-split .hero-panel-right {
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-section.hero-split .hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-section.hero-split .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.hero-split .hero-slide.active {
  opacity: 1;
}

.hero-section.hero-split .hero-content {
  max-width: 640px;
  margin: 0;
  text-shadow: none;
}

.hero-section.hero-split .hero-content h1,
.hero-section.hero-split .hero-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.hero-section.hero-split .hero-content .subtitle,
.hero-section.hero-split .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
  max-width: 520px;
}

.hero-section.hero-split .hero-buttons {
  justify-content: flex-start;
}

/* Blue Glow Effect at Bottom */
.hero-section::after {
  display: none;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  filter: contrast(1.15) saturate(1.15) brightness(1.05);
  /* Slight scale for slow zoom effect */
  animation: zoomEffect 20s infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Invena Style Badge: Small, Caps, Spaced */
.hero-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 25px;
  font-family: var(--font-heading);
  animation: fadeInUp 0.8s ease;
}

/* Large, Bold Heading */
.hero-title,
.hero-content h1 {
  font-size: 5.5rem;
  /* Massive heading */
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.05;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -2px;
  font-family: var(--font-heading);
  color: #ffffff;
}

.hero-title strong,
.hero-content h1 strong {
  color: #ffffff;
  font-weight: 400;
  /* Regular weight for contrast */
}

.hero-subtitle,
.hero-content .subtitle {
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
  opacity: 0.85;
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 400;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-app-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.18);
}

.hero-app-icon {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.28);
}

.hero-app-label {
  color: #0f172a;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
}

/* Invena Style Buttons */
.hero-buttons .btn,
.hero-buttons a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-invena);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: var(--font-heading);
}

/* Primary Button: Dark bg, White text (Classic Invena) */
/* Primary Button: Blue bg, White text (High Contrast) */
.hero-buttons .btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.hero-buttons .btn-primary:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Outline Button: Transparent, White Border */
.hero-buttons .btn-primary.outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-primary.outline:hover {
  background: #ffffff;
  color: var(--secondary-color);
  border-color: #ffffff;
  transform: translateY(-5px);
}

/* Hero Glow Effects */
.hero-glow-1,
.hero-glow-2 {
  display: none;
}

.hero-glow-1 {
  bottom: -100px;
  left: -100px;
}

.hero-glow-2 {
  bottom: -50px;
  right: -100px;
  background: rgba(139, 92, 246, 0.3);
  /* Purple tint */
  animation-delay: -5s;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-100px) scale(1.2);
  }
}

/* Hero Floating Elements */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 1;
  /* Below hero content but above overlay */
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #333;
}

.floating-card.card-left {
  top: 30%;
  left: 5%;
  animation-delay: 0s;
}

.floating-card.card-right {
  bottom: 25%;
  right: 5%;
  animation-delay: 2s;
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.floating-card .card-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-card .label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.floating-card .value {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

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

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

@media (max-width: 1024px) {
  .floating-card {
    display: none;
    /* Hide on smaller screens */
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 2px;
  animation: expandLine 0.8s ease 0.5s both;
}

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Services Section */
.services {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite 2s;
}

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

.service-card {
  background: var(--bg-white);
  padding: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card > *:not(.service-image) {
  padding: 0 2rem;
}

.service-card > .service-icon {
  margin-top: 1.5rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: 0;
  opacity: 0.9;
  transition: all 0.4s ease;
  display: block;
}

.service-card:hover .service-image {
  opacity: 1;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  padding-top: 1.5rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 2rem;
}

/* Products Section */
.products {
  position: relative;
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(59, 130, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px) rotateY(2deg) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.product-card:hover .product-icon {
  animation: pulse 1s ease-in-out infinite;
  transform: scale(1.1);
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-image {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 10s linear infinite;
}

.product-icon {
  font-size: 4rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.product-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

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

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.product-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* About Section */
.about {
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-check {
  background: var(--primary-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
}

.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
}

/* Stats Section */
.stats-section {
  background: var(--secondary-color);
  padding: 80px 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  display: inline-block;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-left: 5px;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-dark)
  );
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/pattern-bg.png);
  /* Subtle pattern if available, or just texture */
  opacity: 0.05;
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  padding: 18px 40px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Footer Section */
.footer {
  background: #0f172a;
  /* Deeper dark for footer */
  color: white;
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand .footer-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 25px;
  filter: none;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 0 8px 0;
  max-width: none;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-link-group h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.footer-link-group h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-link-group ul {
  list-style: none;
}

.footer-link-group ul li {
  margin-bottom: 15px;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link-group a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  min-width: 0;
  line-height: 1.35;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px 18px;
}

.contact-info i {
  width: 18px;
  margin-right: 8px;
  color: #93c5fd;
}

.contact-info a {
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  gap: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer .container {
  max-width: 100%;
  margin: 0;
  padding-left: 24px;
  padding-right: 24px;
}

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

  .footer .container {
    padding-left: 12px;
    padding-right: 12px;
  }

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

/* Product Pages */
.product-hero {
  padding: 120px 0 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  position: relative;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.product-hero .container {
  position: relative;
  z-index: 2;
}

.rentals-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../../../assets/images/rentals-management-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.rentals-hero::before {
  background: rgba(0, 0, 0, 0.3);
}

.product-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.25);
}

.product-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.product-tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.product-overview {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.overview-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.product-features {
  background: var(--bg-light);
  padding: 60px 0;
}

/* Section Headers (Invena Style) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-pre-title {
  display: block;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Feature/Service Cards (Invena Style) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: var(--radius-invena);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: left;
  position: relative;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 30px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.read-more-btn i {
  width: 35px;
  height: 35px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--primary-color);
}

.read-more-btn:hover i {
  background: var(--primary-color);
}

/* About Section (Invena Style) */
.about-section {
  padding: 120px 0;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.main-img {
  width: 85%;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.sub-img {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  border: 10px solid white;
  border-radius: 30px;
  box-shadow: var(--shadow-xl);
}

.exp-card {
  position: absolute;
  top: 50px;
  left: -40px;
  background: var(--secondary-color);
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exp-card h4 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.exp-card span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.about-content-text {
  text-align: left;
}

.about-content-text .section-pre-title {
  margin-bottom: 20px;
}

.about-content-text h2 {
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-features {
  list-style: none;
  margin-top: 40px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-features li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.product-benefits {
  padding: 60px 0;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.benefit-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.benefit-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.product-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.business-solutions {
  background: var(--bg-light);
  padding: 60px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.solution-card.featured {
  border: 2px solid var(--primary-color);
}

.solution-card .badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.solution-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.solution-card ul {
  list-style: none;
}

.solution-card ul li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.solution-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  50% {
    transform: translateY(-25px) rotate(0deg);
  }

  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

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

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

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

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

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
}

.service-card:hover .service-icon {
  animation: pulse 0.5s ease-in-out infinite;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }

  .hero-section.hero-split {
    height: auto;
    min-height: 0;
    align-items: stretch;
    justify-content: flex-start;
    grid-template-columns: 1fr;
  }

  .hero-section.hero-split .hero-panel {
    min-height: 0;
  }

  .hero-section.hero-split .hero-panel-right {
    order: -1;
    height: auto;
    min-height: 360px;
    max-height: none;
    background: #0f234d;
  }

  .hero-section.hero-split .hero-image {
    max-width: none;
    margin: 0;
    object-position: center top;
  }

  .hero-section.hero-split .hero-panel-inner {
    max-width: none;
    padding: 68px 24px 60px;
    text-align: left;
  }

  .hero .container,
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content,
  .about-content-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

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

  .hero-image,
  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .main-img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }

  .hero-section.hero-split .hero-panel-right {
    height: auto;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 0;
    background: #0f234d;
  }

  .hero-section.hero-split .hero-carousel {
    margin-top: 0;
  }

  .hero-section.hero-split .hero-panel-inner {
    padding: 60px 20px 52px;
  }

  .hero-section.hero-split .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section.hero-split .hero-buttons .btn,
  .hero-section.hero-split .hero-buttons a.btn-primary {
    width: 100%;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    padding: 0 15px;
  }

  .top-bar-info {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    align-items: center;
  }

  .top-bar-social {
    display: none;
  }

  .navbar {
    position: relative;
    top: 0;
    height: auto;
  }

  .navbar.scrolled {
    position: fixed;
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--bg-white);
    width: 100%;
    height: calc(100vh - 70px);
    text-align: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    padding: 3rem 0;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-image {
    display: none;
  }

  .section-title,
  .section-header h2 {
    font-size: 2rem;
  }

  .contact-content,
  .overview-content,
  .benefit-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

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

  .about-features li {
    justify-content: center;
  }

  .product-hero h1 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Download Pages Styles */
.download-options {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.download-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.download-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.download-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.download-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.download-info {
  margin-bottom: 25px;
}

.version-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.download-icon-small {
  font-size: 1.2rem;
}

.system-requirements {
  font-size: 0.8rem;
  color: var(--text-light);
}

.download-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.note-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.note-card h4 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.note-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.download-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 30px 20px;
  }

  .download-stats {
    gap: 20px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 0.75rem 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .services-grid,
  .products-grid,
  .downloads-grid,
  .features-grid,
  .solutions-grid {
    grid-template-columns: 1fr !important;
  }
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #007bff;
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-call,
.btn-whatsapp {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.btn-call {
  background-color: #28a745;
  color: white;
  border: 1px solid #28a745;
}

.btn-call:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background-color: #1da851;
  border-color: #1da851;
}

/* SEO Optimized Content Styles */
.seo-content {
  padding: 60px 0;
  background: var(--bg-light);
}

.seo-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.seo-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.seo-section h3 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  color: var(--text-dark);
}

.seo-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.seo-section ul,
.seo-section ol {
  color: var(--text-light);
  margin-bottom: 20px;
  padding-left: 20px;
}

.seo-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Structured Data Visual */
.structured-data {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  font-family: monospace;
  font-size: 0.9rem;
  overflow-x: auto;
}

/* FAQ Schema Styling */
.faq-schema {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: var(--shadow-md);
}

.faq-schema h3 {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.faq-schema-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.faq-schema-item:last-child {
  border-bottom: none;
}

.faq-schema-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-schema-answer {
  color: var(--text-light);
  line-height: 1.7;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  padding: 15px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--bg-light);
}

.breadcrumb-nav ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-nav li {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--gray-light);
}

.breadcrumb-nav a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: var(--text-light);
}

/* Print Styles for Documentation */
@media print {
  .navbar,
  .product-hero-buttons,
  .footer,
  .docs-sidebar,
  .product-cta {
    display: none !important;
  }

  .docs-content {
    box-shadow: none !important;
    padding: 0 !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  .code-block {
    page-break-inside: avoid;
    background: #f5f5f5 !important;
    color: #333 !important;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
    font-weight: normal;
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading Optimization */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-loaded {
  opacity: 1;
}

/* Schema.org Rich Snippets */
.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

.rating-value {
  font-weight: 600;
  margin-left: 8px;
}

.review-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Semantic HTML enhancements */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

time {
  color: var(--text-light);
  font-size: 0.9rem;
}

mark {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
  /* Hero Badge Adjustments */
  .product-badge {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 90%;
    white-space: normal;
    margin-bottom: 1.5rem !important;
  }

  .product-badge img {
    height: 28px !important;
    /* Override inline style */
    width: auto !important;
    margin-right: 8px !important;
  }

  /* Pricing Section Adjustments */
  .pricing-highlight {
    padding: 1.5rem !important;
  }

  .price-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .price-from {
    font-size: 2.5rem !important;
  }

  /* Fix for Pricing Benefits List Checkmarks */
  .pricing-benefits .benefit-item {
    flex-direction: row !important;
    /* Force row layout to prevent icon stacking */
    align-items: flex-start !important;
    text-align: left;
    margin-bottom: 0.5rem;
  }

  /* CTA Adjustments */
  .pricing-cta .btn-primary {
    width: 100%;
    max-width: 300px;
  }

  /* --- Page Specific Overrides --- */

  /* Documentation Page (.docs-container is used in documentation.html) */
  .docs-container {
    grid-template-columns: 1fr !important;
    /* Stack sidebar and content */
    gap: 20px !important;
    padding: 40px 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .docs-sidebar {
    position: static !important;
    /* Remove sticky on mobile */
    width: 100% !important;
    margin-bottom: 20px !important;
    order: -1;
    /* Ensure sidebar (nav) is at top */
  }

  /* Features Page */
  .section-header h2 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .category-tabs {
    flex-direction: column;
    width: 100%;
  }

  .category-tab {
    width: 100%;
    text-align: center;
    border-radius: 8px !important;
    /* Slightly nicer on full width */
  }

  /* Pricing Page */
  .pricing-toggle {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Download Page */
  .download-grid {
    grid-template-columns: 1fr !important;
  }

  .spec-item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 5px;
  }

  .download-specs span:first-child {
    font-weight: bold;
    color: var(--text-dark);
  }
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-map {
  height: 600px;
  border-radius: var(--radius-invena);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: var(--bg-white);
  border-radius: var(--radius-invena);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-details p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Responsive Contact Section */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    height: 400px;
  }
}

/* =========================================================
   SEO Landing Page Responsive Rewrite
   Scope: rent-agent-workspace-frontend/seo/index.html
   ========================================================= */

.nav-cta-btn,
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-invena);
}

.nav-cta-btn {
  padding: 12px 30px;
  background: var(--primary-color);
  color: #fff;
}

.about-cta-btn {
  padding: 18px 35px;
  background: var(--secondary-color);
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.section-header h2,
.about-content-text h2 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.2;
}

.section-header p,
.about-content-text p {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
}

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

img,
iframe {
  max-width: 100%;
}

@media (max-width: 1200px) {
  .navbar .container,
  .top-bar .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-section.hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-section.hero-split .hero-panel-inner {
    padding-left: clamp(22px, 3vw, 36px);
    padding-right: clamp(22px, 3vw, 36px);
  }
}

@media (max-width: 992px) {
  .hero-section.hero-split {
    grid-template-columns: 1fr;
  }

  .hero-section.hero-split .hero-panel-right {
    order: -1;
    min-height: 360px;
  }

  .top-bar-info {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .hero-section.hero-split .hero-panel-right {
    min-height: 320px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-images,
  .about-content-text {
    max-width: 760px;
    margin-inline: auto;
  }

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

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

  .contact-wrapper {
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-bar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section.hero-split {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-section.hero-split .hero-panel-right {
    min-height: 320px;
    padding-top: 0;
    margin-top: 0;
    background: #0f234d;
  }

  .hero-section.hero-split .hero-carousel {
    display: block;
    height: 320px;
    min-height: 320px;
    margin-top: 0;
  }

  .hero-section.hero-split .hero-slide {
    top: 0;
  }

  .hero-section.hero-split .hero-panel-inner {
    padding: 48px 16px;
  }

  .hero-section.hero-split .hero-content,
  .hero-section.hero-split .hero-content h1,
  .hero-section.hero-split .hero-content .subtitle {
    text-align: left;
  }

  .hero-section.hero-split .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero-section.hero-split .hero-buttons .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 18px;
  }

  .hero-app-mark {
    width: auto;
    max-width: min(100%, 340px);
    justify-content: flex-start;
    align-self: flex-start;
  }

  .about-images .main-img,
  .about-images .sub-img {
    width: 100%;
    height: auto;
  }

  .about-section {
    overflow: visible;
    padding-bottom: 84px;
  }

  .about-images {
    max-width: 100%;
    padding-bottom: 8px;
  }

  .about-content-text {
    margin-top: 20px;
    padding-bottom: 12px;
  }

  .about-cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    min-height: 52px;
    line-height: 1.25;
    white-space: normal;
  }

  .exp-card {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin: 18px auto 0;
    transform: none;
  }

  .features-grid,
  .stats-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }

  .contact-item {
    padding: 20px;
    gap: 14px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  section {
    padding: 64px 0;
  }

  .top-bar {
    font-size: 0.78rem;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }

  .hero-content .subtitle {
    line-height: 1.65;
  }

  .hero-app-mark {
    gap: 8px;
    max-width: min(100%, 280px);
    padding: 8px 12px 8px 8px;
    border-radius: 24px;
  }

  .hero-app-icon {
    width: 40px;
    height: 40px;
  }

  .hero-app-label {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .btn-solutions {
    padding: 9px 14px;
    font-size: 0.9rem;
  }

  .top-bar-info span:last-child {
    display: none;
  }

  .nav-cta-btn,
  .about-cta-btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
  }

  .about-cta-btn {
    min-height: 52px;
    align-items: center;
    line-height: 1.3;
    white-space: normal;
  }

  .about-section {
    padding-bottom: 72px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map {
    height: 240px;
  }
}
