:root {
  --primary-gradient: linear-gradient(135deg, #2926f0 0%, #2f22e3 100%);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-hover-shadow: 0 20px 40px rgba(41, 38, 240, 0.15);
}

/* SERVICES GRID SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.app-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(41, 38, 240, 0.1);
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-card:hover::before {
  opacity: 1;
}

.app-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(41, 38, 240, 0.05);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #2926f0;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.app-card:hover .icon-box {
  background: var(--primary-gradient);
  color: #fff;
}

.app-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #212529;
}

.app-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.credential-badge {
  background: #f8f9fa;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  border: 1px dashed #dee2e6;
}

.credential-badge strong {
  color: #2926f0;
}

.app-card .btn-demo {
  margin-top: 1.5rem;
  width: 100%;
  border: none;
  background: var(--primary-gradient);
  color: #fff;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.app-card .btn-demo:hover {
  filter: brightness(1.1);
  gap: 12px;
  color: #fff;
}

.app-image-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.app-image-container img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.app-card:hover .app-image-container img {
  transform: scale(1.05);
}

/* MOBILE MOCKUP SECTION */
.mobile-mockup-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 40px;
  border: 8px solid #333;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 25px;
  background: #333;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  overflow: hidden;
}

/* LOGIN UI INSIDE PHONE */
.app-login-ui {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  height: 100%;
  color: #333;
}

.app-login-ui .logo-circle {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 20px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(41, 38, 240, 0.2);
}

.app-login-ui h4 {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.app-login-ui .brand-subtitle {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 40px;
}

.app-login-ui .input-group {
  text-align: left;
  margin-bottom: 20px;
}

.app-login-ui label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
  display: block;
}

.app-login-ui .fake-input {
  background: #f5f6fa;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #1a1a1a;
  border: 1px solid #eee;
}

.app-login-ui .btn-login {
  background: var(--primary-gradient);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(41, 38, 240, 0.3);
  font-size: 0.95rem;
  margin-top: 10px;
}

/* PRICING STYLES */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.pricing-card {
  background: #fff;
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: var(--card-shadow);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(41, 38, 240, 0.15);
  border-color: rgba(41, 38, 240, 0.2);
}

.pricing-card.featured {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(41, 38, 240, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pricing-price {
  margin-bottom: 2rem;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  padding-bottom: 8px;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li i {
  color: #28a745;
  font-size: 1.1rem;
}

.pricing-card.featured .pricing-features li i {
  color: #fff;
}

.pricing-btn {
  padding: 1.1rem 2rem;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.pricing-btn-outline {
  border: 2px solid #2926f0;
  color: #2926f0;
}

.pricing-btn-outline:hover {
  background: #2926f0;
  color: #fff;
  box-shadow: 0 10px 20px rgba(41, 38, 240, 0.2);
}

.pricing-btn-white {
  background: #fff;
  color: #2926f0;
}

.pricing-btn-white:hover {
  background: #f8f9fa;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #2926f0;
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc107;
  color: #000;
  padding: 6px 25px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 8px 15px rgba(255, 193, 7, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* REQUIREMENTS SECTION */
.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.requirement-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.requirement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(41, 38, 240, 0.08);
  border-color: rgba(41, 38, 240, 0.1);
}

.requirement-number {
  min-width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 5px 10px rgba(41, 38, 240, 0.2);
}

.requirement-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.requirement-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

.help-box {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.2);
  padding: 2rem;
  border-radius: 20px;
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-box::before {
  content: '\f1cd';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 8rem;
  color: rgba(255, 193, 7, 0.1);
}

.help-box h3 {
  font-weight: 800;
  color: #856404;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.help-box p {
  color: #856404;
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* SUPPORT SECTION */
.support-card {
  background: #fff;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.support-icon-circle {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(41, 38, 240, 0.2);
}

.support-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.support-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.support-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #333;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background: #2926f0;
  color: #fff;
  border-color: #2926f0;
  transform: scale(1.05);
}