/* =====================================================
           HERO
        ====================================================== */

.hero {
  position: relative;

  overflow: hidden;

  padding: 90px 24px 75px;

  text-align: center;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(37, 99, 235, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(8, 174, 234, 0.13),
      transparent 30%
    ),
    linear-gradient(180deg, #f8fbff, #f7f9fc);
}

.hero-grid {
  position: absolute;

  inset: 0;

  opacity: 0.35;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);

  background-size: 45px 45px;
}

.hero-content {
  position: relative;

  max-width: 850px;

  margin: auto;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 8px 15px;

  border-radius: 100px;

  border: 1px solid #c8dbff;

  background: #eef5ff;

  color: var(--primary);

  font-size: 11px;

  font-weight: 800;

  margin-bottom: 20px;
}

.hero h1 {
  color: var(--dark);

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.06;

  letter-spacing: -2.8px;

  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(90deg, #1557e8, #08aeea);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.hero p {
  max-width: 700px;

  margin: 20px auto 0;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =====================================================
           MAIN
        ====================================================== */

.container {
  width: min(1180px, calc(100% - 40px));

  margin: auto;
}

.packages-section {
  padding: 65px 0 100px;
}

/* =====================================================
           CATEGORY SWITCHER
        ====================================================== */

.category-wrapper {
  display: flex;

  justify-content: center;

  margin-bottom: 40px;
}

.category-tabs {
  display: inline-flex;

  padding: 5px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.category-btn {
  border: 0;

  background: transparent;

  color: #667085;

  padding: 12px 26px;

  border-radius: 10px;

  cursor: pointer;

  font-size: 13px;

  font-weight: 700;

  transition: 0.25s ease;
}

.category-btn:hover {
  color: var(--primary);
}

.category-btn.active {
  color: white;

  background: linear-gradient(135deg, #1557e8, #08aeea);

  box-shadow: 0 7px 16px rgba(21, 87, 232, 0.2);
}

/* =====================================================
           PACKAGE GROUP
        ====================================================== */

.package-group {
  display: none;

  animation: fadeUp 0.35s ease;
}

.package-group.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(10px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.group-heading {
  text-align: center;

  margin-bottom: 35px;
}

.group-heading h2 {
  color: var(--dark);

  font-size: 26px;

  letter-spacing: -1px;

  font-weight: 800;
}

.group-heading p {
  margin-top: 7px;

  color: var(--muted);

  font-size: 13px;
}

/* =====================================================
           PACKAGE GRID
        ====================================================== */

.package-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.package-card {
  position: relative;

  background: white;

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 28px;

  box-shadow: var(--shadow);

  transition: 0.3s ease;
}

.package-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 25px 55px rgba(16, 24, 40, 0.11);
}

.package-card.featured {
  border: 1.5px solid #3574ed;

  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.package-badge {
  position: absolute;

  top: 18px;

  right: 18px;

  padding: 6px 10px;

  border-radius: 100px;

  background: #eaf2ff;

  color: var(--primary);

  font-size: 9px;

  font-weight: 800;

  text-transform: uppercase;
}

.package-icon {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 15px;

  color: var(--primary);

  background: #eef4ff;

  font-size: 20px;

  margin-bottom: 18px;
}

.package-card h3 {
  color: var(--dark);

  font-size: 20px;

  font-weight: 800;
}

.package-description {
  min-height: 55px;

  margin-top: 7px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.65;
}

.price-label {
  margin-top: 22px;

  color: #98a2b3;

  font-size: 10px;

  font-weight: 600;
}

.price {
  margin-top: 3px;

  color: var(--dark);

  font-size: 32px;

  line-height: 1.1;

  font-weight: 800;

  letter-spacing: -1.2px;
}

.price span {
  color: #667085;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 0;
}

.package-divider {
  height: 1px;

  background: #eaecf0;

  margin: 22px 0;
}

.feature-title {
  margin-bottom: 12px;

  color: #344054;

  font-size: 11px;

  font-weight: 800;
}

.feature-list {
  display: grid;

  gap: 11px;
}

.feature-item {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color: #475467;

  font-size: 11px;

  line-height: 1.5;
}

.feature-check {
  width: 18px;

  height: 18px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: #087443;

  background: #d1fadf;

  font-size: 9px;

  font-weight: 800;
}

.package-action {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  width: 100%;

  height: 46px;

  margin-top: 24px;

  border: 1px solid #d0d5dd;

  border-radius: 11px;

  color: #344054;

  background: white;

  font-size: 11px;

  font-weight: 800;

  transition: 0.25s ease;
}

.package-action:hover {
  color: var(--primary);

  border-color: #9bb9ff;

  background: #f5f8ff;
}

.package-card.featured .package-action {
  border-color: var(--primary);

  color: white;

  background: var(--primary);
}

.package-card.featured .package-action:hover {
  background: var(--primary-dark);
}

/* =====================================================
           CUSTOM ENTERPRISE CARD
        ====================================================== */

.enterprise-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 18px;
}

.enterprise-main {
  position: relative;

  overflow: hidden;

  padding: 38px;

  border-radius: 22px;

  background: linear-gradient(135deg, #101d3c, #103f87);

  color: white;

  box-shadow: 0 25px 60px rgba(16, 40, 90, 0.2);
}

.enterprise-main::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  right: -120px;

  top: -120px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.025),
    0 0 0 120px rgba(255, 255, 255, 0.018);
}

.enterprise-main .small-label {
  color: #8bc9ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.enterprise-main h3 {
  margin-top: 12px;

  font-size: 30px;

  line-height: 1.2;

  letter-spacing: -1px;
}

.enterprise-main p {
  max-width: 600px;

  margin-top: 12px;

  color: #c8d6ee;

  font-size: 13px;

  line-height: 1.75;
}

.enterprise-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin-top: 25px;
}

.enterprise-feature {
  padding: 13px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 11px;

  background: rgba(255, 255, 255, 0.05);

  font-size: 11px;
}

.enterprise-feature i {
  margin-right: 6px;

  color: #63d8ff;
}

.enterprise-side {
  display: grid;

  gap: 18px;
}

.enterprise-box {
  padding: 25px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 20px;

  box-shadow: var(--shadow);
}

.enterprise-box i {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

  color: var(--primary);

  background: #eef4ff;

  margin-bottom: 13px;
}

.enterprise-box h4 {
  color: var(--dark);

  font-size: 14px;
}

.enterprise-box p {
  margin-top: 5px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.6;
}

/* =====================================================
           COMPARISON
        ====================================================== */

.comparison {
  margin-top: 70px;
}

.comparison-heading {
  text-align: center;

  margin-bottom: 28px;
}

.comparison-heading .label {
  color: var(--primary);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;
}

.comparison-heading h2 {
  margin-top: 7px;

  color: var(--dark);

  font-size: 25px;

  font-weight: 800;
}

.comparison-table {
  overflow: hidden;

  background: white;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;

  grid-template-columns:
    1.5fr
    repeat(3, 1fr);

  border-bottom: 1px solid #eaecf0;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-cell {
  padding: 15px 18px;

  color: #475467;

  font-size: 11px;

  border-right: 1px solid #eaecf0;
}

.comparison-cell:last-child {
  border-right: 0;
}

.comparison-header .comparison-cell {
  color: #101828;

  background: #f8fafc;

  font-weight: 800;
}

.comparison-cell.center {
  text-align: center;
}

.yes {
  color: #087443;

  font-weight: 800;
}

.no {
  color: #98a2b3;
}

/* =====================================================
           FAQ
        ====================================================== */

.faq-section {
  margin-top: 70px;
}

.faq-heading {
  text-align: center;

  margin-bottom: 25px;
}

.faq-heading h2 {
  color: var(--dark);

  font-size: 25px;

  font-weight: 800;
}

.faq-list {
  max-width: 850px;

  margin: auto;

  display: grid;

  gap: 10px;
}

.faq-item {
  background: white;

  border: 1px solid var(--border);

  border-radius: 13px;

  overflow: hidden;
}

.faq-question {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 17px 19px;

  border: 0;

  background: white;

  color: #101828;

  text-align: left;

  cursor: pointer;

  font-size: 12px;

  font-weight: 700;
}

.faq-question i {
  color: #667085;

  transition: 0.25s ease;
}

.faq-answer {
  display: none;

  padding: 0 19px 18px;

  color: #667085;

  font-size: 11px;

  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

/* =====================================================
           CTA
        ====================================================== */

.cta {
  position: relative;

  overflow: hidden;

  margin-top: 80px;

  padding: 55px 40px;

  border-radius: 24px;

  text-align: center;

  color: white;

  background: linear-gradient(135deg, #1557e8, #087fcf, #08aeea);

  box-shadow: 0 25px 60px rgba(21, 87, 232, 0.2);
}

.cta::before {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.15);

  top: -180px;

  left: -80px;

  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.03),
    0 0 0 110px rgba(255, 255, 255, 0.025);
}

.cta h2 {
  position: relative;

  font-size: 29px;

  line-height: 1.2;

  letter-spacing: -1px;
}

.cta p {
  position: relative;

  max-width: 600px;

  margin: 10px auto 0;

  color: #dcecff;

  font-size: 12px;
}

.cta-actions {
  position: relative;

  display: flex;

  justify-content: center;

  gap: 10px;

  margin-top: 23px;
}

.cta-primary {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 20px;

  border-radius: 11px;

  background: white;

  color: var(--primary);

  font-size: 11px;

  font-weight: 800;

  transition: 0.25s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 20px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 11px;

  color: white;

  font-size: 11px;

  font-weight: 800;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =====================================================
           WHATSAPP
        ====================================================== */

.whatsapp {
  position: fixed;

  right: 25px;

  bottom: 22px;

  z-index: 2000;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 13px 18px;

  border-radius: 100px;

  color: white;

  background: #22c55e;

  font-size: 11px;

  font-weight: 800;

  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);

  transition: 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-3px);
}

.whatsapp i {
  font-size: 17px;
}

/* =====================================================
           MOBILE
        ====================================================== */

@media (max-width: 1200px) {
  .navbar {
    padding: 0 25px;
  }

  .nav-link {
    padding: 10px 8px;

    font-size: 11px;
  }

  .brand {
    min-width: auto;
  }
}

@media (max-width: 1050px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar {
    height: 82px;
  }

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

@media (max-width: 800px) {
  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 720px;
  }
}

@media (max-width: 650px) {
  .navbar {
    padding: 0 16px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-logo {
    width: 40px;

    height: 40px;
  }

  .client-btn {
    display: none;
  }

  .admin-btn {
    min-width: auto;

    min-height: 42px;

    padding: 0 13px;

    font-size: 10px;
  }

  .hero {
    padding: 65px 18px 55px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 13px;
  }

  .container {
    width: min(100% - 26px, 1180px);
  }

  .packages-section {
    padding: 45px 0 70px;
  }

  .category-tabs {
    width: 100%;

    overflow-x: auto;
  }

  .category-btn {
    flex: 1;

    white-space: nowrap;

    padding: 11px 15px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-main {
    padding: 28px 22px;
  }

  .enterprise-main h3 {
    font-size: 25px;
  }

  .enterprise-features {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px 20px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .whatsapp {
    right: 13px;

    bottom: 13px;

    padding: 12px 15px;
  }
}
