* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

::selection {
  background: rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050b16;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb, #06b6d4);
  border-radius: 999px;
}

/* Glass effects */
.glass-nav {
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Text gradient */
.text-gradient {
  background: linear-gradient(90deg, #60a5fa, #22d3ee, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Floating animation */
@keyframes floatMove {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-18px) translateX(8px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

.animate-float {
  animation: floatMove 7s ease-in-out infinite;
}

.animate-float-delay {
  animation: floatMove 8s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Hero dashboard */
.hero-dashboard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 35%),
    #07111f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), transparent, rgba(6, 182, 212, 0.35));
  opacity: 0.35;
  pointer-events: none;
}

.hero-dashboard > * {
  position: relative;
  z-index: 2;
}

/* Reusable section pill */
.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Services cards */
.modern-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 30px;
  min-height: 260px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  transition: 0.28s ease;
}

.modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.12);
}

.modern-card:hover::before {
  transform: scale(1.3);
}

.modern-card h3 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.modern-card p {
  color: #64748b;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
  position: relative;
  z-index: 2;
}

/* Pricing cards */
.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.28s ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  opacity: 0;
  transition: 0.28s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 90px rgba(37, 99, 235, 0.13);
  border-color: rgba(37, 99, 235, 0.35);
}

.pricing-card:hover::after {
  opacity: 1;
}

.featured-pricing {
  border: 2px solid rgba(37, 99, 235, 0.45);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 34%),
    #ffffff;
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.package-label {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-card h3 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0f172a;
  max-width: 420px;
}

.package-price {
  font-size: 44px;
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.06em;
  margin-top: 22px;
  margin-bottom: 12px;
}

.package-desc {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-card li {
  color: #475569;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 900;
}

.package-btn {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 900;
  transition: 0.22s ease;
}

.package-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.22);
}

.featured-btn {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.featured-btn:hover {
  filter: brightness(1.05);
}

/* Process dark cards */
.process-card-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  padding: 30px;
  min-height: 260px;
  transition: 0.28s ease;
}

.process-card-dark:hover {
  transform: translateY(-7px);
  border-color: rgba(96, 165, 250, 0.4);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.process-card-dark span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 24px;
}

.process-card-dark h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.process-card-dark p {
  color: #94a3b8;
  line-height: 1.7;
}

/* FAQ */
.faq-modern {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
  transition: 0.22s ease;
}

.faq-modern:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.08);
}

.faq-modern summary {
  cursor: pointer;
  font-weight: 900;
  color: #0f172a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-modern summary::-webkit-details-marker {
  display: none;
}

.faq-modern summary::after {
  content: "+";
  color: #2563eb;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.faq-modern[open] summary::after {
  content: "−";
}

.faq-modern p {
  color: #64748b;
  line-height: 1.7;
  margin-top: 14px;
}

/* Contact */
.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.10);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.13), transparent 68%);
}

.contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card label {
  display: block;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  color: #0f172a;
  transition: 0.2s ease;
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.09);
}

/* Utility fix */
.font800 {
  font-weight: 800;
}

/* Mobile polish */
@media (max-width: 1024px) {
  .featured-pricing {
    transform: none;
  }
}

@media (max-width: 768px) {
  .glass-nav {
    border-radius: 20px;
  }

  .hero-dashboard {
    border-radius: 26px;
  }

  .pricing-card,
  .modern-card,
  .process-card-dark,
  .contact-card {
    border-radius: 24px;
    padding: 24px;
  }

  .pricing-card h3 {
    font-size: 26px;
  }

  .package-price {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .pricing-card,
  .modern-card,
  .process-card-dark,
  .contact-card {
    padding: 22px;
  }

  .section-pill {
    font-size: 11px;
  }
  
}


