﻿:root {
  --brand: #20c997;
  --brand-2: #2aa7ff;
  --brand-3: #78ffb9;
  --wa: #25d366;

  --bg: #071018;
  --bg-2: #08141f;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #eaf2f7;
  --muted: rgba(233, 242, 247, 0.76);

  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 26px;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);

  --max: 1240px;
  --header-h: 86px;
  --header-h-compact: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 8% -10%, rgba(42, 167, 255, 0.19), transparent 58%),
    radial-gradient(980px 420px at 88% 2%, rgba(32, 201, 151, 0.16), transparent 55%),
    radial-gradient(1200px 600px at 48% 120%, rgba(120, 255, 185, 0.09), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 10px;
  top: 10px;
  transform: translateY(-150%);
  z-index: 200;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  background: #0f2334;
  border: 1px solid var(--stroke);
  color: var(--text);
}

.skip-link:focus {
  transform: translateY(0);
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(900px 500px at 50% 0, rgba(0, 0, 0, 0.85), transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
  background: rgba(7, 16, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 16, 24, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height 0.24s ease;
}

.site-header.scrolled .nav-wrap {
  min-height: var(--header-h-compact);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 248px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, rgba(42, 167, 255, 0.95), rgba(32, 201, 151, 0.86));
  box-shadow: var(--shadow-sm);
  transition: width 0.24s ease, height 0.24s ease, border-radius 0.24s ease;
}

.site-header.scrolled .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
  transition: opacity 0.2s ease;
}

.site-header.scrolled .brand-text small {
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.35rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.desktop-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(233, 242, 247, 0.9);
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 0.72rem;
  white-space: nowrap;
  transition: 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(42, 167, 255, 0.16);
  border: 1px solid rgba(42, 167, 255, 0.28);
}

.nav-more {
  position: relative;
}

.nav-more-btn {
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(233, 242, 247, 0.9);
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 0.72rem;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.nav-more-btn::after {
  content: " \25BE";
  font-size: 0.64rem;
}

.nav-more-btn:hover,
.nav-more.open .nav-more-btn {
  background: rgba(42, 167, 255, 0.16);
  border-color: rgba(42, 167, 255, 0.28);
}

.nav-more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 220px;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 16, 24, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-more.open .nav-more-menu {
  display: grid;
}

.nav-more-menu a {
  padding: 0.55rem 0.65rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.header-chip {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(233, 242, 247, 0.92);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.46rem 0.72rem;
}

.mobile-nav {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 0.75rem;
  display: none;
  padding: 0.7rem;
  border-radius: var(--radius);
  background: rgba(7, 16, 24, 0.95);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}

.mobile-nav.open {
  display: grid;
  gap: 0.5rem;
}

.mobile-nav a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-nav-legal {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.1rem;
}

.mobile-nav-legal summary {
  list-style: none;
  cursor: pointer;
  padding: 0.62rem 0.7rem;
  border-radius: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-3);
  font-weight: 800;
}

.mobile-nav-legal summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-legal[open] summary {
  background: rgba(42, 167, 255, 0.12);
  border: 1px solid rgba(42, 167, 255, 0.2);
}

.mobile-nav-group {
  margin-top: 0.35rem;
  padding: 0.12rem 0.2rem 0.2rem;
  display: grid;
  gap: 0.35rem;
}

.mobile-nav-group a {
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 3.4rem 0;
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.hero {
  padding-top: 0;
}

.hero-media {
  min-height: clamp(360px, 50vw, 580px);
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.16), rgba(7, 16, 24, 0.86)),
    url("../img/hero.jpg") center 22% / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 230px at 14% 0, rgba(42, 167, 255, 0.12), transparent 62%),
    radial-gradient(680px 220px at 92% 12%, rgba(32, 201, 151, 0.1), transparent 62%);
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(7, 16, 24, 0), rgba(7, 16, 24, 0.92));
}

.hero-content {
  margin-top: -346px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-inline: auto;
  justify-items: start;
}

.card-glass {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 220px at 18% 0, rgba(42, 167, 255, 0.1), transparent 64%),
    var(--panel);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  padding: clamp(1rem, 1.3vw, 1.25rem);
}

.hero-main h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-main p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 54ch;
}

.hero-main {
  display: grid;
  gap: 0.85rem;
  width: min(100%, 760px);
  margin-left: -18px;
}

.hero-main-clean {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 0.4rem;
}

.hero-headline {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  justify-items: start;
}

.hero-topline {
  margin: 0;
  color: rgba(233, 242, 247, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-actions,
.action-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.hero-actions-main {
  margin-top: 0.2rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand-3);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.plan-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  transition: 0.2s ease;
}

.plan-card.featured {
  border-color: rgba(32, 201, 151, 0.5);
  background:
    radial-gradient(360px 170px at 80% 0, rgba(32, 201, 151, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.05);
}

.plan-card.recommended {
  border-color: rgba(42, 167, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(42, 167, 255, 0.12), var(--shadow-sm);
}

.plan-card.is-hidden {
  display: none;
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.36rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(233, 242, 247, 0.9);
}

.price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price small {
  font-size: 0.85rem;
  color: var(--muted);
}

.plan-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  display: grid;
  gap: 0.35rem;
}

.plan-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.chip-group {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.chip-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(233, 242, 247, 0.92);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.42rem 0.68rem;
  cursor: pointer;
  transition: 0.15s ease;
}

.chip-btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.chip-btn.active {
  border-color: rgba(42, 167, 255, 0.45);
  background: rgba(42, 167, 255, 0.2);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 0.9rem;
}

.advisor-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.advisor-advanced {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
}

.advisor-advanced > summary {
  font-size: 0.84rem;
}

.advisor-advanced[open] > summary {
  margin-bottom: 0.6rem;
}

.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.toggle-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.55rem 0.6rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.toggle-item input {
  width: 16px;
  height: 16px;
  margin-top: 0.16rem;
}

.quick-grid {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.quick-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem;
  display: grid;
  gap: 0.22rem;
  transition: 0.15s ease;
}

.quick-item strong {
  font-size: 0.9rem;
}

.quick-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

.quick-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-brief-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.service-intro {
  max-width: 62ch;
}

.service-brief {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    radial-gradient(320px 160px at 18% 0%, rgba(42, 167, 255, 0.1), transparent 66%),
    rgba(255, 255, 255, 0.03);
  padding: 0.82rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.service-brief h3 {
  margin: 0;
  font-size: 1rem;
}

.service-brief p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.service-brief .btn {
  margin-top: 0.15rem;
  justify-self: start;
}

.service-kicker {
  margin: 0;
  color: var(--brand-3);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.service-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card div {
  padding: 0.9rem;
}

.service-card p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.service-card.iconic {
  grid-template-rows: auto;
  padding: 0.95rem;
  gap: 0.65rem;
  background:
    radial-gradient(340px 160px at 18% 0%, rgba(42, 167, 255, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.04);
}

.service-card.iconic > div {
  padding: 0;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 1px solid rgba(42, 167, 255, 0.34);
  background: rgba(42, 167, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.service-tags {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.32rem;
}

.service-tags li {
  color: var(--muted);
  font-size: 0.82rem;
}

.text-link {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--brand-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link::after {
  content: "↗";
  font-size: 0.74rem;
}

.service-showcase {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 0.8rem;
}

.service-info .steps {
  margin-top: 0.8rem;
}

.service-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.coverage-grid,
.pqr-grid,
.compliance-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.9rem;
}

.steps {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.6rem;
}

.steps li p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pqr-form {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.65rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(233, 242, 247, 0.92);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  padding: 0.7rem 0.75rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(42, 167, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(42, 167, 255, 0.14);
}

textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.6rem;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 0.15rem;
}

.consent span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.status-panel {
  border: 1px solid rgba(32, 201, 151, 0.35);
  background: rgba(32, 201, 151, 0.11);
  border-radius: 12px;
  padding: 0.7rem;
  display: grid;
  gap: 0.35rem;
}

.status-panel.is-neutral {
  border-color: rgba(42, 167, 255, 0.34);
  background: rgba(42, 167, 255, 0.1);
}

.status-panel.is-warning {
  border-color: rgba(255, 196, 107, 0.42);
  background: rgba(255, 196, 107, 0.12);
}

.status-panel.is-error {
  border-color: rgba(255, 107, 107, 0.45);
  background: rgba(255, 107, 107, 0.12);
}

.status-panel p {
  margin: 0;
  color: rgba(233, 242, 247, 0.93);
  font-size: 0.8rem;
}

.status-panel code {
  padding: 0.08rem 0.35rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
}

.service-status-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.service-status-chip.is-active {
  color: #8ef0c3;
  border-color: rgba(32, 201, 151, 0.55);
  background: rgba(32, 201, 151, 0.14);
}

.service-status-chip.is-suspended {
  color: #ffd18b;
  border-color: rgba(255, 193, 107, 0.55);
  background: rgba(255, 193, 107, 0.14);
}

.service-status-chip.is-neutral {
  color: #d8e6ee;
  border-color: rgba(216, 230, 238, 0.38);
  background: rgba(216, 230, 238, 0.12);
}

.helper {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.pqr-aside {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.billing-report {
  display: grid;
  gap: 0.65rem;
}

.billing-report summary {
  margin-bottom: 0.25rem;
}

.billing-row {
  margin-top: 0.35rem;
}

.billing-report textarea {
  min-height: 84px;
  resize: vertical;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
}

details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.list-clean {
  margin: 0.85rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}

.list-clean.numbered {
  padding-left: 1.1rem;
}

.list-clean strong {
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 0 2rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  color: rgba(233, 242, 247, 0.7);
  font-size: 0.82rem;
}

.footer-wrap nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-wrap nav a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.15s ease, background 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  border: none;
  color: #05131d;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.98), rgba(42, 167, 255, 0.88));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.btn-ghost {
  background: transparent;
}

.btn-wa {
  border: none;
  color: #062211;
  background: linear-gradient(135deg, var(--wa), rgba(32, 201, 151, 0.95));
}

.menu-btn {
  display: none;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
}

.wa-float a {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--wa), rgba(32, 201, 151, 0.95));
  box-shadow: var(--shadow-sm);
}

.mobile-quickbar {
  display: none;
}

.admin-panel[hidden] {
  display: none;
}

.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 13, 0.72);
  backdrop-filter: blur(4px);
}

.admin-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100%);
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 16, 24, 0.97);
  padding: 1rem;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.admin-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.6rem;
}

.admin-head h3 {
  margin: 0;
}

.admin-rows {
  display: grid;
  gap: 0.65rem;
}

.admin-row {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.5rem;
}

.admin-row-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.admin-row-head strong {
  font-size: 0.9rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0.5rem;
}

.admin-grid .field {
  font-size: 0.75rem;
}

.admin-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.note-admin {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.note-admin code {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 7px;
  padding: 0.1rem 0.3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.5s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .header-chip {
    display: none;
  }

  .desktop-nav a,
  .nav-more-btn {
    font-size: 0.72rem;
    padding: 0.5rem 0.62rem;
  }
}

@media (max-width: 1240px) {
  .brand-text small {
    display: none;
  }
}

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

  .menu-btn {
    display: inline-flex;
  }

  .hero-content,
  .plan-grid,
  .simulator-grid,
  .service-grid,
  .service-showcase,
  .coverage-grid,
  .pqr-grid,
  .compliance-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    margin-top: -252px;
    max-width: 100%;
  }

  .service-brief-grid {
    grid-template-columns: 1fr;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 2.7rem 0;
  }

  .hero-media {
    min-height: 410px;
    background-position: center 30%;
  }

  .hero-content {
    margin-top: -186px;
  }

  .hero-main {
    margin-left: -6px;
  }

  .hero-main h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-topline {
    font-size: 0.66rem;
  }

  .service-brief p {
    font-size: 0.82rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .toggle-row {
    grid-template-columns: 1fr;
  }

  .plan-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .brand-text small {
    display: none;
  }

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

  .mobile-quickbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 85;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(7, 16, 24, 0.94);
    backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .mobile-quickbar a {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.7rem 0.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-quickbar a:last-child {
    border-right: 0;
    background: rgba(32, 201, 151, 0.16);
  }

  .wa-float {
    bottom: 84px;
  }

  body {
    padding-bottom: 86px;
  }
}
