/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     
}
.scroll-top {
  
  position: fixed; 
  bottom: 20px; 
  right: 30px;
  z-index: 99; 
  border: none; 
  outline: none;
  color: #000;
  cursor: pointer; 
  padding: 15px; 
  border-radius: 10px; 
  font-size: 16px; 
   box-shadow: 0px  3px 3px #ccc ;
   background:#dbeafe;
   
    height:60px;
    display:flex;
    


}
.scroll-top img{
flex:1;
margin-left: 5px;
padding: 0 2px;
width:40px;
height:40px;
}

html {
    scroll-behavior: smooth;
   
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    width: 100%;
}

/* .hero2 {
    width:90%;
     background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
     margin-bottom: 20px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 20px;
    margin:auto;
} */


/* customer review */
.review-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.review-title {
  font-size: 2.5rem;
  
  margin-bottom: 30px;
  color: #4a6ef5;
}

.review-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.review-author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}
.review-author h3 {
  color: #111827;
  margin-bottom: 1rem;

}

.review-author span {
  font-size: 0.85rem;
  color: #666;
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 2;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: #fdd835; /* yellow highlight */
  color: #111;
}

.nav-btn.left {
  left: 5px;
}

.nav-btn.right {
  right: 5px;
}

/* ✅ Responsive */
@media (max-width: 1024px) {
  .review-card { flex: 0 0 250px; }
}

@media (max-width: 768px) {
  .review-card { flex: 0 0 220px; }
  .review-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .review-card { flex: 0 0 85%; }
  .review-title { font-size: 1.25rem; }
  .nav-btn { font-size: 1.2rem; padding: 8px 12px; }
}



.t-Body-contentInner{
  max-width: 100%!important;
}

.container-html {
    margin: 0 auto;
   padding: 40px;  
}


/*license section*/
/* Section */
.license-section {
  /* padding: 50px 20px; */
  padding: 80px 0;
  text-align: center;

}

.license-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #4a6ef5;
}
.license-section p{
   font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;

}

/* Responsive grid */
.license-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: center;
 
  max-width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}

/* License card */
.license-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.license-card:hover {
  transform: translateY(-5px);
}

/* Images stay uniform */
.license-card img {
  width: 100%;
  max-width: 200px;
  height: 120px;
  object-fit: contain; /* keeps aspect ratio */
  margin-bottom: 15px;
}

.license-card p {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}


.faq-section {
   max-width: 1000px; 

  margin: 40px auto;
  padding: 0 15px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color:#4a6ef5;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f6f9fb;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg); /* plus sign becomes × */
}

.switch-toggle {
  display: inline-flex;
  border: 2px solid #4a6ef5;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
}

.switch-option {
  flex: 1;
  text-align: center;
  padding: 8px 20px;
  text-decoration: none;
  color: #4a6ef5;
  transition: all 0.3s ease;
}

.switch-option.active {
  background: #4a6ef5;
  color: #fff;
}
.switch-option:hover {
  background: rgba(74, 110, 245, 0.1);
}

/* 🔹 Tablet */
@media (max-width: 768px) {
  .switch-toggle {
    font-size: 13px;
  }
  .switch-option {
    padding: 8px 18px;
  }
}

/* 🔹 Mobile */
@media (max-width: 480px) {
  .switch-toggle {
    font-size: 12px;
    border-radius: 20px;
  }
  .switch-option {
    padding: 6px 12px;
  }
}


/*Dropdown Base*/
.nav-menu li {
  position: relative;
}

.nav-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%; /* directly below parent */
  left: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 999;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu .dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #6b7280;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-menu .dropdown li a:hover {
  background: #3b82f6;
  color:#fff;
}

/* Hover effect (for desktop) */
.nav-menu li:hover > .dropdown {
  display: block;
}

/* For mobile (controlled by JS) */
.nav-menu .dropdown.open {
  display: block;
  position: relative;
  box-shadow: none;
}


/* Mega Dropdown Styles */
.has-mega {
  position: relative;
}

.has-mega .mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  
  min-width:500px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: none;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  z-index: 99999;
}

.has-mega:hover .mega-dropdown {
  display: grid;
}
.has-mega .mega-column  {
  width:200px;
  padding:10px;
}

.mega-column h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.mega-column a {
  display: block;
  padding: 6px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
  width:200px;
}

.mega-column a span{
     font-size: 18px;
  margin-right: 8px;
 
}

.mega-column a:hover {
   
      color:#4a6ef5;
      transition: 0.5s;

}



/* Base */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Mobile overrides */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 60px; /* adjust to header height */
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none; /* hidden by default */
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
  }

  /* Dropdown */
  .nav-menu .dropdown {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
  }

  .nav-menu .dropdown.open {
    display: flex;
  }

 .nav-menu .dropdown  a span{
     font-size: 18px;
  margin-right: 8px;
 
}

  /* Actions */
  .mobile-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border: 2px solid linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    margin: 0 auto;
}

.nav-brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
}

.nav-menu {
     flex:2;
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu .active{
    color: #3b82f6;
}

.nav-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}


.nav-menu a:hover{
    color: #3b82f6;
}



.nav-actions {
    flex:1;
    justify-content: end;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    width:100%;
   padding: 120px 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin-top: 20px;
    overflow: hidden;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 1000px;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: rotate(0deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.card-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.transaction {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease;
}

.transaction:hover {
    transform: translateX(4px);
}

.transaction.success {
    background: #f0fdf4;
}

.transaction.processing {
    background: #eff6ff;
}

.transaction.pending {
    background: #fefce8;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.transaction.success .transaction-icon {
    background: #dcfce7;
    color: #16a34a;
}

.transaction.processing .transaction-icon {
    background: #dbeafe;
    color: #2563eb;
}

.transaction.pending .transaction-icon {
    background: #fef3c7;
    color: #d97706;
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.transaction-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.transaction-amount {
    font-weight: 700;
    font-size: 1.125rem;
}

.transaction-amount.success { color: #16a34a; }
.transaction-amount.processing { color: #2563eb; }
.transaction-amount.pending { color: #d97706; }

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #4a6ef5;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    /*  1000px; */
    max-width: 80%;
    margin: 0 auto;
    /* max-width: 1350px;
    margin: auto; */
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.blue { background: #dbeafe; color: #2563eb; }
.feature-icon.green { background: #dcfce7; color: #16a34a; }
.feature-icon.purple { background: #f3e8ff; color: #7c3aed; }
.feature-icon.orange { background: #fed7aa; color: #ea580c; }
.feature-icon.red { background: #fee2e2; color: #dc2626; }
.feature-icon.teal { background: #ccfbf1; color: #0d9488; }

.feature-card h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1350px;
    margin: auto;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.solution-card.featured {
    border: 2px solid linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scale(1.05);
}

.solution-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.solution-header h3 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.solution-header p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* max-width: 1000px; */
    max-width: 80%;
    margin: 0 auto;
}

.pricing-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.pricing-card.featured {
    background: white;
    border: 2px solid linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-header p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d1d5db;
}

.contact-item svg {
    color: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .solution-card,
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card,
.solution-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}