/* =========================================================
   HUSHAN CREATIVE — MODERN THEME
   Palette: deep navy ink + brand green + terminal mono accents
   Type: Space Grotesk (display) / Inter (body) / JetBrains Mono (data)
========================================================= */

:root {
  --ink: #0a1220;
  --ink-2: #0f1c30;
  --ink-soft: #16233a;
  --green: #0a8f5a;
  --green-bright: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.35);
  --paper: #f5f8f7;
  --white: #ffffff;
  --text: #10192b;
  --muted: #5b6b7b;
  --muted-light: #93a4b3;
  --line: #e3e9e6;
  --line-dark: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px rgba(10, 18, 32, 0.08);
  --shadow-lg: 0 30px 70px rgba(10, 18, 32, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

a {
  color: inherit;
}

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

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

::selection {
  background: var(--green-bright);
  color: #fff;
}

/* =========================================================
   TOPBAR / NAV
========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 18, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.topbar-left {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .topbar-left::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px var(--green-glow);
  animation: pulse-dot 2.4s ease-in-out infinite;
} */

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.topbar-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.topbar-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.topbar-nav a.active {
  color: #fff;
  background: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.45;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(10, 143, 90, 0.35), transparent 55%),
    linear-gradient(100deg, rgba(10, 18, 32, 0.97) 0%, rgba(10, 18, 32, 0.9) 40%, rgba(10, 18, 32, 0.55) 68%, rgba(10, 18, 32, 0.25) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 70% 60% at 20% 30%, black, transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero-left {
  max-width: 640px;
  padding: 90px 0 70px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 30px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.status-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.logo-navbar {
  width: 110px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.hero-logo {
  width: 220px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  max-width: 560px;
}

.hero-desc {
  margin-top: 18px;
  font-size: 16px;
  color: var(--muted-light);
  max-width: 520px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.stat-item {
  min-width: 140px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s var(--ease);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--green-bright);
  background: rgba(34, 197, 94, 0.08);
}

.stat-item h3 {
  font-family: "JetBrains Mono", monospace;
  color: var(--green-bright);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item span {
  color: var(--muted-light);
  font-size: 12.5px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.02em;
}

/* =========================================================
   TRUSTED / LOGO MARQUEE
========================================================= */
.trusted {
  padding: 56px 16px 60px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trusted h2 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: scrollHorizontal 26s linear infinite;
}

.logo-track img {
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0) opacity(1);
}

@media (min-width: 768px) {
  .logo-track img { height: 52px; }
}
@media (min-width: 1024px) {
  .logo-track img { height: 60px; }
}

@keyframes scrollHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   CONTENT / SECTIONS
========================================================= */
.content {
  padding: 90px 0;
}

.content.light {
  background: var(--white);
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: left !important;
  color: var(--text) !important;
}

.card p,
.card ul {
  color: var(--muted);
  font-size: 15px;
}

.card ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.card ul li::marker {
  color: var(--green);
}

/* =========================================================
   VISI / MISI — shared light content panel
   (reused on homepage vision/mission AND on service-detail /
   product pages as a generic icon+copy panel)
========================================================= */
.visi-misi-box {
  background: var(--white);
  padding: 52px 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.visi-misi-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.visi-box h3,
.misi-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  margin-bottom: 16px;
  color: var(--green);
}

.visi-box p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.misi-box ul {
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.misi-box ul li {
  font-size: 15px;
  color: var(--muted);
}

.misi-box ul li::marker {
  color: var(--green);
}

.img-detail {
  width: 60%;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .visi-misi-grid { grid-template-columns: 1fr; }
  .visi-misi-box { padding: 36px 26px; }
  .img-detail { width: 70%; }
}

/* =========================================================
   MOTTO
========================================================= */
.center-our {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.center-our span {
  color: var(--green);
}

/* =========================================================
   PROJECT CARDS
========================================================= */
.cardds {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.cardds:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-bright);
}

.cardds h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.cardds img {
  width: 46%;
  margin: 0 auto 18px;
  border-radius: 8px;
}

.cardds p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-title {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-title-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-line {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-item a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-item a:hover {
  color: var(--green-bright);
}

.footer-copy {
  margin-top: 0;
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}

/* =========================================================
   INNER-PAGE INTRO (logo + page title)
   used by: contact-us, service-detail, hardware/software/
   integrasi listing pages
========================================================= */
.home-logo {
  text-align: center;
  padding: 64px 20px 16px;
  background: var(--white);
}

.home-logo img {
  max-width: 210px;
  width: 100%;
  margin: 0 auto 16px;
}

.home-logo p {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
}

.section-box {
  text-align: center;
  padding: 8px 20px 46px;
  background: var(--white);
}

.section-box h2 {
  display: inline-block;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text);
  padding-bottom: 16px;
}

.section-box h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

/* =========================================================
   OUR SERVICES — header + category cards
========================================================= */
.os-header {
  padding: 70px 0 40px;
  background: var(--white);
}

.os-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.os-logo img {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.os-text h2 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  font-weight: 600;
}

.os-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--text);
}

.os-text p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 520px;
}

.os-text strong {
  color: var(--green);
}

.os-services {
  padding: 26px 0 90px;
  background: var(--white);
}

.os-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.os-card {
  padding: 42px 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.os-icon {
  margin-bottom: 18px;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10, 143, 90, 0.1), rgba(34, 197, 94, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}

.os-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.os-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.product-list {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
  width: 100%;
}

.product-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13.5px;
  color: var(--muted);
  text-align: left;
  border-bottom: 1px dashed var(--line);
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-weight: 700;
}

.os-btn {
  margin-top: auto;
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s var(--ease);
}

.os-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(10, 143, 90, 0.35);
}

@media (max-width: 1024px) {
  .os-grid-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .os-header-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .os-text p {
    margin: 0 auto;
  }
}

/* =========================================================
   WHY CHOOSE US
========================================================= */
.why-section {
  padding: 80px 0;
  background: var(--paper);
}

.why-card-main h3 {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 3.4vw, 30px);
  margin-bottom: 46px;
  color: var(--text);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 32px 22px;
  text-align: center;
  transition: 0.3s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-bright);
}

.why-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.why-card h4 {
  font-size: 15.5px;
  margin-bottom: 8px;
  color: var(--text);
}

.why-card p {
  font-size: 13.5px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PRODUCT LISTING (Hardware / Software / Integrasi Sistem)
========================================================= */
.product-section {
  padding: 16px 0 90px;
  background: var(--white);
}

.product-grid {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.product-card .line {
  width: 44px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin: 12px auto 18px;
}

.product-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 18px;
}

.product-card p {
  font-size: 13.8px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.green {
  color: var(--green);
  font-weight: 600;
}

.btn-green {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  padding: 11px 26px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s var(--ease);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(10, 143, 90, 0.35);
}

.btn-demo {
  margin-top: 8px;
  align-self: center;
  display: inline-block;
  padding: 4px 14px;
  background: var(--muted-light);
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-demo:hover {
  background: var(--muted);
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CASE STUDIES / TRACKS OF WORKS (Our Customers)
========================================================= */
.tracks-works {
  padding: 80px 0;
  background: var(--paper);
}

.tw-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: none;
}

.tw-desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin-bottom: 46px;
}

.card-works {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card-works:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  background: var(--ink);
  color: #fff;
  padding: 16px 26px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
}

.card-body {
  padding: 30px 28px;
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.card-info p {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.card-info strong {
  color: var(--green);
}

.ml {
  padding-left: 0;
  list-style: none;
  margin-top: 6px;
}

.ml li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 13.8px;
  color: var(--muted);
}

.ml li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .tw-title { font-size: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-body { padding: 24px 20px; }
  .card-image img { max-height: 220px; }
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-section {
  padding: 20px 0 100px;
  background: var(--white);
}

.social-box {
  max-width: 440px;
  margin: 36px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s var(--ease);
}

.social-icons a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.social-icons a:hover {
  transform: translateY(-6px);
  border-color: var(--green-bright);
  background: rgba(34, 197, 94, 0.08);
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */
.wa-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s var(--ease);
}

.wa-chat i {
  font-size: 24px;
}

.wa-chat:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 70px 0 56px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 60px 0;
  }

  .card {
    padding: 32px 26px;
  }

  .hamburger {
    display: flex;
  }

  .topbar-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    width: 210px;
    background: var(--ink-2);
    border: 1px solid var(--line-dark);
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
    pointer-events: none;
    transition: all 0.25s var(--ease);
  }

  .topbar-nav.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .topbar-nav a {
    border-radius: 0;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-dark);
  }

  .topbar-nav a:last-child {
    border-bottom: none;
  }

  .visi-misi-box {
    padding: 40px 26px;
  }

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

  .footer-title-icon {
    justify-content: center;
  }

  .footer-item a {
    margin: 0 auto 12px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 22px; }
  .hero-desc { font-size: 14px; }
  .hero-logo { width: 160px; }
  .stat-item { min-width: 120px; padding: 12px 16px; }
  .stat-item h3 { font-size: 20px; }
  .wa-chat span { display: none; }
  .wa-chat {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
