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

.hero {
  min-height: calc(100vh - 118px);

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(18, 160, 232, 0.16),
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(10, 100, 210, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);

  display: flex;
  align-items: center;
}

body.dark .hero {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(18, 160, 232, 0.13),
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(10, 100, 210, 0.1),
      transparent 35%
    ),
    linear-gradient(180deg, #071a32 0%, #071327 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: 0.4;

  background-image:
    linear-gradient(rgba(17, 98, 175, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 98, 175, 0.04) 1px, transparent 1px);

  background-size: 55px 55px;

  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-container {
  width: min(1400px, calc(100% - 48px));
  margin: auto;

  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 70px;

  align-items: center;

  padding: 80px 0;
}

.hero-badge {
  width: fit-content;

  display: flex;
  align-items: center;

  gap: 9px;

  padding: 7px 12px;

  background: #eaf5ff;

  border: 1px solid #d8ebff;

  border-radius: 100px;

  color: var(--primary);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.5px;
}

.badge-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #15bf67;

  box-shadow: 0 0 0 4px rgba(21, 191, 103, 0.1);
}

.hero h1 {
  margin-top: 20px;

  font-family: "Inter", sans-serif;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1.04;

  letter-spacing: -3px;

  color: var(--navy);
}

.hero h1 span {
  background: linear-gradient(90deg, #075dc7, #06a8dd);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 600px;

  margin-top: 22px;

  color: #68758b;

  font-size: 16px;

  line-height: 1.8;
}

body.dark .hero-description {
  color: #9eacc0;
}

.hero-actions {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 31px;
}

.hero-primary {
  height: 51px;

  padding: 0 23px;

  border-radius: 13px;

  background: var(--gradient);

  color: white;

  font-size: 14px;
  font-weight: 700;

  box-shadow: 0 12px 27px rgba(5, 105, 203, 0.22);

  display: flex;
  align-items: center;

  gap: 9px;

  transition: all 0.2s ease;
}

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

  box-shadow: 0 17px 33px rgba(5, 105, 203, 0.28);
}

.hero-secondary {
  height: 51px;

  padding: 0 21px;

  border-radius: 13px;

  border: 1px solid #dce7f2;

  background: white;

  color: var(--navy);

  font-size: 14px;
  font-weight: 700;

  display: flex;
  align-items: center;

  gap: 9px;

  transition: all 0.2s ease;
}

body.dark .hero-secondary {
  background: #0d203a;
  border-color: #1f3655;
}

.hero-secondary:hover {
  background: #f6faff;
  border-color: #bfd4eb;
}

body.dark .hero-secondary:hover {
  background: #142d4d;
}

.hero-stats {
  display: flex;

  gap: 34px;

  margin-top: 45px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: "Inter", sans-serif;

  color: var(--navy);

  font-size: 21px;
  font-weight: 800;
}

.stat span {
  color: #7d899b;

  font-size: 11px;

  margin-top: 2px;
}

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

.network-visual {
  position: relative;

  min-height: 500px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;

  width: 410px;
  height: 410px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(9, 151, 224, 0.17),
    rgba(9, 151, 224, 0) 68%
  );
}

.orbit {
  position: absolute;

  width: 380px;
  height: 380px;

  border: 1px solid rgba(7, 104, 195, 0.13);

  border-radius: 50%;

  animation: rotate 25s linear infinite;
}

.orbit.two {
  width: 280px;
  height: 280px;

  border-color: rgba(7, 104, 195, 0.1);

  animation-duration: 18s;

  animation-direction: reverse;
}

.orbit-dot {
  position: absolute;

  width: 13px;
  height: 13px;

  border-radius: 50%;

  background: #079bdc;

  box-shadow:
    0 0 0 6px rgba(7, 155, 220, 0.1),
    0 0 20px rgba(7, 155, 220, 0.4);
}

.orbit-dot.one {
  top: 33px;
  left: 53px;
}

.orbit-dot.two {
  right: 20px;
  top: 50%;
}

.orbit-dot.three {
  bottom: 30px;
  left: 50%;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.router-card {
  position: relative;

  z-index: 5;

  width: 340px;
  min-height: 290px;

  border-radius: 27px;

  padding: 27px;

  color: white;

  background: linear-gradient(145deg, #0a5fc8, #078ed9 55%, #08b0d7);

  box-shadow: 0 35px 80px rgba(7, 89, 173, 0.25);

  overflow: hidden;
}

.router-card::before {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  right: -80px;
  top: -100px;

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

  border-radius: 50%;
}

.router-card::after {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  left: -90px;
  bottom: -100px;

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

  border-radius: 50%;
}

.router-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.router-logo {
  width: 49px;
  height: 49px;

  border-radius: 14px;

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

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 19px;

  backdrop-filter: blur(8px);
}

.online {
  display: flex;
  align-items: center;

  gap: 7px;

  font-size: 10px;
  font-weight: 700;

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

  padding: 7px 10px;

  border-radius: 100px;
}

.online-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #5cf19a;
}

.router-title {
  margin-top: 45px;

  font-size: 12px;

  color: rgba(255, 255, 255, 0.7);
}

.speed {
  margin-top: 4px;

  font-family: "Inter", sans-serif;

  font-size: 48px;
  font-weight: 800;

  line-height: 1;
}

.speed span {
  font-size: 16px;
  font-weight: 600;

  opacity: 0.75;
}

.speed-line {
  margin-top: 18px;

  height: 5px;

  border-radius: 100px;

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

  overflow: hidden;
}

.speed-line div {
  width: 87%;
  height: 100%;

  border-radius: inherit;

  background: white;
}

.router-bottom {
  position: absolute;

  left: 27px;
  right: 27px;
  bottom: 24px;

  display: flex;

  justify-content: space-between;

  font-size: 10px;

  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
           FLOATING CARDS
        ========================================================= */

.float-card {
  position: absolute;

  z-index: 10;

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

  border: 1px solid rgba(214, 226, 239, 0.9);

  box-shadow: 0 20px 50px rgba(17, 55, 98, 0.13);

  border-radius: 16px;

  backdrop-filter: blur(14px);

  padding: 13px 15px;

  display: flex;
  align-items: center;

  gap: 10px;
}

.float-card.left {
  left: -5px;
  top: 80px;
}

.float-card.right {
  right: -5px;
  bottom: 80px;
}

.float-icon {
  width: 38px;
  height: 38px;

  border-radius: 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf7ff;

  color: var(--primary);
}

.float-content {
  display: flex;
  flex-direction: column;
}

.float-content strong {
  color: var(--navy);

  font-size: 12px;
}

.float-content span {
  color: #8b96a8;

  font-size: 9px;
}

/* =========================================================
           GENERAL SECTION
        ========================================================= */

.section {
  padding: 110px 0;

  position: relative;
}

.section:nth-child(even) {
  background: #f7faff;
}

body.dark .section:nth-child(even) {
  background: #091a31;
}

.section-heading {
  max-width: 700px;

  margin-bottom: 55px;
}

.section-label {
  font-size: 11px;
  font-weight: 800;

  color: var(--primary);

  text-transform: uppercase;

  letter-spacing: 1.8px;
}

.section-heading h2 {
  margin-top: 10px;

  font-family: "Inter", sans-serif;

  font-size: 40px;

  line-height: 1.15;

  letter-spacing: -1.5px;

  color: var(--navy);
}

.section-heading p {
  margin-top: 14px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
           CARA BERLANGGANAN
        ========================================================= */

.process-grid {
  display: grid;

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

  gap: 18px;
}

.process-card {
  position: relative;

  padding: 28px;

  min-height: 230px;

  background: var(--white);

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

  border-radius: 20px;

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

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);

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

.process-number {
  width: 46px;
  height: 46px;

  border-radius: 14px;

  background: #eaf5ff;

  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", sans-serif;

  font-size: 15px;
  font-weight: 800;
}

.process-card h3 {
  margin-top: 27px;

  color: var(--navy);

  font-size: 18px;
}

.process-card p {
  margin-top: 9px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================================
           PAKET
        ========================================================= */

.package-grid {
  display: grid;

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

  gap: 22px;
}

.package-card {
  position: relative;

  padding: 30px;

  border-radius: 22px;

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

  background: var(--white);

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

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

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

.package-card.featured {
  border-color: #9dd9f7;

  box-shadow: 0 20px 60px rgba(8, 142, 217, 0.15);
}

.package-badge {
  position: absolute;

  top: 18px;
  right: 18px;

  padding: 6px 10px;

  border-radius: 100px;

  background: #e8f8ff;

  color: var(--primary);

  font-size: 9px;
  font-weight: 800;

  text-transform: uppercase;
}

.package-icon {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf7ff;

  color: var(--primary);

  font-size: 20px;
}

.package-card h3 {
  margin-top: 20px;

  color: var(--navy);

  font-family: "Inter", sans-serif;

  font-size: 21px;
}

.package-card p {
  margin-top: 7px;

  color: var(--muted);

  font-size: 13px;
}

.package-price {
  margin-top: 24px;

  font-family: "Inter", sans-serif;

  font-size: 29px;

  color: var(--navy);

  font-weight: 800;
}

.package-price span {
  font-family: "Inter";

  font-size: 11px;

  color: var(--muted);

  font-weight: 500;
}

.package-list {
  margin-top: 22px;

  display: flex;
  flex-direction: column;

  gap: 11px;
}

.package-list div {
  display: flex;
  align-items: center;

  gap: 9px;

  color: var(--muted);

  font-size: 12px;
}

.check {
  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #eaf8f0;

  color: #16a45d;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
}

.package-button {
  width: 100%;

  height: 45px;

  margin-top: 27px;

  border-radius: 12px;

  background: #eef6ff;

  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;

  transition: all 0.2s ease;
}

.package-button:hover {
  background: var(--gradient);

  color: white;
}

/* =========================================================
           SPEED
        ========================================================= */

.speed-layout {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 60px;

  align-items: center;
}

.speed-display {
  padding: 40px;

  border-radius: 26px;

  background: var(--gradient);

  color: white;

  box-shadow: 0 30px 70px rgba(5, 105, 203, 0.22);
}

.speed-display-label {
  font-size: 11px;

  opacity: 0.75;

  text-transform: uppercase;

  letter-spacing: 1.5px;
}

.speed-display-number {
  margin-top: 10px;

  font-family: "Inter", sans-serif;

  font-size: 75px;

  line-height: 1;

  font-weight: 800;
}

.speed-display-number span {
  font-size: 19px;

  opacity: 0.8;
}

.speed-display p {
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;

  line-height: 1.7;
}

.speed-features {
  margin-top: 30px;

  display: grid;

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

  gap: 10px;
}

.speed-feature {
  padding: 13px;

  border-radius: 12px;

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

  font-size: 11px;
}

.speed-bars {
  display: flex;

  flex-direction: column;

  gap: 17px;
}

.speed-row {
  display: grid;

  grid-template-columns: 70px 1fr 55px;

  align-items: center;

  gap: 14px;
}

.speed-row strong {
  color: var(--navy);

  font-size: 13px;
}

.speed-bar {
  height: 10px;

  border-radius: 100px;

  background: #eaf1f8;

  overflow: hidden;
}

.speed-bar div {
  height: 100%;

  border-radius: inherit;

  background: var(--gradient);
}

.speed-row span {
  text-align: right;

  color: var(--muted);

  font-size: 11px;
}

/* =========================================================
           APLIKASI
        ========================================================= */

.apps-grid {
  display: grid;

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

  gap: 18px;
}

.app-card {
  padding: 26px;

  border-radius: 19px;

  background: var(--white);

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

  transition: all 0.25s ease;
}

.app-card:hover {
  transform: translateY(-5px);

  border-color: #b8dcf7;

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

.app-icon {
  width: 49px;
  height: 49px;

  border-radius: 14px;

  background: #edf7ff;

  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 21px;
}

.app-card h3 {
  margin-top: 20px;

  color: var(--navy);

  font-size: 16px;
}

.app-card p {
  margin-top: 7px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.7;
}

.app-link {
  display: inline-flex;

  margin-top: 18px;

  color: var(--primary);

  font-size: 11px;
  font-weight: 700;
}

/* =========================================================
           KEUNGGULAN
        ========================================================= */

.advantage-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.advantage-card {
  display: flex;

  gap: 18px;

  padding: 27px;

  border-radius: 19px;

  background: var(--white);

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

.advantage-icon {
  flex-shrink: 0;

  width: 52px;
  height: 52px;

  border-radius: 15px;

  background: #edf7ff;

  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 21px;
}

.advantage-card h3 {
  color: var(--navy);

  font-size: 16px;
}

.advantage-card p {
  margin-top: 6px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.7;
}

/* =========================================================
           TESTIMONI
        ========================================================= */

.testimonial-grid {
  display: grid;

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

  gap: 20px;
}

.testimonial-card {
  padding: 28px;

  border-radius: 20px;

  background: var(--white);

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

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

.quote {
  font-size: 32px;

  line-height: 1;

  color: var(--primary);

  font-family: Georgia, serif;
}

.testimonial-card p {
  margin-top: 15px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.8;
}

.testimonial-user {
  margin-top: 25px;

  display: flex;
  align-items: center;

  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: var(--gradient);

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
}

.testimonial-user strong {
  display: block;

  color: var(--navy);

  font-size: 12px;
}

.testimonial-user span {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 10px;
}

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

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

  margin: auto;

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);

  border-radius: 15px;

  background: var(--white);

  overflow: hidden;
}

.faq-question {
  width: 100%;

  min-height: 64px;

  padding: 0 20px;

  border: 0;

  background: transparent;

  color: var(--navy);

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-align: left;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}

.faq-plus {
  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: #eef6ff;

  color: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  transition: transform 0.25s ease;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 20px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.8;
}

/* =========================================================
           CUSTOMER CARE
        ========================================================= */

.care-box {
  position: relative;

  padding: 55px;

  border-radius: 28px;

  background: linear-gradient(135deg, #075dc7, #078fe0 55%, #08b0d7);

  color: white;

  overflow: hidden;

  box-shadow: 0 30px 80px rgba(5, 105, 203, 0.2);
}

.care-box::before {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  right: -130px;
  top: -180px;

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

  border-radius: 50%;
}

.care-layout {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 60px;

  align-items: center;
}

.care-box h2 {
  font-family: "Inter", sans-serif;

  font-size: 42px;

  line-height: 1.15;

  letter-spacing: -1.5px;
}

.care-box p {
  margin-top: 15px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 14px;

  max-width: 600px;
}

.care-actions {
  margin-top: 27px;

  display: flex;

  gap: 10px;
}

.care-primary,
.care-secondary {
  height: 48px;

  padding: 0 20px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;
}

.care-primary {
  background: white;

  color: var(--primary);
}

.care-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: white;

  background: rgba(255, 255, 255, 0.08);
}

.care-contact {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.care-contact-card {
  padding: 17px;

  border-radius: 14px;

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

  border: 1px solid rgba(255, 255, 255, 0.13);
}

.care-contact-card span {
  display: block;

  font-size: 10px;

  color: rgba(255, 255, 255, 0.65);
}

.care-contact-card strong {
  display: block;

  margin-top: 4px;

  font-size: 14px;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width: 1300px) {
  .nav-link {
    padding: 0 9px;
    font-size: 12px;
  }

  .theme-btn {
    min-width: auto;
    width: 45px;
    padding: 0;
  }

  .theme-btn .theme-label {
    display: none;
  }

  .client-btn {
    width: 45px;
    padding: 0;
  }

  .client-btn span:last-child {
    display: none;
  }

  .contact-btn {
    min-width: 45px;
    width: 45px;
    padding: 0;
  }

  .contact-btn span:last-child {
    display: none;
  }

  .contact-btn {
    font-size: 0;
  }

  .contact-btn::before {
    content: "↗";
    font-size: 18px;
  }

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

@media (max-width: 1050px) {
  .nav-menu {
    position: fixed;

    top: 72px;

    left: 15px;
    right: 15px;

    height: auto;

    max-height: calc(100vh - 90px);

    overflow-y: auto;

    padding: 12px;

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

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

    border-radius: 18px;

    box-shadow: var(--shadow);

    display: none;

    flex-direction: column;

    align-items: stretch;

    justify-content: flex-start;

    gap: 3px;
  }

  body.dark .nav-menu {
    background: rgba(8, 21, 44, 0.98);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-item {
    height: auto;

    display: block;
  }

  .nav-link {
    height: 48px;

    width: 100%;

    justify-content: flex-start;

    padding: 0 14px;

    font-size: 14px;
  }

  .nav-link.active::after {
    left: auto;
    right: 15px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero-badge {
    margin: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .network-visual {
    min-height: 430px;
  }

  .speed-layout,
  .care-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .topbar {
    display: none;
  }

  .navbar {
    height: 72px;
  }

  .nav-container {
    width: min(100% - 30px, 1400px);
  }

  .brand {
    min-width: auto;
  }

  .brand-text {
    display: none;
  }

  .nav-actions {
    gap: 6px;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    width: min(100% - 30px, 1400px);

    padding: 60px 0;
  }

  .hero h1 {
    font-size: 42px;

    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 14px;
  }

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

  .hero-primary,
  .hero-secondary {
    width: 100%;

    justify-content: center;
  }

  .hero-stats {
    gap: 20px;

    flex-wrap: wrap;
  }

  .network-visual {
    min-height: 380px;

    transform: scale(0.88);
  }

  .float-card.left {
    left: -15px;
  }

  .float-card.right {
    right: -15px;
  }

  .section {
    padding: 75px 0;
  }

  .container {
    width: min(100% - 30px, 1400px);
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .process-grid,
  .package-grid,
  .apps-grid,
  .advantage-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .speed-display-number {
    font-size: 60px;
  }

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

  .speed-row {
    grid-template-columns: 55px 1fr 45px;
  }

  .care-box {
    padding: 35px 25px;
  }

  .care-box h2 {
    font-size: 31px;
  }

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

  .care-primary,
  .care-secondary {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;

    gap: 8px;

    text-align: center;
  }
}
/* =====================================================
   MORE PACKAGE
===================================================== */

.package-more {
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  padding: 22px 25px;

  border: 1px solid #dbe5f5;
  border-radius: 18px;

  background: linear-gradient(110deg, #f7faff 0%, #ffffff 55%, #f3f9ff 100%);

  box-shadow: 0 12px 35px rgba(20, 72, 140, 0.06);
}

.package-more-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.package-more-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  color: #1557e8;

  background: #eaf2ff;

  font-size: 19px;
}

.package-more h3 {
  margin: 0 0 5px;

  color: #101828;

  font-size: 16px;
  font-weight: 800;
}

.package-more p {
  margin: 0;

  color: #667085;

  font-size: 12px;

  line-height: 1.6;
}

.package-more-button {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 46px;

  padding: 0 19px;

  border-radius: 12px;

  color: #ffffff;

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

  font-size: 12px;
  font-weight: 700;

  box-shadow: 0 8px 20px rgba(21, 87, 232, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.package-more-button:hover {
  transform: translateY(-2px);

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

.package-more-button i {
  transition: transform 0.25s ease;
}

.package-more-button:hover i {
  transform: translateX(4px);
}

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

@media (max-width: 700px) {
  .package-more {
    flex-direction: column;
    align-items: stretch;

    padding: 18px;
  }

  .package-more-content {
    align-items: flex-start;
  }

  .package-more-button {
    width: 100%;
  }
}
/* =====================================================
   SPEED ACTION
===================================================== */

.speed-action {
  margin-top: 30px;
}

.speed-test-button {
  position: relative;

  display: flex;
  align-items: center;
  gap: 16px;

  width: 100%;
  padding: 16px 18px;

  border-radius: 18px;

  text-decoration: none;

  background: linear-gradient(135deg, #0d6efd, #08a9d8);

  color: #fff;

  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.speed-test-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 38px rgba(13, 110, 253, 0.28);

  color: #fff;
}

/* ICON */

.speed-test-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

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

  font-size: 20px;

  flex-shrink: 0;
}

/* TEXT */

.speed-test-button span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;

  flex: 1;
}

.speed-test-button strong {
  font-size: 15px;
  font-weight: 700;
}

.speed-test-button small {
  font-size: 12px;

  color: rgba(255, 255, 255, 0.78);
}

/* ARROW */

.speed-test-arrow {
  font-size: 24px;

  transition: transform 0.25s ease;
}

.speed-test-button:hover .speed-test-arrow {
  transform: translateX(5px);
}

/* =====================================================
   SPEED MORE LINK
===================================================== */

.speed-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 24px;

  padding: 15px 18px;

  border: 1px solid rgba(13, 110, 253, 0.15);

  border-radius: 14px;

  text-decoration: none;

  color: #1d4ed8;

  font-size: 14px;
  font-weight: 600;

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

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.speed-more-link:hover {
  background: #fff;

  border-color: rgba(13, 110, 253, 0.35);

  transform: translateX(3px);

  color: #1d4ed8;
}

.speed-more-link span {
  font-size: 20px;
}
/* =====================================================
   CARA BERLANGGANAN - CTA
===================================================== */

.process-action {
  margin: 48px auto 0;
  padding: 22px 24px;
  max-width: 760px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 55%, #effcff 100%);

  border: 1px solid #dce8f7;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(22, 72, 140, 0.06);

  position: relative;
  overflow: hidden;
}

/* decorative glow */
.process-action::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -80px;

  background: rgba(8, 175, 213, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.process-action-content {
  position: relative;
  z-index: 1;
}

.process-action p {
  margin: 0 0 5px;
  color: #718096;
  font-size: 13px;
  font-weight: 500;
}

.process-action h3 {
  margin: 0;
  color: #182230;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* =====================================================
   BUTTON
===================================================== */

.process-action .btn {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 46px;
  padding: 0 22px;

  border: 0;
  border-radius: 11px;

  background: linear-gradient(135deg, #1769ff 0%, #08afd5 100%);

  color: #ffffff !important;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;

  box-shadow: 0 8px 20px rgba(23, 105, 255, 0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-action .btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);

  box-shadow: 0 12px 26px rgba(23, 105, 255, 0.28);
}

.process-action .btn i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.process-action .btn:hover i {
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .process-action {
    margin-top: 36px;
    padding: 20px;

    flex-direction: column;
    align-items: stretch;

    text-align: center;
    gap: 16px;
  }

  .process-action h3 {
    font-size: 16px;
  }

  .process-action .btn {
    width: 100%;
  }
}
