:root {
  --primary-color: #2563eb;
  --primary-light: #60a5fa;
  --primary-dark: #1d4ed8;
  --secondary-color: #7c3aed;
  --secondary-light: #a78bfa;
  --secondary-dark: #6d28d9;
  --accent-color: #f59e0b;
  --text-color: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --text-white: #f8fafc;
  --background-white: #ffffff;
  --background-light: #f1f5f9;
  --background-dark: #0f172a;
  --background-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1%;
  transition: padding var(--transition-fast);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 1111111;
}

.logo img {
  width: 2.5rem;
  height: 2.5rem;
  transition: all var(--transition-fast);
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: all var(--transition-fast);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-fast);
  padding: 0.3125rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.login-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-md);
  color: var(--primary-color);
  font-weight: 600;
  border: 0.125rem solid var(--primary-color);
  background: #41cbd9;
  transition: all var(--transition-fast);
}

.login-btn:hover {
  background: rgba(37, 99, 235, 0.1);
}

.register-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-md);
  color: white;
  font-weight: 600;
  background: var(--primary-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.register-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

.hero-section {
  padding: 10rem 5% 6.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 37.5rem;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-xl);
}

.demo-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-color);
  border: 0.125rem solid var(--text-lighter);
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: all var(--transition-fast);
}

.demo-button:hover {
  border-color: var(--text-color);
  background: rgba(0, 0, 0, 0.05);
}

.demo-button i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-stats .stat-text {
  font-size: 1rem;
  color: var(--text-light);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-text {
  font-size: 1rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
  max-width: 37.5rem;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-medium);
}

.floating-card {
  position: absolute;
  padding: 0.9375rem 1.25rem;
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s infinite alternate ease-in-out;
}

.floating-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.card-1 {
  top: 20%;
  left: -2.5rem;
  animation-delay: 0.5s;
}

.card-2 {
  bottom: 15%;
  right: -1.875rem;
  animation-delay: 1.5s;
}

.solutions-section {
  padding: 6.25rem 5%;
  background: var(--background-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.section-header.light {
  color: var(--text-white);
}

.section-tag {
  display: inline-block;
  padding: 0.3125rem 0.9375rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.9375rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.9375rem;
  color: var(--text-color);
}

.section-header.light h2 {
  color: var(--text-white);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 43.75rem;
  margin: 0 auto;
}

.section-header.light p {
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.875rem, 1fr));
  gap: 1.875rem;
  max-width: 75rem;
  margin: 0 auto;
}

.feature-card {
  background: var(--background-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background: var(--background-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5625rem;
}

.feature-icon i {
  font-size: 1.875rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.9375rem;
  color: var(--text-color);
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-light);
}

.process-section {
  padding: 6.25rem 5%;
  background: var(--background-gradient);
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 3.125rem;
  flex-wrap: wrap;
}

.process-content {
  flex: 1;
  min-width: 18.75rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1.5625rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(0.3125rem);
}

.step-number {
  min-width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: var(--text-white);
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3125rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.process-image {
  flex: 1;
  min-width: 18.75rem;
}

.process-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.pricing-section {
  padding: 6.25rem 5%;
  background: var(--background-white);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-bottom: 2.5rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.125rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-lighter);
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.625rem;
  width: 1.625rem;
  left: 0.25rem;
  bottom: 0.25rem;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(1.625rem);
}

.slider.round {
  border-radius: 2.125rem;
}

.slider.round:before {
  border-radius: 50%;
}

.discount {
  background: var(--accent-color);
  color: white;
  padding: 0.1875rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.875rem;
  max-width: 75rem;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  min-width: 18.75rem;
  max-width: 21.875rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
  border: 1px solid var(--background-light);
}

.pricing-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  border: 0.125rem solid var(--primary-color);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-0.625rem);
}

.popular-tag {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  background: var(--primary-color);
  color: white;
  padding: 0.3125rem 0.9375rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  padding: 2.5rem 1.875rem;
  text-align: center;
  border-bottom: 1px solid var(--background-light);
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.9375rem;
  color: var(--text-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 0.9375rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-right: 0.3125rem;
}

.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.3125rem;
}

.pricing-header p {
  font-size: 1rem;
  color: var(--text-light);
}

.pricing-features {
  padding: 1.875rem;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.9375rem;
  font-size: 1rem;
  color: var(--text-color);
}

.pricing-features ul li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.pricing-button {
  display: block;
  width: calc(100% - 3.75rem);
  margin: 0 auto 1.875rem;
  padding: 0.9375rem 0;
  border-radius: var(--border-radius-md);
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  border: 0.125rem solid var(--primary-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pricing-button:hover {
  background: rgba(37, 99, 235, 0.1);
}

.pricing-button.featured {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.pricing-button.featured:hover {
  background: var(--primary-dark);
  box-shadow: var (--shadow-lg);
}

.testimonials-section {
  padding: 6.25rem 5%;
  background: var(--background-light);
}

.testimonial-slider {
  max-width: 50rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.875rem;
  position: relative;
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -1.25rem;
  left: 3.125rem;
  width: 0;
  height: 0;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  border-top: 1.25rem solid white;
}

.testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-left: 1.875rem;
}

.testimonial-author img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.testimonial-author h4 {
  font-size: 1.125rem;
  margin-bottom: 0.3125rem;
  color: var(--text-color);
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.625rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--text-lighter);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.apps-section {
  padding: 6.25rem 5%;
  background: var(--background-light);
}

.apps-container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 75rem;
  margin: 0 auto;
}

.app-card {
  flex: 1;
  min-width: 18.75rem;
  max-width: 25rem;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-medium);
}

.app-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.app-icon {
  width: 5rem;
  height: 5rem;
  background: var(--background-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.875rem;
}

.app-icon i {
  font-size: 2.5rem;
  color: white;
}

.app-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-color);
}

.app-features {
  text-align: left;
  margin-bottom: 1.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.5s ease-in-out;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.cookie-content p {
  font-size: 1rem;
  margin: 0;
  color: white;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: bold;
}

.cookie-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-btn:hover {
  background: var(--secondary-color);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.app-features li {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.9375rem;
  color: var(--text-color);
}

.app-features li i {
  color: var(--primary-color);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2%;
  padding: 0.9375rem 1.875rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.download-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-md);
}

.download-btn i {
  font-size: 1.25rem;
}

.contact-section {
  padding: 6.25rem 5%;
  background: var(--background-white);
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.125rem;
  max-width: 75rem;
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  min-width: 18.75rem;
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 0.625rem;
  color: var(--text-color);
}

.contact-form p {
  margin-bottom: 1.875rem;
  color: var(--text-light);
}

.form-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  border: 1px solid var(--background-light);
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  color: var(--text-color);
  background: var(--background-light);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  outline: none;
  background: white;
}

.form-group textarea {
  min-height: 9.375rem;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 0.9375rem;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.submit-button:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.125rem);
}

.contact-info {
  flex: 1;
  min-width: 18.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.875rem;
}

.social-media a{
 font-size: 22px;
}

.social-media img{
  width: 24px;
  height: 22px;
  position: absolute;
  margin-top: 0.5%;
  margin-left: 0.5%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow-md);
}

footer {
  background: var(--background-dark);
  color: var(--text-white);
  padding: 3rem 1% 0.25rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.125rem;
  margin-bottom: 3.125rem;
}

.footer-brand {
  flex: 2;
  text-align: center;
  font-size: 16px;
  min-width: 18.75rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: 25%;
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  width: 2.1875rem;
  height: 2.1875rem;
}

.footer-brand .logo span {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  flex: 2;
  display: ruby;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.footer-column {
  min-width: 9.375rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: white;
  position: relative;
  padding-bottom: 0.625rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 0.125rem;
  background: var(--primary-color);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 0.125rem;
  background: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 0.625rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(0.3125rem);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(3.125rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-0.9375rem);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.device-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 20px auto;
}

.mobile-frame {
  width: 200px;
  height: 400px;
  background: #000;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mobile-camera {
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-screen {
  width: 90%;
  height: 85%;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  overflow: hidden;
}

.mobile-screen iframe {
  height: 838px;
  width: 457px;
  transform: scale(0.41);
  transform-origin: top left;
  border: none;
}

.mobile-buttons {
  width: 5px;
  height: 50px;
  background: #333;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

.tablet-frame {
  width: 300px;
  height: 500px;
  background: #000;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.tablet-camera {
  width: 15px;
  height: 15px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.tablet-screen {
  width: 90%;
  height: 85%;
  background: #fff;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  overflow: hidden;
}

.tablet-screen iframe {
  width: 613px;
  height: 953px;
  transform: scale(0.45);
  transform-origin: top left;
  border: none;
}

.desktop-frame {
  width: 600px;
  height: 400px;
  background: #000;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.desktop-screen {
  width: 95%;
  height: 90%;
  background: #fff;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  overflow: hidden;
}

.desktop-screen iframe {
  width: 1153px;
  height: 730px;
  transform: scale(0.5);
  transform-origin: top left;
  border: none;
}

.device-card {
  text-align: center;
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}




.advantage-card:first-child {
  display: block; /* Show the first card */
}
@media (max-width: 48rem) {
  .close-btn {
    top: 3rem !important;
    right: 2rem !important;
     font-size: 1.6rem !important;
  }
  .hero-stats .stat-text {
    font-size: 18px !important;
  }
  .section-tag {
    font-size: 21px !important;
  }
  .hero-cta {
    gap: 1.25rem !important;
  }
  .nav-links a {
    font-size: 16px !important;
  }
  .cookie-content p {
    font-size: 14px !important;
  }
  .section-header p {
    font-size: 19px !important;
  }
  .features-grid {
    display: grid !important;
  }
  .feature-card p {
    font-size: 18px !important;
  }
  .pricing-header p {
    font-size: 18px !important;
  }
  .pricing-features ul li {
    font-size: 16px !important;
  }
  .app-features li {
    font-size: 17px !important;
  }
  .download-btn {
    font-size: 15px !important;
  }
  .device-card {
    font-size: 17px !important;
  }
  .footer-brand {
    font-size: 16px !important;
  }
  .footer-column {
    font-size: 17px !important;
  }
  .footer-bottom p {
    font-size: 14px;
  }
  .desktop-frame {
    height: 280px !important;
  }
  .tablet-screen iframe {
    width: 800px !important;
    height: 1253px !important;
    transform: scale(0.34) !important;
  }
  .desktop-screen iframe {
    width: 1314px !important;
    height: 844px !important;
    transform: scale(0.3) !important;
  }
  .mobile-screen iframe {
    height: 838px !important;
    width: 443px !important;
    transform: scale(0.41) !important;
  }
  footer {
    padding: 1rem 1% 0.25rem !important;
  }
  .footer-brand .logo {
    margin-left: 17% !important;
  }
  .footer-links {
    margin-left: 7% !important;
    flex: 2 !important;
  }
  .hero-section {
    flex-direction: column !important;
    text-align: center !important;
    padding: 6rem 5% 4rem !important;
  }
  .hero-content {
    margin-bottom: 2rem !important;
  }
  .hero-content h1 {
    font-size: 2.4rem !important;
    line-height: 1.3 !important;
  }
  .hero-content p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  .hero-cta {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  .hero-image {
    margin: 0 auto !important;
    max-width: 90% !important;
  }
  .hero-stats {
    flex-direction: column !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }
  .hero-content h1 {
    font-size: 2.4rem !important;
  }
  .login-btn,
  .register-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 0.75rem !important;
  }
  .login-btn {
    border: none !important;
  }
  .register-btn {
    margin-top: 0.5rem !important;
  }
  .hero-content p {
    font-size: 1.125rem !important;
  }
  .section-header h2 {
    font-size: 2rem !important;
  }
  .feature-card,
  .pricing-card {
    min-width: 100% !important;
  }
  .contact-form,
  .contact-info {
    min-width: 100% !important;
  }
  .form-row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .nav-links {
    position: fixed !important;
    top: 5rem !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background: white !important;
    padding: 1.25rem !important;
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-150%) !important;
    transition: transform var(--transition-medium) !important;
    z-index: 999 !important;
  }
  .nav-links.active {
    transform: translateY(0) !important;
  }
  .auth-buttons {
    display: none !important;
  }
  .nav-links .auth-buttons {
    display: flex !important;
    gap: 9rem !important;
    margin-top: 0rem !important;
    padding-top: 0rem !important;
    border-top: 1px solid var(--background-light) !important;
  }
  .menu-toggle {
    display: block !important;
    font-size: 27px !important;
  }
}
@media (max-width: 64rem) {
  .close-btn {
    top: 5rem;
    right: 7rem;
    font-size: 2.5rem;
  }
  .hero-cta {
    gap: 13.25rem;
  }
  .features-grid {
    display: flow-root;
  }
  .hero-content p {
    font-size: 30px;
  }
  .nav-links {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-medium);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 22px;
  }
  .auth-buttons {
    display: none;
    gap: 31rem;
    text-align: center;
  }
  .hero-stats .stat-text {
    font-size: 21px;
  }
  .section-header p {
    font-size: 24px;
  }
  .feature-card p {
    font-size: 20px;
  }
  .pricing-header p {
    font-size: 21px;
  }
  .tablet-screen iframe {
    width: 800px;
    height: 1253px;
    transform: scale(0.34);
  }
  .pricing-features ul li {
    font-size: 21px;
  }
  .app-features li {
    font-size: 22px;
  }
  .download-btn {
    font-size: 18px;
  }
  .device-card {
    font-size: 20px;
  }
  .footer-bottom p {
    font-size: 20px;
  }
  .footer-brand {
    font-size: 20px;
  }
  .footer-brand .logo {
    margin-left: 18%;
  }
  .footer-column {
    font-size: 20px;
  }
  .footer-links {
    flex: 3;
  }
  .mobile-screen iframe {
    height: 838px;
    width: 443px;
    transform: scale(0.41);
  }
  .nav-links .auth-buttons {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 2.5rem;
  }
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 8.75rem 5% 4.375rem;
    font-size: 20px;
  }
  .cookie-content p {
    font-size: 26px;
  }
  .hero-content {
    margin-bottom: 3.125rem;
  }
  .demo-button {
    font-size: 18px;
  }
  .cta-button {
    font-size: 18px;
  }
  .section-tag {
    font-size: 27px;
  }
  .hero-image {
    margin: 0 auto;
  }
  .process-section {
    flex-direction: column;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-0.625rem);
  }
  .desktop-screen iframe {
    width: 1153px;
    height: 730px;
    transform: scale(0.5);
  }
}
.why-choose-us-section {
  padding: 0.25rem 5%;
  background: var(--background-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.875rem, 1fr));
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}

.advantage-card {
  background: var(--background-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-medium);
}

.advantage-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.advantage-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--background-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.advantage-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.5s ease-in-out;
}

.modal-content {
  background: var(--background-white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: slideDown 0.5s ease-in-out;
}

.modal-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.modal-content p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-content ol {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--text-color);
}

.modal-content ol li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.modal-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-btn:hover {
  color: var(--primary-color);
}

.modal-content pre {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  overflow-x: auto;
  color: var(--text-color);
}

@keyframes slideDown {
  from {
    transform: translateY(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


