/* =========================================================
   R'NET INTERNET SOLUTION
   Dark Purple + Blue + Black Theme
   ========================================================= */

:root {
  --bg: #05050a;
  --bg-soft: #090818;
  --panel: rgba(16, 12, 35, .78);
  --panel-2: #0d0b1b;
  --purple: #8b35ff;
  --purple-2: #c45cff;
  --blue: #168cff;
  --blue-2: #00b7ff;
  --white: #f7f5ff;
  --muted: #aaa6bd;
  --line: rgba(161, 103, 255, .26);
  --success: #28d99a;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(114, 40, 255, .14), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(0, 139, 255, .12), transparent 28%),
    var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

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

.section { padding: 100px 0; position: relative; }

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.glow-1 { background: var(--purple); top: 10%; left: -250px; }
.glow-2 { background: var(--blue); top: 55%; right: -250px; }

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,5,10,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }

.brand img {
  width: 178px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  mix-blend-mode: screen;
}

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { color: #ddd9e8; font-size: 14px; font-weight: 700; transition: .25s; }
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.nav-menu a.active { text-shadow: 0 0 20px var(--purple-2); }

.nav-cta {
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(100deg, var(--purple), var(--blue));
  box-shadow: 0 10px 28px rgba(88, 41, 255, .3);
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 21px; height: 2px; background: white; margin: 5px auto; }

/* HERO */
.hero { padding-top: 70px; min-height: 650px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 20px; }

.eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(158,78,255,.5);
  background: rgba(120,50,255,.08);
  border-radius: 999px;
  color: #d7b8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: .98;
  margin: 22px 0 20px;
  letter-spacing: -2px;
}
.hero h1 span, h2 span {
  background: linear-gradient(90deg, #c95cff, #8f45ff, #20a6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text { max-width: 590px; color: #c2bdd0; font-size: 17px; }
.mini-points { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0; }
.mini-points span {
  border: 1px solid rgba(161,103,255,.24);
  background: rgba(255,255,255,.035);
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  color: #e6e2ef;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 13px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(110deg, var(--purple), var(--blue)); box-shadow: 0 12px 30px rgba(96, 44, 255, .3); }
.btn-outline { border-color: rgba(172,120,255,.5); background: rgba(255,255,255,.025); }
.btn-light { background: #fff; color: #151024; }
.btn-whatsapp { background: #21c875; color: #06140d; }
.hero-note { margin-top: 22px; color: #8f8aa1; font-size: 13px; }

.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.family-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 70% center;
  border-radius: 35px;
  border: 1px solid rgba(170,90,255,.35);
  box-shadow: 0 0 80px rgba(114,40,255,.18), var(--shadow);
  filter: saturate(1.08) contrast(1.03);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 35px;
  background: linear-gradient(90deg, rgba(5,5,10,.38), transparent 50%);
  pointer-events: none;
}
.visual-orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .45; z-index: -1; }
.orb-a { width: 180px; height: 180px; background: #812fff; top: 0; right: 10%; }
.orb-b { width: 180px; height: 180px; background: #008cff; bottom: 0; left: 5%; }

.bot-badge {
  position: absolute;
  right: 8px;
  bottom: 30px;
  width: 220px;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(8,7,18,.9);
  border: 1px solid rgba(170,100,255,.5);
  box-shadow: var(--shadow);
  z-index: 2;
  font-size: 12px;
  color: #d9d4e4;
}
.bot-badge-title { display: block; color: #c65dff; font-weight: 900; font-size: 20px; margin-bottom: 3px; }

/* HIGHLIGHTS */
.highlights { position: relative; z-index: 5; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(152,78,255,.14);
  box-shadow: var(--shadow);
}
.highlight-card {
  padding: 25px 14px;
  text-align: center;
  background: rgba(10,9,22,.93);
  min-height: 165px;
}
.highlight-card:first-child { border-radius: 24px 0 0 24px; }
.highlight-card:last-child { border-radius: 0 24px 24px 0; }
.highlight-card .icon { font-size: 27px; margin-bottom: 8px; filter: drop-shadow(0 0 10px rgba(158,75,255,.7)); }
.highlight-card h3 { font-size: 13px; text-transform: uppercase; margin-bottom: 6px; }
.highlight-card p { color: var(--muted); font-size: 11px; }

/* SECTION HEADINGS */
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.section-heading.left { text-align: left; margin-left: 0; }
.section-heading h2, .values-intro h2, .coverage-box h2, .cta-box h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 15px 0 10px;
  letter-spacing: -.8px;
}
.section-heading p, .values-intro p, .coverage-box p, .cta-box p { color: var(--muted); }

/* PACKAGES */
.packages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.package-card {
  position: relative;
  background: linear-gradient(180deg, rgba(22,18,43,.92), rgba(9,8,19,.94));
  border: 1px solid rgba(155,91,255,.26);
  border-radius: 20px;
  padding: 26px 17px 18px;
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
  transition: .3s;
}
.package-card:hover { transform: translateY(-6px); border-color: rgba(170,96,255,.75); }
.package-card.featured {
  border-color: #9d48ff;
  box-shadow: 0 0 0 1px rgba(155,70,255,.22), 0 20px 55px rgba(109,40,255,.2);
}
.popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 999px; padding: 5px 17px;
  font-size: 10px; font-weight: 900; white-space: nowrap;
}
.package-name { font-size: 12px; color: #bfb7d4; text-align: center; }
.package-name strong { display: none; }
.speed { font-size: 48px; font-weight: 900; text-align: center; margin-top: 8px; background: linear-gradient(90deg,#cf63ff,#8b5aff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.speed small { font-size: 13px; color: #c7c0d7; }
.price { text-align: center; font-size: 20px; font-weight: 900; margin: 6px 0 16px; }
.price span { color: #c65dff; font-size: 12px; margin-right: 2px; }
.price small { font-size: 10px; color: #888398; font-weight: 500; }
.package-card ul { list-style: none; border-top: 1px solid rgba(255,255,255,.07); padding-top: 14px; }
.package-card li { color: #bcb6c9; font-size: 11px; margin: 8px 0; }
.package-card li::before { content: "✓"; color: #c75dff; font-weight: 900; margin-right: 7px; }
.package-btn, .small-btn {
  display: block; width: 100%; text-align: center;
  border: 1px solid #9d45ff; background: transparent; color: #e5d4ff;
  padding: 10px 8px; border-radius: 10px; font-size: 11px; font-weight: 800; margin-top: 16px; cursor: pointer;
}
.featured .package-btn { background: linear-gradient(100deg, var(--purple), var(--blue)); border-color: transparent; color: #fff; }
.pricing-note { text-align: center; color: #797489; font-size: 11px; margin-top: 15px; }

/* VALUES */
.values-section { padding-top: 50px; }
.values-panel {
  position: relative; overflow: hidden;
  padding: 45px;
  border: 1px solid rgba(143,74,255,.45);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(130,40,255,.18), transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(0,132,255,.13), transparent 35%),
    rgba(10,8,22,.88);
}
.values-intro { max-width: 650px; }
.values-intro h2 { font-size: 34px; }
.value-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 30px; }
.value-item { padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.025); }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-item h3 { font-size: 14px; margin-bottom: 5px; }
.value-item p { color: #9893a8; font-size: 11px; }
.values-slogan { margin-top: 26px; color: #d6d0e0; font-size: 18px; }
.values-slogan strong { color: #c85cff; }

/* USE CASE */
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.use-card { padding: 25px; border-radius: 20px; background: var(--panel); border: 1px solid rgba(155,91,255,.2); text-align: center; }
.use-emoji { font-size: 38px; margin-bottom: 12px; }
.use-card h3 { font-size: 16px; }
.use-card p { min-height: 42px; color: var(--muted); font-size: 12px; }
.small-btn { width: auto; margin: 15px auto 0; padding: 9px 14px; }

/* COVERAGE */
.coverage-box, .cta-box {
  border-radius: 28px;
  padding: 38px 42px;
  background: linear-gradient(105deg, rgba(113,34,255,.92), rgba(17,82,255,.82));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 25px 60px rgba(73,32,200,.24);
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.coverage-box h2, .cta-box h2 { font-size: 34px; }
.coverage-box p, .cta-box p { color: rgba(255,255,255,.76); max-width: 680px; }

/* VISI MISI & RATING */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vision-card {
  position: relative;
  padding: 30px;
  min-height: 270px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(22,140,255,.11), transparent 35%),
    linear-gradient(145deg, rgba(22,17,42,.95), rgba(8,7,18,.95));
  border: 1px solid rgba(155,91,255,.28);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.vision-icon {
  font-size: 34px;
  margin-bottom: 12px;
}
.card-label {
  display: block;
  color: #bd70ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.vision-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vision-card p {
  color: var(--muted);
  font-size: 13px;
}
.mission-list {
  list-style: none;
  margin-top: 12px;
}
.mission-list li {
  color: #bdb7c9;
  font-size: 12px;
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
}
.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3aa7ff;
  font-weight: 900;
}
.rating-heading {
  text-align: center;
  margin: 55px 0 25px;
}
.rating-heading h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  margin: 13px 0 8px;
}
.rating-heading h3 span {
  background: linear-gradient(90deg, #c95cff, #168cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rating-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(160,96,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}
.rating-score strong { font-size: 22px; }
.rating-score span { color: #ffc94a; letter-spacing: 2px; }
.rating-score small { color: var(--muted); font-size: 10px; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.testimonial {
  padding: 23px;
  border-radius: 20px;
  background: rgba(14,11,27,.9);
  border: 1px solid rgba(155,91,255,.22);
}
.stars { color: #ffc94a; letter-spacing: 3px; font-size: 14px; margin-bottom: 12px; }
.testimonial p { color: #c4bfce; font-size: 12px; line-height: 1.7; min-height: 62px; }
.customer { margin-top: 17px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.07); font-size: 11px; }
.customer strong { margin-left: 5px; }
.customer span { color: #777183; margin-left: 5px; }

/* STEPS */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 12px; }
.step { text-align: center; }
.step-no { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #9a50ff; display: grid; place-items: center; margin: auto; color: #d99cff; font-size: 11px; font-weight: 900; }
.step-icon { font-size: 32px; margin: 12px 0 5px; }
.step h3 { font-size: 13px; }
.step p { color: var(--muted); font-size: 10px; }
.step-arrow { color: #6f55ff; font-size: 26px; padding-top: 32px; }

/* CTA */
.cta-section { padding-top: 30px; }
.cta-box { background: linear-gradient(105deg, #7d22ff, #147cff); }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* FAQ */
.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 10px; }
.faq {
  background: rgba(14,11,27,.9);
  border: 1px solid rgba(160,96,255,.22);
  border-radius: 15px;
  overflow: hidden;
}
.faq summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 800; font-size: 14px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; float:right; color:#c35cff; font-size:20px; }
.faq[open] summary::after { content:"−"; }
.faq p { color: var(--muted); font-size: 13px; padding: 0 20px 18px; }

/* FOOTER */
.footer { background: #03030a; border-top: 1px solid rgba(161,103,255,.2); padding-top: 55px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1fr; gap: 45px; padding-bottom: 40px; }
.footer-brand img { width: 190px; height: 52px; object-fit: contain; mix-blend-mode: screen; }
.footer p, .footer a { display: block; color: #8f899d; font-size: 12px; margin-top: 8px; }
.footer strong { display: block; color: #c95dff; margin-top: 14px; font-size: 12px; }
.footer h3 { font-size: 13px; margin-bottom: 12px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; gap: 15px; color: #686273; font-size: 10px; }

/* WHATSAPP */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: #22c975; color: #04150c;
  box-shadow: 0 12px 35px rgba(0,0,0,.4); font-size: 26px; z-index: 1100;
}

/* ANIMATION */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1050px) {
  .nav-menu { gap: 16px; }
  .highlight-grid { grid-template-columns: repeat(3,1fr); }
  .highlight-card:first-child { border-radius: 24px 0 0 0; }
  .highlight-card:last-child { border-radius: 0 0 24px 0; }
  .packages { grid-template-columns: repeat(3,1fr); }
  .value-list { grid-template-columns: repeat(2,1fr); }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 680px); }
  .section { padding: 75px 0; }

  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute; left: 14px; right: 14px; top: 70px;
    display: none; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px; background: rgba(8,7,17,.97); border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px; }
  .nav-cta { text-align: center; margin-top: 4px; }

  .hero { padding-top: 45px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin: auto; }
  .mini-points, .hero-actions { justify-content: center; }
  .hero-visual { min-height: 390px; }
  .family-img { height: 390px; }
  .bot-badge { right: 0; bottom: 15px; width: 190px; }

  .highlight-grid { grid-template-columns: repeat(2,1fr); }
  .highlight-card:first-child { border-radius: 24px 0 0 0; }
  .highlight-card:nth-child(2) { border-radius: 0 24px 0 0; }
  .highlight-card:nth-child(5) { border-radius: 0 0 0 24px; }
  .highlight-card:last-child { border-radius: 0 0 24px 0; }

  .packages { grid-template-columns: repeat(2,1fr); }
  .use-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .vision-grid { grid-template-columns: 1fr; }
  .coverage-box, .cta-box { flex-direction: column; align-items: flex-start; padding: 30px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 540px) {
  .brand img { width: 145px; }
  .hero h1 { font-size: 42px; letter-spacing: -1.5px; }
  .hero-text { font-size: 14px; }
  .hero-visual { min-height: 320px; }
  .family-img { height: 320px; border-radius: 24px; }
  .bot-badge { width: 170px; font-size: 10px; }
  .highlight-grid, .packages, .value-list, .use-grid, .footer-grid { grid-template-columns: 1fr; }
  .highlight-card, .highlight-card:first-child, .highlight-card:nth-child(2), .highlight-card:nth-child(5), .highlight-card:last-child { border-radius: 0; }
  .highlight-card:first-child { border-radius: 24px 24px 0 0; }
  .highlight-card:last-child { border-radius: 0 0 24px 24px; }
  .values-panel { padding: 26px 20px; }
  .coverage-box h2, .cta-box h2, .values-intro h2 { font-size: 28px; }
  .rating-heading h3 { font-size: 24px; }
  .rating-score { flex-wrap: wrap; justify-content: center; border-radius: 18px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}
