/* ============================================================
   BARS — Company Profile
   Modern animated one-page website
   ============================================================ */

:root {
  color-scheme: dark;
  --navy: #012258;
  --navy-2: #0b1f44;
  --ink: #050d1d;
  --ink-2: #0b1220;
  --blue: #1091df;
  --blue-2: #4fc3f7;
  --sky: #91d5f9;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --card-dark: rgba(255, 255, 255, 0.045);
  --border-dark: rgba(255, 255, 255, 0.09);
  --grad: linear-gradient(135deg, #1091df 0%, #4fc3f7 100%);
  --shadow-lg: 0 30px 80px -20px rgba(2, 20, 60, 0.55);
  --radius: 20px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* --- theme tokens (dark default) --- */
  --bg: #050d1d;
  --bg-2: #0b1220;
  --surface: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.09);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.62);
  --on-accent: #04234a;
  --tag: var(--blue-2);
  --link-hover: var(--blue-2);
  --brand-sub: var(--blue-2);
  --brand-cv: var(--sky);
  --eyebrow: var(--sky);
  --nav-link: rgba(255, 255, 255, 0.82);
  --ghost-bg: rgba(255, 255, 255, 0.04);
  --ghost-border: rgba(255, 255, 255, 0.28);
  --nav-surface: rgba(5, 13, 29, 0.72);
  --drawer-bg: rgba(5, 13, 29, 0.97);
  --chip-bg: rgba(5, 13, 29, 0.85);
  --grid-line: rgba(255, 255, 255, 0.045);
  --track: rgba(255, 255, 255, 0.1);
  --hint-border: rgba(255, 255, 255, 0.5);
  --hero-bg:
    radial-gradient(1000px 600px at 75% 20%, rgba(16, 145, 223, 0.22), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(1, 34, 88, 0.7), transparent 60%),
    linear-gradient(180deg, #071125, #030812 70%);
  --hero-title-grad: linear-gradient(120deg, #4fc3f7, #1091df 45%, #7ee1ff);
  --footer-bg:
    radial-gradient(900px 400px at 80% 0%, rgba(16, 145, 223, 0.14), transparent 60%),
    linear-gradient(180deg, #020610, #01040c);
}

/* ---------- Light theme ---------- */
[data-theme="light"] {
  color-scheme: light;
  --bg: #eef2f8;
  --bg-2: #e3e9f2;
  --surface: #ffffff;
  --border: rgba(1, 34, 88, 0.12);
  --text: #012a5e;
  --text-muted: #54657f;
  --tag: #0a63a8;
  --link-hover: #0a63a8;
  --brand-sub: #0a63a8;
  --brand-cv: #0a63a8;
  --eyebrow: #0a63a8;
  --nav-link: rgba(1, 34, 88, 0.82);
  --ghost-bg: rgba(1, 34, 88, 0.05);
  --ghost-border: rgba(1, 34, 88, 0.25);
  --nav-surface: rgba(238, 242, 248, 0.82);
  --drawer-bg: rgba(255, 255, 255, 0.97);
  --chip-bg: rgba(255, 255, 255, 0.92);
  --grid-line: rgba(1, 34, 88, 0.06);
  --track: rgba(1, 34, 88, 0.12);
  --hint-border: rgba(1, 34, 88, 0.4);
  --hero-bg:
    radial-gradient(1000px 600px at 75% 20%, rgba(16, 145, 223, 0.12), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(1, 34, 88, 0.06), transparent 60%),
    linear-gradient(180deg, #f7fafd, #e9eff8 70%);
  --hero-title-grad: linear-gradient(120deg, #0a6fc0, #0a63a8 45%, #06529a);
  --footer-bg:
    radial-gradient(900px 400px at 80% 0%, rgba(16, 145, 223, 0.10), transparent 60%),
    linear-gradient(180deg, #edf2f9, #e3eaf4);
}

[data-theme="light"] .brand-logo,
[data-theme="light"] .hero-eyebrow-logo,
[data-theme="light"] .preloader-logo {
  filter: invert(1) hue-rotate(200deg) drop-shadow(0 4px 10px rgba(16, 145, 223, 0.2));
}
[data-theme="light"] .brand:hover .brand-logo {
  filter: invert(1) hue-rotate(200deg) drop-shadow(0 6px 18px rgba(79, 195, 247, 0.35));
}
[data-theme="light"] .solusi-num {
  color: rgba(1, 34, 88, 0.14);
  -webkit-text-stroke: 1px rgba(1, 34, 88, 0.5);
  text-stroke: 1px rgba(1, 34, 88, 0.5);
}
[data-theme="light"] .hero-badge,
[data-theme="light"] .tentang-img-tag,
[data-theme="light"] .radar-chip,
[data-theme="light"] .logo-chip span {
  color: var(--white);
}

/* smooth theme transitions on color-bearing surfaces */
body, .nav, .section, .hero, .starlink, .footer,
.wa-float-tooltip, .to-top, .brand-text, .theme-toggle {
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section--dark {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(16, 145, 223, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 18px;
}
.section-tag::before,
.section-tag::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tag));
  opacity: 0.7;
}
.section-tag::after { background: linear-gradient(90deg, var(--tag), transparent); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-desc {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--grad);
  color: var(--on-accent);
  box-shadow: 0 12px 34px -10px rgba(16, 145, 223, 0.65);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 46px -12px rgba(16, 145, 223, 0.85); }
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost {
  border: 1px solid var(--ghost-border);
  color: var(--text);
  background: var(--ghost-bg);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--blue-2); box-shadow: 0 14px 36px -14px rgba(79, 195, 247, 0.5); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 28px rgba(16, 145, 223, 0.5));
  animation: preGlow 1.6s ease-in-out infinite;
}
@keyframes preGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.preloader-bar {
  margin: 22px auto 0;
  width: 200px;
  height: 3px;
  border-radius: 3px;
  background: var(--track);
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: var(--grad);
  animation: preLoad 1.1s var(--ease) infinite;
}
@keyframes preLoad { 0% { transform: translateX(-110%);} 100% { transform: translateX(260%);} }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 22px 0;
}
.nav.scrolled {
  padding: 12px 0;
  background: var(--nav-surface);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: min(1240px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-cv {
  align-self: flex-start;
  margin-top: 3px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-cv);
  opacity: 0.8;
}
.brand-text-main {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.bt-top {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.bt-bottom {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-sub);
}
.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(16, 145, 223, 0.35));
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 6px 20px rgba(79, 195, 247, 0.6));
  transform: translateY(-1px);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nav-link);
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--grad);
  color: var(--on-accent);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(16, 145, 223, 0.7); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  border-radius: 3px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease),
              color 0.35s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.theme-toggle:hover {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 6px rgba(79, 195, 247, 0.12);
  transform: translateY(-2px);
}
.theme-toggle .theme-icon {
  position: absolute;
  width: 19px;
  height: 19px;
  transition: opacity 0.3s var(--ease), transform 0.5s var(--ease);
}
.theme-icon--moon { opacity: 1; transform: none; }
.theme-icon--sun { opacity: 0; transform: rotate(-90deg) scale(0.4); }
[data-theme="light"] .theme-icon--moon { opacity: 0; transform: rotate(90deg) scale(0.4); }
[data-theme="light"] .theme-icon--sun { opacity: 1; transform: none; }
.theme-toggle--drawer { display: none; margin-top: 8px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background: var(--hero-bg);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.75; }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; animation: float 9s ease-in-out infinite; }
.hero-glow--a { width: 420px; height: 420px; background: rgba(16, 145, 223, 0.4); top: -120px; right: -80px; }
.hero-glow--b { width: 380px; height: 380px; background: rgba(1, 34, 88, 0.9); bottom: -140px; left: -100px; animation-delay: -4.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eyebrow);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(145, 213, 249, 0.25);
  background: rgba(16, 145, 223, 0.08);
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(79, 195, 247, 0.5));
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.hero-title-line { display: block; }
.hero-title-gradient {
  display: block;
  background: var(--hero-title-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 24px;
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.08rem;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }

/* hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual-frame {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(79, 195, 247, 0.12);
  transform-style: preserve-3d;
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(79, 195, 247, 0.28), transparent 45%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(5, 13, 29, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
  animation: badgeIn 1s var(--ease) both;
}
.hero-badge--live { top: 18px; left: 18px; }
.hero-badge--speed { bottom: 18px; right: 18px; animation-delay: 0.25s; }
.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2ee6a8;
  box-shadow: 0 0 0 0 rgba(46, 230, 168, 0.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(46, 230, 168, 0.6);} 70% { box-shadow: 0 0 0 10px rgba(46, 230, 168, 0);} 100% { box-shadow: 0 0 0 0 rgba(46, 230, 168, 0);} }
@keyframes badgeIn { from { opacity: 0; transform: translateY(14px) scale(0.9);} to { opacity: 1; transform: none;} }

.hero-orbit { position: absolute; inset: -40px; pointer-events: none; }
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 14px 3px rgba(79, 195, 247, 0.55);
  top: 50%; left: 50%;
  animation: orbit 14s linear infinite;
}
.orbit-dot--2 { width: 7px; height: 7px; animation-duration: 9s; animation-delay: -3s; }
.orbit-dot--3 { width: 5px; height: 5px; animation-duration: 20s; animation-delay: -7s; }
@keyframes orbit {
  from { transform: rotate(0deg) translateX(calc(min(52vw, 380px))) rotate(0deg); }
  to { transform: rotate(360deg) translateX(calc(min(52vw, 380px))) rotate(-360deg); }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.scroll-hint:hover { opacity: 1; }
.scroll-hint-mouse {
  display: block;
  width: 26px; height: 42px;
  border: 2px solid var(--hint-border);
  border-radius: 999px;
  position: relative;
}
.scroll-hint-mouse i {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--blue-2);
  animation: scrollWheel 1.8s var(--ease) infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Reveal system ---------- */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.js-ready .reveal.in { opacity: 1; transform: none; }
.reveal { opacity: 1; transform: none; }

/* ---------- TENTANG ---------- */
.tentang-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.tentang-img { position: relative; }
.tentang-img img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -26px rgba(0, 0, 0, 0.65);
}
.tentang-img::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px dashed rgba(16, 145, 223, 0.35);
  border-radius: var(--radius);
  z-index: -1;
  animation: dashSpin 18s linear infinite;
}
@keyframes dashSpin { to { transform: rotate(360deg);} }
.tentang-img-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(5, 13, 29, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}

.tentang-copy p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; }
.tentang-copy strong { color: var(--text); }
.tentang-copy em { color: var(--link-hover); font-style: normal; font-weight: 600; }

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 22px 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #07356b, #0b4a8f);
  border: 1px solid rgba(79, 195, 247, 0.45);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.55);
}
.logo-chip-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(79, 195, 247, 0.45));
}
.logo-chip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.tentang-points { display: grid; gap: 12px; margin: 26px 0 30px; }
.tentang-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tentang-point:hover { transform: translateX(8px); box-shadow: 0 16px 34px -16px rgba(16, 145, 223, 0.4); }
.tp-icon { font-size: 1.25rem; }

.klien-box {
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 145, 223, 0.16), rgba(79, 195, 247, 0.08));
  border: 1px solid rgba(79, 195, 247, 0.3);
}
.klien-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.klien-box p { color: var(--text-muted); margin: 0; font-size: 0.98rem; }

/* ---------- VISI & MISI ---------- */
.visi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.visi-card {
  position: relative;
  padding: 40px 38px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: border-color 0.4s, transform 0.3s;
  transform-style: preserve-3d;
}
.visi-card:hover { border-color: rgba(79, 195, 247, 0.4); }
.card-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 16px;
  background: var(--grad);
  box-shadow: 0 12px 30px -10px rgba(16, 145, 223, 0.6);
  margin-bottom: 22px;
  animation: iconPulse 3.4s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 12px 30px -10px rgba(16, 145, 223, 0.6); }
  50% { box-shadow: 0 12px 44px -8px rgba(79, 195, 247, 0.9); }
}
.visi-card h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.visi-card > p { color: var(--text-muted); font-size: 0.98rem; }

.misi-list { margin-top: 24px; display: grid; gap: 14px; }
.misi-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), background 0.35s;
}
.misi-list li:hover { transform: translateX(6px); background: rgba(16, 145, 223, 0.08); }
.misi-badge {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--on-accent);
  background: var(--grad);
}
.misi-badge--r { background: linear-gradient(135deg, #4fc3f7, #1091df); }
.misi-badge--i { background: linear-gradient(135deg, #7ee1ff, #4fc3f7); }
.misi-list strong { color: var(--text); font-size: 0.98rem; }
.misi-list p { color: var(--text-muted); font-size: 0.9rem; margin-top: 2px; }

/* ---------- LEGALITAS ---------- */
.legal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.legal-card {
  position: relative;
  padding: 32px 26px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.legal-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.legal-card:hover { transform: translateY(-8px); border-color: rgba(79, 195, 247, 0.4); box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.55); }
.legal-card:hover::before { transform: scaleX(1); }
.legal-icon { font-size: 1.7rem; margin-bottom: 16px; }
.legal-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.legal-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--tag);
  font-size: 1rem;
  line-height: 1.4;
}
.legal-card p { color: var(--text-muted); font-size: 0.9rem; }
.legal-card small { display: block; color: var(--text-muted); opacity: 0.85; font-size: 0.8rem; margin-top: 10px; }

/* ---------- SOLUSI ---------- */
.solusi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.solusi-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s, transform 0.35s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d;
}
.solusi-card:hover { border-color: rgba(79, 195, 247, 0.45); box-shadow: 0 30px 70px -26px rgba(16, 145, 223, 0.5); }
.solusi-media { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.solusi-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.solusi-card:hover .solusi-media img { transform: scale(1.12); }
.solusi-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 13, 29, 0.85));
}
.solusi-num {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.16);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  text-stroke: 1px rgba(255, 255, 255, 0.5);
}
.solusi-body { padding: 28px 26px 30px; }
.solusi-body h3 { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
.solusi-body > p { color: var(--text-muted); font-size: 0.94rem; }
.solusi-list { margin-top: 18px; display: grid; gap: 10px; }
.solusi-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.solusi-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(79, 195, 247, 0.6);
}

/* ---------- LAYANAN ---------- */
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.layanan-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform-style: preserve-3d;
}
.layanan-card:hover { transform: translateY(-8px); box-shadow: 0 26px 56px -24px rgba(0, 0, 0, 0.55); }
.layanan-glow {
  position: absolute;
  top: -70px; right: -70px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 145, 223, 0.28), transparent 70%);
  transition: transform 0.6s var(--ease);
}
.layanan-card:hover .layanan-glow { transform: scale(1.6); }
.layanan-card h3 { font-family: var(--font-head); font-size: 1.28rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.layanan-card p { color: var(--text-muted); font-size: 0.95rem; }
.layanan-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.layanan-tags li {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tag);
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.28);
}

/* ---------- STARLINK ---------- */
.starlink {
  background:
    radial-gradient(900px 600px at 10% 30%, rgba(16, 145, 223, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.starlink-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.starlink-visual { display: flex; justify-content: center; }
.radar-wrap { position: relative; width: min(440px, 100%); aspect-ratio: 1; }
.radar-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.35);
  box-shadow: 0 0 0 10px rgba(5, 13, 29, 0.6), 0 30px 80px -20px rgba(16, 145, 223, 0.55);
  position: relative;
  z-index: 2;
}
.radar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.3);
  animation: radar 3.6s var(--ease) infinite;
  z-index: 1;
}
.radar-ring--2 { animation-delay: 1.2s; }
.radar-ring--3 { animation-delay: 2.4s; }
@keyframes radar {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}
.radar-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 12px;
  margin: -6px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 18px 5px rgba(79, 195, 247, 0.7);
  z-index: 3;
}
.radar-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(5, 13, 29, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(79, 195, 247, 0.4);
  animation: chipFloat 5s ease-in-out infinite;
}
.radar-chip--a { top: 6%; right: -6%; }
.radar-chip--b { bottom: 8%; left: -4%; animation-delay: -2.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.starlink-copy .section-tag { margin-bottom: 14px; }
.starlink-copy .section-title { margin-bottom: 22px; }
.starlink-copy > p { color: var(--text-muted); font-size: 1.02rem; }
.starlink-features { margin-top: 32px; display: grid; gap: 18px; }
.starlink-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.starlink-feature:hover { transform: translateX(8px); border-color: rgba(79, 195, 247, 0.4); }
.sf-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border-radius: 14px;
  background: var(--grad);
  box-shadow: 0 10px 26px -8px rgba(16, 145, 223, 0.6);
}
.starlink-feature h4 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.starlink-feature p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- MENGAPA ---------- */
.mengapa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mengapa-card {
  position: relative;
  padding: 44px 34px 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s var(--ease);
  transform-style: preserve-3d;
}
.mengapa-card:hover { border-color: rgba(79, 195, 247, 0.45); box-shadow: 0 30px 70px -28px rgba(16, 145, 223, 0.55); }
.mengapa-num {
  position: absolute;
  top: 14px; right: 20px;
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(79, 195, 247, 0.35);
  text-stroke: 1px rgba(79, 195, 247, 0.35);
  transition: -webkit-text-stroke 0.4s;
}
.mengapa-card:hover .mengapa-num { -webkit-text-stroke: 1px rgba(79, 195, 247, 0.9); }
.mengapa-icon {
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  border-radius: 18px;
  background: var(--grad);
  box-shadow: 0 14px 34px -12px rgba(16, 145, 223, 0.7);
  margin-bottom: 24px;
  animation: iconPulse 3.6s ease-in-out infinite;
}
.mengapa-card h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.mengapa-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline-progress {
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}
.timeline-progress span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--grad);
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(16, 145, 223, 0.5);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -48px; top: 2px;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--on-accent);
  background: var(--grad);
  border: 4px solid #fff;
  box-shadow: 0 0 0 5px rgba(8, 113, 196, 0.15), 0 10px 26px -8px rgba(16, 145, 223, 0.7);
  z-index: 2;
}
.timeline-card {
  padding: 26px 30px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.timeline-item:hover .timeline-card { transform: translateX(10px); box-shadow: 0 22px 46px -22px rgba(0, 0, 0, 0.55); }
.timeline-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 90px 0 0;
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.footer-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  padding: 46px 40px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.footer-cta h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.footer-cta p { color: var(--text-muted); margin-bottom: 26px; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-icon { flex-shrink: 0; }
.icon-wa { color: #25d366; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.9fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.94rem; margin: 6px 0 0; }
.brand-cop { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-2); }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col li, .footer-col p { color: var(--text-muted); font-size: 0.92rem; }
.contact-item { transition: transform 0.3s var(--ease); }
.contact-item:hover { transform: translateX(4px); }
.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.contact-item a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
.contact-item a:hover::after { width: 100%; }
.contact-icon { flex-shrink: 0; color: var(--link-hover); }
.contact-wa .icon-wa { color: #25d366; }
.contact-wa span { font-weight: 600; }
.footer-col a { position: relative; transition: color 0.3s; }
.footer-col a:hover { color: var(--link-hover); }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 24px; bottom: 158px;
  z-index: 400;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.4);
  background: var(--chip-bg);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad); color: var(--on-accent); box-shadow: 0 12px 30px -8px rgba(16, 145, 223, 0.7); }

/* ---------- Floating contact buttons ---------- */
.wa-float, .mail-float {
  position: fixed;
  right: 18px;
  z-index: 450;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float { bottom: 24px; background: linear-gradient(135deg, #25d366, #1da851); }
.mail-float { bottom: 92px; background: var(--grad); }
.wa-float:hover, .mail-float:hover { transform: translateY(-4px) scale(1.06); }
.wa-float:hover { box-shadow: 0 20px 44px -10px rgba(37, 211, 102, 0.55); }
.mail-float:hover { box-shadow: 0 20px 44px -10px rgba(16, 145, 223, 0.6); }
.wa-float svg, .mail-float svg { position: relative; z-index: 1; }
.wa-float::before, .mail-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: waPulse 2.4s var(--ease) infinite;
}
.wa-float::before { background: rgba(37, 211, 102, 0.55); }
.mail-float::before { background: rgba(79, 195, 247, 0.5); animation-delay: 1.2s; }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--white);
  background: rgba(5, 13, 29, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.wa-float:hover .wa-float-tooltip,
.mail-float:hover .wa-float-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Tilt cards ---------- */
.card-tilt { will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual-frame { width: min(400px, 92%); }
  .solusi-grid, .layanan-grid, .mengapa-grid { grid-template-columns: 1fr 1fr; }
  .legal-grid { grid-template-columns: 1fr 1fr; }
  .tentang-grid, .starlink-grid { grid-template-columns: 1fr; gap: 50px; }
  .visi-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .brand { gap: 10px; }
  .brand-cv { font-size: 0.54rem; }
  .bt-top { font-size: 0.95rem; }
  .bt-bottom { font-size: 0.52rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: var(--drawer-bg);
    backdrop-filter: blur(18px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 480;
  }
  .nav-links.open { transform: translateX(0); }
  .theme-toggle--drawer { display: inline-flex; }
  .nav-links a { font-size: 1.05rem; }
  .solusi-grid, .layanan-grid, .mengapa-grid, .legal-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-eyebrow-logo { height: 32px; }
  .logo-chip { padding: 12px 16px 12px 14px; }
  .logo-chip-img { height: 42px; }
  .orbit-dot { display: none; }
  .tentang-img::after { inset: 14px -14px -14px 14px; }
  .timeline { padding-left: 0; }
  .timeline-item { padding-left: 30px; }
  .timeline-dot { left: -38px; width: 38px; height: 38px; }
  .footer-cols { grid-template-columns: 1fr; gap: 30px; }
  body { padding-bottom: 132px; }
  .wa-float, .mail-float { right: 14px; width: 48px; height: 48px; }
  .wa-float { bottom: 18px; }
  .mail-float { bottom: 74px; }
  .to-top { right: 14px; bottom: 130px; width: 44px; height: 44px; }
  .wa-float-tooltip { font-size: 0.78rem; padding: 6px 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
