:root {
  --navy: #0b1b3a;
  --navy2: #0f2656;
  --gold: #f2c94c;
  --gold2: #d9aa2a;
  --bg: #071226;
  --text: #eaf0ff;
  --muted: rgba(255, 255, 255, 1);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Helvetica Neue",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      900px 500px at 15% -10%,
      rgba(242, 201, 76, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 450px at 80% 0%,
      rgba(125, 167, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg), #050b16 70%);
  overflow-x: hidden;
}
a {
  color: inherit;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}
.muted {
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 18, 38, 0.68);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  padding: 6px;
}
.brand h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  min-width: 260px;
}
.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242, 201, 76, 0.95);
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
  will-change: transform;
  user-select: none;
  font-size: 10px;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  box-shadow: 0 14px 34px rgba(242, 201, 76, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(242, 201, 76, 0.28);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.btn-ico {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-ico svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  padding: 44px 0 26px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(15, 36, 75, 0.76),
    rgba(15, 36, 75, 0.44)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-main {
  padding: 26px 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.9);
  background: rgba(242, 201, 76, 0.95);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(242, 201, 76, 0.2);
}
.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.6px;
  line-height: 1.08;
}

.yellowhero {
  color: rgba(242, 201, 76, 0.95);
  font-weight: bold;
}
.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.bullets {
  margin: 18px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 9px;
  background: rgba(242, 201, 76, 0.95);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.micro {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-side {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-title {
  font-weight: 900;
  margin: 2px 0 0;
  font-size: 14px;
}
.side-title-yellow p {
  font-size: 20px;
  color: rgba(242, 200, 76, 1);
  font-weight: 800;
  text-align: center;
}
.side-sub {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.stat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.stat .box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px;
}
.stat .num {
  font-size: 18px;
  font-weight: 900;
  color: rgba(242, 201, 76, 0.95);
}
.stat .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.callout {
  margin-top: auto;
  border: 1px dashed rgba(242, 201, 76, 0.45);
  background: rgba(242, 201, 76, 0.1);
  border-radius: 14px;
  padding: 12px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.logoclient {
  width: 100%;
  margin-top: 10px;
}

section {
  padding: 20px 0;
  min-height: 300px;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 10px;
  color: rgba(242, 201, 76, 0.95);
  text-align: center;
}
.section-title h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.section-title p {
  margin: 0;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  text-align: justify;

  
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(12, 1fr);
}
.card {
  border: 1px solid var(--line);
  background: rgba(15, 36, 75, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.card-pad {
  padding: 18px;
}
.col-4 {
  grid-column: span 4;
}

.colebat {
  grid-column: span 12;
  margin-bottom: 10px;
}
.col-12 {
  grid-column: span 6;
  margin-bottom:10px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.service h3 {
  margin: 0;
  font-size: 15px;
}
.service p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.service .actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================================================
   SERVICE INLINE – PADDING REFINED
========================================================= */
.service-inline {
  display: flex;
  align-items: center;
  gap: 40px; /* jarak icon ↔ teks lebih lega */
  padding: 20px 20px 20px 24px; /* padding utama container */
  border-radius: 22px;
  
}

/* icon */
.service-icon {
  width: 52px;
  //height: 52px;
  font-size: 60px;
  border-radius: 16px;
  margin-bottom:10px;
  
}

/* text wrapper */
.service-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* heading */
.service-text h3 {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.25;
  color: var(--text);
}

.service-tag {
  font-size: 18px;
  font-weight: 800;
  color: rgba(242, 201, 76, 0.95);
}

/* =========================================================
   MOBILE – lebih padat tapi tetap lega
========================================================= */
@media (max-width: 520px) {
  .service-inline {
    padding: 16px 18px;
    gap: 14px;
  }

  .service-icon {
    width: 42px;
    //height: 42px;
    font-size: 30px;
    border-radius: 14px;
    padding: 2px 2px 2px 2px;
  }

  .service-text h3 {
    font-size: 12px;
    font-weight: normal;
  }

  .service-tag {
    font-size: 16px;
    font-weight: 800;
    color: rgba(242, 201, 76, 0.95);
  }
}
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(242, 201, 76, 0.28);
  background: rgba(242, 201, 76, 0.1);
  color: rgba(242, 201, 76, 0.95);
  font-size: 11px;
  font-weight: 900;
  width: fit-content;
}

.section-cta {
  margin-top: 14px;
}

.compare-wrap {
  padding: 14px;
}
.compare-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* =========================================================
   TESTIMONI – LAYOUT SPLIT (sesuai contoh gambar)
========================================================= */

#testimoni {
  padding: 96px 0;
}

/* wrapper slider */
.testi {
  position: relative;
  margin-top: 22px;
}

/* track (kalau kamu sudah pakai JS slider, ini tetap aman) */
/* =========================================================
   TESTIMONI – FIX: desktop 2 kolom, mobile 1 kolom full width
   (override CSS lama)
========================================================= */

/* track: pakai grid (bukan flex) */
.testi-track {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  overflow: hidden; /* tetap aman buat slider translateX */
  align-items: stretch;

  /* desktop: 2 card terlihat */
  grid-auto-columns: calc((100% - 18px) / 2);
}

/* card: pastikan tidak menyusut aneh */
.testi-card {
  width: 100%;
  min-width: 0; /* penting agar teks wrap dan layout stabil */
  /* hapus efek flex lama kalau masih ada */
  flex: initial;
}

/* garis pemisah */
.testi-card::before {
  content: "";
  grid-column: 2;
  background: rgba(255, 255, 255, 0.18);
}

/* ===== LEFT AREA ===== */
.testi-person {
  grid-column: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

/* avatar kotak */
.testi-person .avatar {
  width: 86px;
  height: 86px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.testi-person .avatar svg {
  width: 46px;
  height: 46px;
  fill: rgba(240, 246, 255, 0.92);
}

/* nama & role */
.testi-person .name {
  font-weight: 1000;
  font-size: 18px;
  color: rgba(240, 246, 255, 0.95);
  margin-top: 2px;
}

.testi-person .role {
  font-weight: 850;
  font-size: 13px;
  color: rgba(240, 246, 255, 0.72);
}

/* ===== RIGHT AREA ===== */
.stars {
  grid-column: 3;
  padding: 22px 26px 0;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.testi-text {
  grid-column: 3;
  margin: 0;
  padding: 10px 26px 22px;
  color: rgba(240, 246, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
  max-width: 80ch;
}

/* hide elemen lama (kalau masih ada) */
.testi-tip {
  display: none;
}

/* tombol prev/next */
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(240, 246, 255, 0.9);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.testi-nav.left {
  left: -10px;
}
.testi-nav.right {
  right: -10px;
}

/* dots */
.testi-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testi-dots button {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.testi-dots button.is-active {
  background: rgba(242, 201, 76, 0.95);
  border-color: rgba(242, 201, 76, 0.55);
}

/* =========================================================
   RESPONSIVE – mobile jadi stacked (biar tetap 100% rapi)
========================================================= */
/* mobile: 1 card full (100%) */
@media (max-width: 640px) {
  .testi-track {
    grid-auto-columns: 100%;
  }

  .testi-card {
    grid-template-columns: 1fr; /* perbaiki, cukup 1 kolom */
  }

  .testi-person {
    padding: 18px 18px 12px;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .stars {
    padding: 0 18px;
    margin-top: 6px;
    font-size: 18px;
  }
  .testi-text {
    padding: 10px 18px 18px;
    font-size: 13.5px;
    max-width: none;
  }
}

/* ==============================
   PERBANDINGAN – ENTERPRISE
============================== */

.section-compare {
  padding: 96px 0;
  background:
    radial-gradient(
      1200px 600px at 15% -10%,
      rgba(242, 201, 76, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #071226, #050b16);
}

/* HEADER */
.compare-head {
  margin-bottom: 32px;
}
.compare-title {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #f5c518;
  text-align: center;
}

  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
  text-align: center;
}

/* WRAPPER FULL WIDTH */
.compare-wrapper,
.compare-table {
  width: 100%;
  border-collapse: collapse;
}

/* CELLS */
.compare-table th,
.compare-table td {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  vertical-align: middle;
  font-size: 15.5px;
}

/* HEADER ROW */
.compare-table thead th {
  background: rgba(255, 255, 255, 0.05);
  font-size: 18px;
  font-weight: 900;
  position: relative;
}

/* LEFT COLUMN */
.compare-table .corner {
  background: rgba(255, 255, 255, 0.03);
  width: 220px;
}
.compare-table td.label {
  text-align: left;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.03);
}

/* MUAMALAH COLUMN (HIGHLIGHT) */
.compare-table th.th-mp,
.compare-table td.mp {
  background: rgba(251, 204, 61, 0.45);
  font-weight: 900;
  color: #fff;
}

/* BADGE */
.th-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5c518;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* SMALL TEXT */
.compare-table small {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.65);
}

/* ROW HOVER (ENTERPRISE FEEL) */
.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* CTA */
.compare-cta {
  margin-top: 36px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .compare-title {
    font-size: 22px;
  }
  .compare-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .section-compare {
    padding: 56px 0; /* lebih ringkas */
  }

  /* judul & deskripsi */
  .compare-title {
    font-size: 18px;
  }

  .compare-desc {
    font-size: 12.5px;
    max-width: 100%;
  }

  /* tabel */
  .compare-table th,
  .compare-table td {
    padding: 12px 10px; /* 🔥 ini kunci */
    font-size: 13px; /* 🔥 supaya muat */
  }

  /* header row */
  .compare-table thead th {
    font-size: 14px;
  }

  /* kolom kiri (label) */
  .compare-table .corner {
    width: auto; /* 🔥 buang fixed width */
    min-width: 120px; /* tetap terbaca */
  }

  .compare-table td.label {
    font-size: 13px;
  }

  /* badge */
  .th-badge {
    font-size: 10px;
    padding: 3px 8px;
    top: -12px;
  }

  /* small text */
  .compare-table small {
    font-size: 11.5px;
  }
}

/* =========================================================
   SECTION MOTTO
========================================================= */
.section-motto {
  padding: 20px 0 0px;
  background:
    radial-gradient(
      1000px 500px at 20% -10%,
      rgba(242, 201, 76, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

/* HEADER */
.motto-head {
  text-align:center;
  margin-bottom: 48px;
}

.motto-head h2 {
  margin: 20 0 12px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.5px;
  color: #f5c518;
  text-align: center;
}

.motto-head p {
  margin: 0;
  font-size: var(--fs-lead);
  line-height: 1.75;
  color: #ffffff;
  text-align: center;
  fon-size: 14px;
}

/* IMAGE FULL WIDTH */
.motto-image-full {
  width: 100%;
  margin-top: 24px;
}

.motto-image-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
  .section-motto {
    padding: 10px 0 0;
  }

  .motto-head h2 {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .motto-head {
    margin-bottom: 32px;
  }

  .motto-head h2 {
    font-size: 22px;
  }

  .motto-head p {
    font-size: 14px;
  }
}

/* FAQ */
.faq-new h2 {
  text-align: center;
  color: rgba(242, 201, 76, 0.95);
}

.faq-new p {
  text-align: center;
  color: rgba(255, 255, 255, 1);
}

.faq-align {
  text-align: center;
}
.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item:first-child {
  border-top: 0;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  color: rgba(242, 201, 76, 0.95);
  text-align: left;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  gap: 12px;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  line-height: 1.6;
  padding-right: 26px;
  font-size: 13px;
}
.faq-a-inner {
  padding: 0 0 14px;
}
.chev {
  width: 22px;
  height: 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
  background: rgba(255, 255, 255, 0.05);
  flex: 0 0 auto;
}
.faq-item[data-open="true"] .chev {
  transform: rotate(180deg);
  background: rgba(242, 201, 76, 0.16);
  border-color: rgba(242, 201, 76, 0.28);
}

footer {
  padding: 26px 0 70px;
  color: var(--muted);
  font-size: 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.foot-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 14px;
}
.foot-card b {
  color: var(--text);
}
.foot-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.foot-links a {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}
.foot-links a:hover {
  background: rgba(255, 255, 255, 0.07);
}
.copyright {
  margin-top: 10px;
  color: rgba(234, 240, 255, 0.55);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-hint {
  max-width: 260px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 18, 38, 0.78);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transform-origin: bottom right;
  animation: pop 0.45s ease both;
}
.wa-hint b {
  color: var(--text);
}
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.35);
  background: linear-gradient(
    135deg,
    rgba(242, 201, 76, 0.98),
    rgba(217, 170, 42, 0.98)
  );
  box-shadow: 0 18px 46px rgba(242, 201, 76, 0.22);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(242, 201, 76, 0.28);
}
.wa-fab-icon {
  width: 28px;
  height: 28px;
  fill: #111;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    min-width: auto;
  }
  .nav {
    display: none;
  }
  .col-4 {
    grid-column: span 6;
  }

  .colebat {
    grid-column: span 12;
    margin-bottom: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .testi-card {
    min-width: 100%;
  }
}
@media (max-width: 560px) {
  .col-4 {
    grid-column: span 6;
  }
  .colebat {
    grid-column: span 12;
    margin-bottom: 10px;
  }
  .pill {
    display: none;
  }
  .hero-main {
    padding: 22px 18px;
  }
  .testi-nav {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .reveal,
  .faq-a,
  .wa-hint {
    transition: none;
    animation: none;
  }
}

.line-hr {
  border: 0.01px solid #fffcfcba;
  margin-top: 30px;
  width: 80%;
}

.card-test {
  border: 1px solid var(--line);
  background: rgba(15, 36, 75, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  margin-bottom:10px;
  padding:10px 10px 10px 10px;
}

.card-testi{
  padding:0px 10px 0px 10px;
  font-size:11px;
 
}

.card-testi h3{
  padding:0px 10px 0px 10px;
  font-size:11px;
  font-weight:400;
 
}

.card-testi-tag{
  padding:0px 10px 0px 10px;
  font-weight: 800;
  color: rgba(242, 201, 76, 0.95);
}

.title-testi{
  font-size:20px;
  color: rgba(242, 201, 76, 0.95);
  font-weight:800;
  text-align:center;
}

.title-testi p{
  font-size:18px;
  color: rgba(255, 255, 255, 1);
  font-weight:400;
  text-align:center;
}

