html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
  --primary: #1a237e;
  --primary-dark: #0d133c;
  --secondary: #e3e7fa;
  --secondary-dark: #c5cae9;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

* {
  max-width: 100%;
}

.hero,
.features,
.pricing,
.faq,
.contact,
.footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  overflow: visible;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  hyphens: auto;
}

.qr-decoration {
  position: absolute;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.qr-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-left {
  left: -10px;
  top: 10%;
  width: 120px;
  height: 120px;
  animation: floatLeft 6s ease-in-out infinite;
}

.qr-right {
  right: -10px;
  top: 75%;
  width: 100px;
  height: 100px;
  animation: floatRight 8s ease-in-out infinite;
}

.qr-left-2 {
  left: 10px;
  top: 85%;
  width: 80px;
  height: 80px;
  animation: floatLeft 10s ease-in-out infinite reverse;
}

.qr-right-2 {
  right: 10px;
  top: 15%;
  width: 90px;
  height: 90px;
  animation: floatRight 7s ease-in-out infinite reverse;
}

@keyframes floatLeft {

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

  50% {
    transform: translateY(-15px) translateX(5px) rotate(1deg);
  }
}

@keyframes floatRight {

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

  50% {
    transform: translateY(15px) translateX(-5px) rotate(-1deg);
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(26, 35, 126, 0.12),
    0 4px 16px rgba(26, 35, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 1050;
  border-bottom: 1px solid rgba(26, 35, 126, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 12px 40px rgba(26, 35, 126, 0.15),
    0 6px 20px rgba(26, 35, 126, 0.1);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 1rem 2rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(26, 35, 126, 0.15));
  transition: all 0.3s ease;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
}

.navbar-center {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 0.5rem;
  border: 1px solid rgba(26, 35, 126, 0.1);
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 1.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.nav-link.active {
  background: linear-gradient(135deg, var(--primary) 0%, #4054b2 100%) !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow:
    0 4px 15px rgba(26, 35, 126, 0.2),
    0 2px 8px rgba(26, 35, 126, 0.1) !important;
  transform: translateY(-1px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.navbar-center .nav-link.active {
  background: linear-gradient(135deg, var(--primary) 0%, #4054b2 100%) !important;
  color: white !important;
}

.nav-link:hover:not(.active) {
  background: rgba(26, 35, 126, 0.08);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.15);
}

.navbar-right {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
}

.navbar .nav-btn {
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  min-width: 100px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 1.8rem;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.navbar .primary {
  background: linear-gradient(135deg, var(--primary) 0%, #4054b2 100%);
  color: #fff;
  box-shadow:
    0 6px 20px rgba(26, 35, 126, 0.2),
    0 2px 10px rgba(26, 35, 126, 0.1);
}

.navbar .primary:hover {
  background: linear-gradient(135deg, #4054b2 0%, var(--primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(26, 35, 126, 0.25),
    0 4px 15px rgba(26, 35, 126, 0.15);
}

.navbar .ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  backdrop-filter: blur(10px);
}

.navbar .ghost:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  position: relative;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
  transform-origin: left center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 6px;
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0px;
  left: 6px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1100;
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  overflow: hidden;
}

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

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--primary);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: linear-gradient(135deg, var(--primary) 0%, #4054b2 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.25);
}

.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
  margin-top: 2rem;
}

.mobile-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.nav-btn {
  font-size: 1.08rem;
  padding: 0.8rem 2.2rem;
  min-width: 120px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.10);
  border-radius: 2.2rem;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
}

.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.12);
}

.primary:hover {
  background: var(--primary-dark);
}

.hero-cta-button {
  animation: wiggleButton 16s ease-in-out infinite;
  animation-delay: 3s;
}

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

.secondary:hover {
  background: var(--secondary-dark);
}

.ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  cursor: pointer;
}

.ghost:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem 2rem 2rem;
  gap: 3rem;
  background: #fff;
  overflow: visible;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 600px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  font-family: 'Poppins', Arial, sans-serif;
  color: #222;
  margin: 0;
  padding-top: 2rem;
  position: relative;
  order: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  text-align: left;
  color: #222;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-title-main {
  font-size: 2.8rem;
  font-weight: 400;
  color: #444;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.hero-title-highlight {
  font-size: 3.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  opacity: 0;
  animation: slideInRight 0.8s ease-out 0.6s forwards;
}

.hero-title-highlight::after {
  content: '✨';
  position: absolute;
  right: -40px;
  top: 20%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  opacity: 0;
  animation: sparkleIn 0.8s ease-out 1.2s forwards;
}

.hero-title-action {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(26, 35, 126, 0.1);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 1s forwards;
}

@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 slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes sparkleIn {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.5) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2) rotate(180deg);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: 'Poppins', Arial, sans-serif;
  text-align: left;
  color: #555;
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.hero-desc-highlight {
  color: var(--primary);
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc-emphasis {
  color: #333;
  font-weight: 500;
  font-style: italic;
}

.hero-desc-cta {
  color: var(--primary-dark);
  font-weight: 600;
}

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

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

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideInButtons 0.8s ease-out 1.8s forwards;
  position: relative;
  z-index: 50;
}

.hero-buttons .nav-btn {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: none;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  min-width: 160px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  text-align: center;
}

.hero-buttons .primary {
  background: linear-gradient(135deg, var(--primary) 0%, #4054b2 50%, var(--primary-dark) 100%);
  color: white;
  box-shadow:
    0 8px 25px rgba(26, 35, 126, 0.25),
    0 4px 15px rgba(26, 35, 126, 0.15);
  position: relative;
}

.hero-buttons .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.6s;
}

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

.hero-buttons .primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(26, 35, 126, 0.35),
    0 6px 20px rgba(26, 35, 126, 0.25);
  background: linear-gradient(135deg, #4054b2 0%, var(--primary-dark) 50%, #0a0f2e 100%);
}

.hero-buttons .ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: demoButtonPulse 2s ease-in-out infinite;
}

.hero-buttons .ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.hero-buttons .ghost:hover::before {
  left: 100%;
}

.hero-buttons .ghost:hover {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(26, 35, 126, 0.25),
    0 6px 15px rgba(26, 35, 126, 0.15);
  animation: none;
}

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

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

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow:
      0 8px 25px rgba(26, 35, 126, 0.25),
      0 4px 15px rgba(26, 35, 126, 0.15);
  }

  50% {
    box-shadow:
      0 12px 35px rgba(26, 35, 126, 0.35),
      0 6px 20px rgba(26, 35, 126, 0.25);
  }
}

@keyframes demoButtonPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 4px 15px rgba(26, 35, 126, 0.1),
      0 2px 8px rgba(26, 35, 126, 0.05);
  }

  50% {
    transform: scale(1.02);
    box-shadow:
      0 8px 25px rgba(26, 35, 126, 0.2),
      0 4px 12px rgba(26, 35, 126, 0.1);
  }
}

.hero-cta-button {
  animation: wiggleButton 3s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-cta-button:hover {
  animation: none;
}

.hero-support {
  display: block;
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}

@media (min-width: 1300px) {
  .hero-buttons {
    margin-left: 30px;
  }
}

@media (min-width: 901px) {
  .hero-buttons {
    position: absolute;
    bottom: 8rem !important;
    left: 0;
  }

  .hero-content {
    position: relative;
    padding-bottom: 1rem;
  }
}

.hero-image {
  min-width: 280px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  flex: 0 0 auto;
  order: 2;
  margin-left: 2rem;
  padding: 40px 0 20px 0;
}

.slider-img {
  animation: floatSlider 4s ease-in-out infinite;
  width: 490px;
  height: auto;
  max-width: 100%;
}

@keyframes floatSlider {

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

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

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

  18.75% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.05);
  }

  31.25% {
    transform: scale(1);
  }

  37.5% {
    transform: scale(1.05);
  }

  43.75% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  56.25% {
    transform: scale(1);
  }

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

.slider-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 7px;
  height: 7px;
  background: radial-gradient(circle at 60% 40%, #ffd700 70%, #fff 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px #ffd700, 0 0 2px 1px #fff;
  opacity: 0.85;
  animation: twinkle 1.5s infinite ease-in-out;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.1;
  }
}

.image-placeholder {
  width: 340px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 2px 16px rgba(0, 122, 255, 0.10);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.features {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.features-main-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.features-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #667eea);
  border-radius: 2px;
}

.features-sub-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #222;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.08);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 120px;
  width: 100%;
  max-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.15);
  border-color: var(--primary);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

@keyframes sequentialHover {

  0%,
  85% {
    transform: translateY(0px);
    box-shadow: 0 4px 20px rgba(26, 35, 126, 0.08);
    border-color: rgba(26, 35, 126, 0.08);
  }

  15% {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.15);
    border-color: var(--primary);
  }
}

.feature-card:nth-child(1) {
  animation: sequentialHover 3s ease-in-out infinite;
  animation-delay: 0s;
}

.feature-card:nth-child(2) {
  animation: sequentialHover 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.feature-card:nth-child(3) {
  animation: sequentialHover 3s ease-in-out infinite;
  animation-delay: 1s;
}

.feature-card:nth-child(4) {
  animation: sequentialHover 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.feature-card:nth-child(5) {
  animation: sequentialHover 3s ease-in-out infinite;
  animation-delay: 2s;
}

.feature-card:nth-child(6) {
  animation: sequentialHover 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

.feature-card .feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0;
}

.feature-card .icon {
  display: none;
}

.feature-card h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  color: var(--primary);
  line-height: 1.3;
}

.features-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.features-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-image::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 25%, var(--primary-dark) 50%, var(--secondary) 75%, var(--primary) 100%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
  animation: rotateBackground 12s linear infinite, pulseBackground 4s ease-in-out infinite;
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes pulseBackground {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.features-image::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: linear-gradient(-45deg, var(--secondary) 0%, var(--primary) 30%, var(--primary-dark) 60%, var(--secondary) 100%);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.2;
  animation: rotateBackgroundReverse 15s linear infinite, floatBackground 6s ease-in-out infinite;
}

@keyframes rotateBackgroundReverse {
  0% {
    transform: rotate(360deg) scale(0.8);
  }

  100% {
    transform: rotate(0deg) scale(0.8);
  }
}

@keyframes floatBackground {

  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0px) scale(0.8);
  }

  33% {
    opacity: 0.4;
    transform: translateY(-10px) scale(0.9);
  }

  66% {
    opacity: 0.3;
    transform: translateY(10px) scale(0.7);
  }
}

.features-image img {
  max-width: 550px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  animation: floatPhone 5s ease-in-out infinite;
}

@keyframes floatPhone {

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

  25% {
    transform: translateY(-8px) rotate(1deg);
  }

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

  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

.features-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.features-btn {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2.5rem;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(26, 35, 126, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.25);
}

.features-more-text {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  opacity: 0.8;
}

.features-header {
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.3s forwards;
}

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

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

.pricing-section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 20%, #e3e7fa 50%, #f8faff 80%, #ffffff 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
  position: relative;
}

.pricing-main {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem 0;
}

.pricing-subtitle {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.highlight-text {
  color: var(--primary);
  font-weight: 600;
  background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(26, 35, 126, 0.15);
  display: inline-block;
  position: relative;
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 35, 126, 0.1);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.05);
  }
}

.pricing-plan {
  max-width: 600px;
  margin: 3rem auto 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid var(--primary);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.12);
  position: relative;
  overflow: hidden;
  animation: priceCardFloat 4s ease-in-out infinite;
}

@keyframes priceCardFloat {

  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 0 12px 40px rgba(26, 35, 126, 0.12);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.18);
  }
}

.pricing-plan::before {
  content: '✨ EN AVANTAJLI TEKLİF';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
  letter-spacing: 0.5px;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-name {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}

.plan-description {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.plan-price {
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.price-amount {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  animation: priceGlow 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(26, 35, 126, 0.3);
}

@keyframes priceGlow {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(26, 35, 126, 0.3);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 30px rgba(26, 35, 126, 0.5), 0 0 40px rgba(26, 35, 126, 0.3);
    transform: scale(1.02);
  }
}

.price-currency {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  line-height: 1;
}

.plan-billing {
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #888;
  margin: 0 0 2rem 0;
}

.plan-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  background: rgba(26, 35, 126, 0.04);
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(26, 35, 126, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(26, 35, 126, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.1);
}

.feature-item h4 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}

.feature-item p {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.plan-cta-button {
  width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 1.2rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.plan-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.35);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a0f2e 100%);
}

.plan-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.plan-demo-btn {
  width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.plan-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.stats-section {
  padding: 3rem 1rem;
  background: white;
  min-height: 400px;
}

.stats-main {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-header {
  margin-bottom: 2rem;
}

.stats-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem 0;
}

.stats-subtitle {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: center;
}

.stats-dashboard {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8ecf0;
  max-width: 700px;
  width: 100%;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e7ff;
}

.dashboard-header h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.dashboard-date {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

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

.stats-grid {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0;
  justify-content: space-between;
}

.stat-card {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(26, 35, 126, 0.1);
  flex: 1;
}

.stat-card h4 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  margin: 0 0 0.3rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-number {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stats-chart {
  flex: 1;
  margin-top: 0;
}

.line-chart {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}

.chart-svg {
  width: 100%;
  height: 120px;
  border-radius: 8px;
}

.chart-svg circle {
  transition: r 0.3s ease;
  cursor: pointer;
}

.chart-svg circle:hover {
  r: 6;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0 20px;
}

.chart-labels span {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.stats-content {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  background: #f8f9ff;
  border-radius: 12px;
}

.stats-content h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.stats-content p {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
  color: white;
  padding: 2.5rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 300px;
}

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

.footer-col h4 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: white;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #667eea);
  border-radius: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-col a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-col a:hover {
  color: white;
  padding-left: 15px;
}

.footer-col a:hover::before {
  width: 10px;
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.footer-legal a:hover::after {
  width: 100%;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
}

.copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-argon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.argon-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.argon-logo-img {
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.argon-logo:hover .argon-logo-img {
  opacity: 1;
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.security-badge svg {
  color: #4ade80;
}

@media (min-width: 1200px) {
  .hero {
    padding: 4rem 2rem 3rem 2rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-title-highlight {
    font-size: 3.8rem;
  }
}

@media (max-width: 1199px) {
  .navbar-inner {
    padding: 1rem 1.5rem;
  }

  .hero {
    gap: 2rem;
    padding: 3rem 1.5rem 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-title-highlight {
    font-size: 3.2rem;
  }

  .features-container {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .navbar-center {
    gap: 0.4rem;
    padding: 0.4rem;
  }

  .nav-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }

  .navbar .nav-btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
  }

  .hero {
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-title-main {
    font-size: 2.4rem;
  }

  .hero-title-highlight {
    font-size: 3rem;
  }

  .hero-title-action {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  .pricing-plan {
    max-width: 600px;
  }
}

@media (max-width: 900px) {
  .navbar-inner {
    padding: 0.8rem 1rem;
  }

  .navbar-center {
    display: none;
  }

  .navbar-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-img {
    height: 40px;
  }

  .hero {
    flex-direction: column;
    padding: 2rem 1rem;
    overflow: hidden;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  .hero-content .hero-title {
    order: 1;
  }

  .hero-content .hero-desc {
    order: 2;
  }

  .hero-image {
    order: 2;
    display: flex;
    width: 100%;
    max-width: 350px;
    margin: 0.5rem 0;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    overflow: hidden;
    min-height: 200px;
  }

  .hero-buttons {
    order: 3;
    position: static;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
    z-index: 10;
  }

  .hero-content .slider-stars {
    order: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title-main {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-title-highlight {
    font-size: 2.8rem;
    text-align: center;
  }

  .hero-title-action {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .hero-buttons {
    order: 4;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .slider-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero-buttons .nav-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    min-width: auto;
  }

  .features {
    padding: 3rem 1rem;
    overflow-x: hidden;
  }

  .features-main-title {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
  }

  .features-container {
    flex-direction: column;
    gap: 2rem;
    overflow-x: hidden;
    align-items: center;
    text-align: center;
  }

  .features-image {
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .features-image::before {
    width: 320px;
    height: 320px;
    opacity: 0.2;
  }

  .features-image::after {
    width: 250px;
    height: 250px;
    opacity: 0.15;
  }

  .features-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .features-content {
    align-items: center;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }

  .feature-card {
    max-width: 100%;
    padding: 1.2rem 1rem;
    text-align: center;
  }

  .features-more-text {
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: center;
  }

  .pricing-section {
    padding: 3rem 1rem;
  }

  .pricing-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .pricing-plan {
    margin: 2rem auto 0 auto;
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

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

  .price-amount {
    font-size: 3rem;
  }

  .price-currency {
    font-size: 1.5rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .plan-buttons {
    gap: 1rem;
    flex-direction: column;
  }

  .plan-cta-button,
  .plan-demo-btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .plan-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .pricing-section .feature-item {
    padding: 1.2rem 1rem;
    transform: scale(1);
  }

  .pricing-section .feature-item h4 {
    font-size: 1rem;
  }

  .pricing-section .feature-item p {
    font-size: 0.9rem;
  }

  .stats-section {
    padding: 2rem 1rem;
  }

  .stats-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

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

  .stats-container {
    padding: 0;
  }

  .stats-dashboard {
    padding: 1.5rem;
    max-width: 100%;
  }

  .stats-main-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
  }

  .stat-card {
    padding: 0.8rem;
    flex: none !important;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stats-chart {
    margin-top: 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 600px) {
  .qr-decoration {
    display: none;
  }

  .navbar-inner {
    padding: 1rem;
  }

  .navbar-center {
    display: none;
  }

  .navbar-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-link {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }

  .logo-img {
    height: 35px;
  }

  .hero {
    padding: 2rem 1rem;
    gap: 0.8rem;
    overflow: visible;
  }

  .hero-content {
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    order: 1;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title-main {
    font-size: 1.9rem;
    text-align: center;
  }

  .hero-title-highlight {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero-title-action {
    font-size: 2rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .hero-image {
    min-width: 200px;
    min-height: 160px;
    padding: 20px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    order: 2;
    overflow: visible;
  }

  .hero-buttons {
    order: 3;
  }

  .slider-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero-buttons {
    gap: 0.8rem;
    max-width: 280px;
  }

  .hero-buttons .nav-btn {
    font-size: 1rem;
    padding: 0.9rem 2rem;
    letter-spacing: 0.5px;
  }

  .features {
    padding: 2.5rem 1rem;
  }

  .features-main-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .features-container {
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .features-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .features-image::before {
    width: 240px;
    height: 240px;
    opacity: 0.15;
  }

  .features-image::after {
    width: 180px;
    height: 180px;
    opacity: 0.12;
  }

  .features-image img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }

  .features-grid {
    gap: 0.8rem;
  }

  .feature-card {
    padding: 1rem 0.8rem;
    min-height: 100px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .features-more-text {
    font-size: 0.9rem;
    margin-top: 1.2rem;
  }

  .pricing-section {
    padding: 2.5rem 1rem;
  }

  .pricing-title {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .pricing-plan {
    padding: 1.5rem 1rem;
  }

  .plan-name {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 3.2rem;
  }

  .price-currency {
    font-size: 1.8rem;
  }

  .plan-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 2rem;
  }

  .feature-item h4 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .pricing-section .feature-item {
    padding: 1rem 0.8rem;
    transform: scale(1);
  }

  .pricing-section .feature-item h4 {
    font-size: 0.95rem;
  }

  .pricing-section .feature-item p {
    font-size: 0.85rem;
  }


  .plan-cta-button,
  .plan-demo-btn {
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }

  .stats-section {
    padding: 2rem 0.8rem;
  }

  .stats-title {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .stats-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .stats-dashboard {
    padding: 1rem;
    border-radius: 15px;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
  }

  .stat-card {
    padding: 0.8rem;
    min-width: 100%;
    text-align: center;
    flex: none !important;
  }

  .stat-card h4 {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stats-content h3 {
    font-size: 1.2rem;
  }

  .stats-content p {
    font-size: 0.95rem;
  }

  .faq-section {
    padding: 2rem 0.8rem;
  }

  .faq-title {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 0.8rem 1rem;
  }

  .faq-question h3 {
    font-size: 0.9rem;
  }

  .faq-answer.open {
    padding: 0.8rem 1rem 0.8rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .faq-toggle {
    font-size: 1.4rem;
  }

  .contact-section {
    padding: 2rem 0.8rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-subtitle {
    font-size: 0.85rem;
  }

  .contact-container {
    max-width: 300px;
  }

  .contact-card {
    padding: 1rem 0;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    margin-right: 0.8rem;
  }

  .contact-card h3 {
    font-size: 0.9rem;
  }

  .contact-link {
    font-size: 0.8rem;
  }

  .social-link {
    width: 28px;
    height: 28px;
    border-radius: 4px;
  }

  .footer {
    padding: 2.5rem 1rem 0 1rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

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

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

  .footer-logo-img {
    height: 35px;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-col a {
    font-size: 0.9rem;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-argon {
    order: 0;
  }

  .copyright-text {
    order: 1;
    font-size: 0.85rem;
  }

  @media (max-width: 480px) {
    .navbar-inner {
      padding: 0.8rem;
    }

    .logo-img {
      height: 32px;
    }

    .hero {
      padding: 1.5rem 0.5rem;
      gap: 0.5rem;
      align-items: center;
      text-align: center;
      overflow: visible;
    }

    .hero-content {
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      order: 1;
    }

    .hero-content h1 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-title-main {
      font-size: 1.6rem;
      text-align: center;
    }

    .hero-title-highlight {
      font-size: 2rem;
      text-align: center;
    }

    .hero-title-action {
      font-size: 1.7rem;
      text-align: center;
    }

    .hero-content p {
      font-size: 0.8rem;
      line-height: 1.4;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    .hero-image {
      margin-bottom: 0.5rem;
      order: 2;
      padding: 20px 0;
      overflow: visible;
      min-height: 160px;
    }

    .hero-buttons {
      order: 3;
    }

    .slider-img {
      max-width: 180px;
      display: block;
      margin: 0 auto;
    }

    .hero-buttons {
      gap: 0.6rem;
      max-width: 250px;
    }

    .hero-buttons .nav-btn {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
    }

    .features-main-title {
      font-size: 1.5rem;
    }

    .pricing-title {
      font-size: 1.5rem;
    }

    .stats-title {
      font-size: 1.4rem;
    }

    .faq-title {
      font-size: 1.3rem;
    }

    .contact-title {
      font-size: 1.4rem;
    }

    .pricing-section .plan-cta-button,
    .pricing-section .plan-demo-btn {
      font-size: 0.8rem !important;
      padding: 0.6rem 0.8rem !important;
      border-radius: 0.7rem !important;
    }

    .pricing-section .feature-item {
      padding: 0.8rem 0.6rem;
      transform: scale(1);
    }

    .pricing-section .feature-item h4 {
      font-size: 0.85rem;
    }

    .pricing-section .feature-item p {
      font-size: 0.75rem;
    }

    .plan-features {
      gap: 0.5rem;
    }


    .price-amount {
      font-size: 2.8rem;
    }
  }

  @media (hover: none) and (pointer: coarse) {

    .nav-btn,
    .feature-card,
    .plan-cta-button,
    .contact-link {
      min-height: 44px;
    }

    .mobile-nav-link {
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-question {
      min-height: 60px;
      display: flex;
      align-items: center;
    }
  }

  @media (max-width: 900px) and (orientation: landscape) {
    .hero {
      flex-direction: row;
      align-items: center;
      padding: 2rem 1rem;
      min-height: 60vh;
      text-align: left;
      overflow: visible;
    }

    .hero-content {
      max-width: 50%;
      text-align: left;
      align-items: flex-start;
    }

    .hero-content h1 {
      font-size: 2rem;
      text-align: left;
      align-items: flex-start;
    }

    .hero-title-main,
    .hero-title-highlight,
    .hero-title-action {
      text-align: left;
    }

    .hero-content p {
      font-size: 1rem;
      text-align: left;
    }

    .hero-image {
      max-width: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px 0;
      overflow: visible;
      min-height: 200px;
    }

    .slider-img {
      max-width: 300px;
      margin: 0 auto;
      display: block;
    }

    .hero-buttons {
      flex-direction: row;
      max-width: 100%;
      justify-content: flex-start;
    }
  }

  .line-chart {
    padding: 0.8rem;
  }

  .chart-svg {
    height: 100px;
  }

  .chart-labels {
    padding: 0 10px;
    margin-top: 0.8rem;
  }

  .chart-labels span {
    font-size: 0.7rem;
  }

  .stats-content {
    text-align: center;
    margin-top: 1rem;
  }
}

.faq-section {
  padding: 3rem 2rem;
  background: #f8f9fa;
}

.faq-main {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 12px 12px 0 0;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  border-radius: 0 0 12px 12px;
}

.faq-answer.open {
  max-height: 200px;
  opacity: 1;
  padding: 1.2rem 1.5rem 1.2rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2.5rem 1rem;
  }

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

  .faq-question {
    padding: 0.9rem 1.1rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer.open {
    padding: 0.9rem 1.1rem 0.9rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .faq-answer {
    padding: 0;
  }

  .faq-answer.open {
    padding: 1rem 1.2rem 1rem;
  }

  .faq-toggle {
    font-size: 1.5rem;
  }
}

.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
  color: white;
}

.contact-main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-header {
  margin-bottom: 3rem;
  text-align: center;
}

.contact-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-card h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: 'Poppins', Arial, sans-serif;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.instagram-social {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-social:hover {
  transform: translateY(-3px) scale(1.05);
}

.facebook-social {
  background: #1877f2;
}

.facebook-social:hover {
  background: #166fe5;
  transform: translateY(-3px) scale(1.05);
}

.linkedin-social {
  background: #0077b5;
}

.linkedin-social:hover {
  background: #005885;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 119, 181, 0.4);
}

@media (min-width: 769px) {
  .mobile-text {
    display: none;
  }

  .desktop-text {
    display: inline;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.05);
}

@media (min-width: 769px) {
  .contact-section {
    text-align: center;
  }

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

@media (max-width: 768px) {
  .contact-section {
    padding: 2.5rem 1rem;
    background: #f8f9fa;
    color: #2d3748;
    position: relative;
  }

  .contact-main {
    max-width: 100%;
    margin: 0;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', Arial, sans-serif;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 400;
    margin: 0;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 350px;
    margin: 0 auto;
  }

  .contact-card {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: left;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    border-left: 3px solid transparent;
  }

  .contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .whatsapp-card {
    border-left-color: #25d366;
  }

  .email-card {
    border-left-color: #ed8936;
  }

  .social-card {
    border-left-color: #667eea;
    order: 3;
  }

  .contact-icon {
    display: none;
  }

  .whatsapp-icon {
    background: #25d366;
  }

  .email-icon {
    background: #ed8936;
  }

  .social-icon {
    background: #667eea;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

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

  .contact-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0px;
    font-family: 'Poppins', Arial, sans-serif;
    margin-top: 0px;
  }

  .contact-card p {
    font-size: 0.82rem;
    color: #718096;
    margin-bottom: 15px;
    line-height: 1.4;
    display: block;
  }

  .mobile-priority {
    color: #25d366 !important;
    font-weight: 500;
  }

  .contact-link {
    display: inline-block;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Poppins', Arial, sans-serif;
    transition: all 0.3s ease;
  }

  .whatsapp-link {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
    width: 100%;
    text-align: center;
  }

  .whatsapp-link:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
  }

  .email-link {
    background: #ed8936;
  }

  .email-link:hover {
    background: #dd7109;
  }

  .social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .instagram-social {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
    color: white;
  }

  .instagram-social:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
    box-shadow: none;
  }

  .facebook-social {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
    color: white;
  }

  .facebook-social:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
    box-shadow: none;
  }

  .linkedin-social {
    background: #0077b5;
    color: white;
  }

  .linkedin-social:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.4);
  }

  .mobile-text {
    display: inline;
  }

  .desktop-text {
    display: none;
  }
}

@media (min-width: 901px) {
  .hero-buttons {
    position: absolute !important;
    bottom: 10rem !important;
    left: 0 !important;
  }

  .hero-content {
    position: relative;
    padding-bottom: 6rem;
  }
}

@media (max-width: 900px) {

  .pricing-plan .plan-cta-button,
  .pricing-plan .plan-demo-btn,
  .plan-buttons .plan-cta-button,
  .plan-buttons .plan-demo-btn {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 1rem !important;
    min-width: auto !important;
  }
}

@media (max-width: 600px) {

  .pricing-plan .plan-cta-button,
  .pricing-plan .plan-demo-btn,
  .plan-buttons .plan-cta-button,
  .plan-buttons .plan-demo-btn {
    font-size: 0.85rem !important;
    padding: 0.7rem 1rem !important;
    border-radius: 0.8rem !important;
    min-width: auto !important;
  }
}

@media (max-width: 400px) {
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem;
  }

  .stat-card {
    padding: 0.7rem !important;
    flex: none !important;
  }

  .stat-card h4 {
    font-size: 0.8rem !important;
  }

  .stat-number {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {

  .pricing-section .plan-cta-button,
  .pricing-section .plan-demo-btn {
    font-size: 0.8rem !important;
    padding: 0.6rem 0.8rem !important;
    border-radius: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer-description {
    text-align: center;
    max-width: none;
  }

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