/* ============================================================
   AUXILIA MEDIKA NUSANTARA — Corporate Premium Modern
   style.css — Full rewrite, clean & elegant
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Bricolage+Grotesque:wght@400;500;600;700;800&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --font-body: 'Inter', sans-serif;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --clr-bg: #FAFAFA;
  --clr-white: #FFFFFF;
  --clr-ink: #0F0F0F;
  --clr-ink-2: #3D3D3D;
  --clr-ink-3: #71717A;
  --clr-border: #E4E4E7;
  --clr-accent: #0EA5E9;
  --clr-accent-dk: #0369A1;
  --clr-green: #10B981;
  --clr-surface: #F4F4F5;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10);
  --transition: all .22s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background: var(--clr-accent);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--clr-border);
  border-radius: 99px;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  /* taller to give logo room */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo — proper size, no filter distortion */
.nav-logo img {
  height: 56px;
  /* clear, readable */
  width: auto;
  object-fit: contain;
  transition: opacity .2s ease;
}

.nav-logo:hover img {
  opacity: .85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-ink-2);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width .22s ease;
}

.nav-link:hover {
  color: var(--clr-ink);
}

.nav-link:hover::after {
  width: 100%;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .875rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-ink);
  color: #fff;
  padding: .75rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--clr-ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--clr-ink);
  padding: .72rem 1.75rem;
  border: 1.5px solid var(--clr-border);
}

.btn-outline:hover {
  border-color: var(--clr-ink);
  background: var(--clr-surface);
}

.btn-accent {
  background: var(--clr-accent);
  color: #fff;
  padding: .75rem 1.75rem;
  box-shadow: 0 4px 14px rgba(14, 165, 233, .3);
}

.btn-accent:hover {
  background: var(--clr-accent-dk);
  transform: translateY(-1px);
}

/* ── Section utility ─────────────────────────────────────── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
}

/* ── Pill / Badge ────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  background: var(--clr-surface);
  color: var(--clr-ink-2);
  border: 1px solid var(--clr-border);
}

.pill-green {
  background: #ECFDF5;
  color: #065F46;
  border-color: #A7F3D0;
}

.pill-blue {
  background: #EFF6FF;
  color: #1E40AF;
  border-color: #BFDBFE;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  padding: 7rem 0 5.5rem;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, .07) 0%, transparent 68%);
  pointer-events: none;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, .05) 0%, transparent 68%);
  pointer-events: none;
}

/* Two-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Left column ─────────────────────────────────────────── */
.hero-left {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--clr-ink-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-green);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .6;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  font-weight: 800;
  color: var(--clr-ink);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-title-accent {
  /* subtle gradient underline on last line */
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-ink-3);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

/* CTA row */
.hero-cta {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--clr-ink);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: .8rem 1.85rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(15, 15, 15, .15);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 15, 15, .2);
}

.btn-hero-primary:active {
  transform: translateY(0);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--clr-ink-2);
  font-size: .875rem;
  font-weight: 500;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-ghost:hover {
  border-color: var(--clr-ink);
  color: var(--clr-ink);
  background: var(--clr-surface);
}

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 0 1.75rem;
}

.hero-stat-item:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--clr-ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-lbl {
  font-size: .72rem;
  font-weight: 500;
  color: var(--clr-ink-3);
  letter-spacing: .02em;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 2rem;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* ── Right column — Typewriter Editor Window ─────────── */
.hero-right {
  position: relative;
}

/* ── Editor window container ─────────────────────────── */
.tw-window {
  background: #0D0E12;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .08),
    0 24px 60px rgba(0, 0, 0, .35),
    0 8px 24px rgba(0, 0, 0, .25);
}

/* ── Title bar ───────────────────────────────────────── */
.tw-titlebar {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.1rem;
  background: #141519;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.tw-dots {
  display: flex;
  gap: .45rem;
}

.tw-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: default;
}

.tw-dot-red {
  background: #FF5F57;
}

.tw-dot-yellow {
  background: #FEBC2E;
}

.tw-dot-green {
  background: #28C840;
}

.tw-filename {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', ui-monospace, monospace;
  font-size: .75rem;
  font-weight: 500;
  color: #71717a;
  letter-spacing: .04em;
}

.tw-filename-ext {
  color: #3f3f46;
}

.tw-live-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 999px;
  padding: .2rem .6rem;
}

.tw-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── Editor body ──────────────────────────────────────── */
.tw-body {
  padding: 1.5rem 0 0;
}

/* ── Code lines ───────────────────────────────────────── */
.tw-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 1rem;
}

.tw-line {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .22rem 1.25rem;
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', ui-monospace, monospace;
  font-size: .82rem;
  line-height: 1.65;
  transition: background .15s ease;
}

.tw-line:hover {
  background: rgba(255, 255, 255, .025);
}

.tw-line-blank {
  min-height: 1.35rem;
}

/* Active line (row 7) highlight */
.tw-line:nth-child(7) {
  background: rgba(14, 165, 233, .07);
  border-left: 2px solid #0EA5E9;
  padding-left: calc(1.25rem - 2px);
}

.tw-indent {
  padding-left: 1.6rem;
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
}

/* Line numbers */
.tw-ln {
  font-size: .68rem;
  color: #3f3f46;
  min-width: 1.4rem;
  text-align: right;
  user-select: none;
  flex-shrink: 0;
}

/* Syntax colour tokens */
.tw-comment {
  color: #52525b;
  font-style: italic;
}

.tw-keyword {
  color: #c084fc;
}

/* purple  */
.tw-var {
  color: #67e8f9;
}

/* cyan    */
.tw-key {
  color: #6ee7b7;
}

/* emerald */
.tw-string {
  color: #fbbf24;
}

/* amber   */
.tw-number {
  color: #fb923c;
}

/* orange  */
.tw-fn {
  color: #60a5fa;
}

/* blue    */
.tw-punct {
  color: #a1a1aa;
}

/* zinc    */

/* ── Typewriter text + cursor ─────────────────────────── */
#tw-text {
  /* inherits .tw-string colour */
}

.tw-cursor {
  display: inline-block;
  width: 2px;
  color: #0EA5E9;
  font-weight: 300;
  animation: blink-cursor .8s step-end infinite;
  margin-left: 1px;
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── Status bar ───────────────────────────────────────── */
.tw-statusbar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: #141519;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-family: 'Inter', sans-serif;
}

.tw-status-item {
  font-size: .65rem;
  font-weight: 500;
  color: #52525b;
  letter-spacing: .04em;
  transition: color .3s ease;
}

.tw-status-sep {
  font-size: .55rem;
  color: #3f3f46;
}

.tw-status-right {
  margin-left: auto;
}

/* ── Old hero-right-frame classes (removed) ───────────── */
.hero-right-frame,
.hero-frame-bar,
.hero-frame-dots,
.hfd,
.hero-frame-label,
.hero-frame-badge,
.hero-node-grid,
.hero-node,
.hero-node-icon,
.hero-node-label,
.hero-node-dot,
.hero-frame-footer,
.hero-frame-footlabel,
.hero-frame-progress {
  display: none;
}

/* Floating trust badge */
.hero-trust-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--clr-ink-2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  white-space: nowrap;
}

/* ── Old hero-visual / hero-card classes (kept for safety, now unused) ── */
.hero-visual,
.hero-card,
.hero-card-accent,
.hero-card-icon,
.hero-card-title,
.hero-card-sub {
  display: none;
}

/* Remove old stat styles */
.hero-stats,
.hero-stat-val,
.hero-stat-label {
  display: none;
}

/* ── Services List (Hover Image Reveal) ──────────────────── */
.services-section {
  padding: 7rem 0;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: end;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.services-desc {
  font-size: .95rem;
  color: var(--clr-ink-3);
  line-height: 1.75;
  max-width: 420px;
  margin-left: auto;
}

.services-list {
  border-top: 1px solid var(--clr-border);
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--clr-border);
  cursor: default;
  transition: var(--transition);
  position: relative;
  gap: 1.5rem;
}

.service-item:hover {
  padding-left: .5rem;
}

.service-item:hover .service-name {
  color: var(--clr-accent);
}

.service-num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--clr-ink-3);
  width: 2rem;
  flex-shrink: 0;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  flex: 1;
  transition: var(--transition);
}

.service-category {
  font-size: .75rem;
  font-weight: 600;
  color: var(--clr-ink-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
}

.service-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--clr-ink-3);
  transition: var(--transition);
}

.service-item:hover .service-arrow {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: white;
}

/* ── Hover Image Reveal ──────────────────────────────────── */
.service-image-reveal {
  position: fixed;
  pointer-events: none;
  z-index: 500;
  width: 280px;
  height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(.88) rotate(-2deg);
  transition: opacity .28s ease, transform .28s cubic-bezier(.34, 1.56, .64, 1);
  will-change: transform, opacity;
}

.service-image-reveal.visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.service-image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-image-reveal .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .35) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}

.service-image-reveal .img-label {
  position: absolute;
  bottom: .85rem;
  left: 1rem;
  font-size: .72rem;
  font-weight: 700;
  color: white;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── About Section ───────────────────────────────────────── */
.about-section {
  padding: 7rem 0;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-text {
  font-size: .95rem;
  color: var(--clr-ink-3);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--clr-ink-2);
}

.about-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-green);
  font-size: .7rem;
  margin-top: .15rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}

.about-card-label {
  font-size: .78rem;
  color: var(--clr-ink-3);
  margin-top: .2rem;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Why Us Section ──────────────────────────────────────── */
.whyus-section {
  padding: 7rem 0;
  background: var(--clr-ink);
  border-bottom: 1px solid #1f1f1f;
}

.whyus-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.whyus-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.whyus-card:hover {
  border-color: #3a3a3a;
  background: #1c1c1c;
}

.whyus-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.whyus-card-title {
  font-weight: 700;
  color: white;
  font-size: .95rem;
  margin-bottom: .5rem;
}

.whyus-card-text {
  font-size: .85rem;
  color: #71717a;
  line-height: 1.7;
}

/* ── Testimonial ─────────────────────────────────────────── */
.testimonial-wrap {
  margin-top: 4rem;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}

.testimonial-quote {
  font-size: 1.15rem;
  color: #e4e4e7;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  color: white;
  font-size: .9rem;
}

.testimonial-role {
  font-size: .78rem;
  color: #71717a;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-section {
  padding: 7rem 0;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: .95rem;
  color: var(--clr-ink-3);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .875rem;
  color: var(--clr-ink-2);
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-ink-2);
  letter-spacing: .04em;
}

.form-input {
  width: 100%;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .875rem;
  font-family: var(--font-body);
  background: var(--clr-white);
  color: var(--clr-ink);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .12);
}

.form-input::placeholder {
  color: #a1a1aa;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--clr-ink);
  color: white;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid #1f1f1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Logo wrapper — putih semi-transparan agar logo JPEG terbaca di bg gelap */
.footer-logo-wrap {
  display: inline-block;
  background: rgba(255, 255, 255, .96);
  border-radius: 10px;
  padding: .6rem 1rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.footer-logo-wrap:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.footer-logo-wrap img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Keep old .footer-logo for any legacy references */
.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: .83rem;
  color: #71717a;
  line-height: 1.75;
  max-width: 230px;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-link {
  font-size: .85rem;
  color: #a1a1aa;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
}

/* Social buttons — proper size, icon-only, square with SVG */
.footer-social {
  display: flex;
  gap: .6rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid #2a2a2a;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  transition: var(--transition);
  flex-shrink: 0;
}

.social-btn svg {
  display: block;
  flex-shrink: 0;
}

.social-btn:hover {
  border-color: var(--clr-accent);
  background: rgba(14, 165, 233, .12);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

/* Per-brand hover colours */
.social-btn[aria-label="Instagram"]:hover {
  border-color: #E1306C;
  background: rgba(225, 48, 108, .1);
  color: #E1306C;
}

.social-btn[aria-label="LinkedIn"]:hover {
  border-color: #0A66C2;
  background: rgba(10, 102, 194, .1);
  color: #0A66C2;
}

.social-btn[aria-label="WhatsApp"]:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, .1);
  color: #25D366;
}

.social-btn[aria-label="Facebook"]:hover {
  border-color: #1877F2;
  background: rgba(24, 119, 242, .1);
  color: #1877F2;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
  color: #52525b;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #71717a;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
}

/* ── Ticker (lama — disimpan jika masih dipakai di tempat lain) ── */
.ticker-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-item {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-ink-3);
  padding: .65rem 1.75rem;
}

.ticker-dot {
  color: var(--clr-accent);
  padding: .65rem .5rem;
  font-size: .6rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════════
   OPSI B — Trust / Partner Logo Grid
══════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 2.75rem 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.trust-bar-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-ink-3);
  margin-bottom: 2rem;
}

/* Logo grid — Marquee Animation */
.trust-marquee {
  position: relative;
  overflow: hidden;
  /* Mask image to fade out edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-marquee-viewport {
  display: flex;
  width: max-content;
  animation: trust-marquee-scroll 35s linear infinite;
  will-change: transform;
}

.trust-marquee:hover .trust-marquee-viewport {
  animation-play-state: paused;
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem; /* Spacing between logos */
  padding-right: 3rem; /* Spacing before the next track starts */
  flex-shrink: 0;
}

@keyframes trust-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.trust-logo-img {
  height: 50px; /* Slightly larger */
  max-width: 160px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  mix-blend-mode: multiply; /* Helps white background JPGs blend in */
}

.trust-logo-item:hover .trust-logo-img {
  transform: scale(1.05);
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  cursor: default;
  /* grayscale + low opacity by default */
  filter: grayscale(100%);
  opacity: .35;
  transition: filter .3s ease, opacity .3s ease, transform .25s ease;
}

.trust-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* SVG internals controlled by CSS */
.trust-logo-svg {
  width: 110px;
  height: 40px;
}

/* Background rect of logo pill */
.trust-logo-bg {
  fill: var(--clr-surface);
  stroke: var(--clr-border);
  transition: fill .3s ease, stroke .3s ease;
}

.trust-logo-item:hover .trust-logo-bg {
  fill: color-mix(in srgb, var(--partner-color) 8%, white);
  stroke: color-mix(in srgb, var(--partner-color) 40%, white);
}

/* Left accent bar */
.trust-logo-accent {
  fill: var(--clr-border);
  transition: fill .3s ease;
}

.trust-logo-item:hover .trust-logo-accent {
  fill: var(--partner-color);
}

/* Abbreviation text */
.trust-logo-abbr {
  fill: var(--clr-ink-3);
  transition: fill .3s ease;
}

.trust-logo-item:hover .trust-logo-abbr {
  fill: var(--partner-color);
}

/* Small name caption below logo */
.trust-logo-name {
  font-size: .65rem;
  font-weight: 600;
  color: var(--clr-ink-3);
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}

.trust-logo-item:hover .trust-logo-name {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   MARQUEE — Ultra-Premium Outline Scroll
══════════════════════════════════════════════════════════ */

/* Outer strip */
.marquee-strip {
  position: relative;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: .85rem 0;
  overflow: hidden;
  cursor: default;
  /* Left & right fade-out mask */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%);
}

/* Viewport — animation target so hover works on full strip */
.marquee-viewport {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.marquee-strip:hover .marquee-viewport {
  animation-play-state: paused;
}

/* Each track = half the scrollable width */
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Scroll exactly one track-width for seamless loop */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Words ───────────────────────────────────────────────── */
.marquee-word {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  /* ~text-4xl on desktop */
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  padding: .4rem 1.75rem;

  /* Solid medium-grey — kontras pas, tidak pucat */
  color: #71717A;
  /* zinc-500 */

  transition: color .2s ease;
  user-select: none;
}

/* Subtle hover: kata sedikit lebih gelap saat strip di-pause */
.marquee-strip:hover .marquee-word {
  color: #52525B;
  /* zinc-600 */
}

/* ── Separator ───────────────────────────────────────────── */
.marquee-sep {
  font-size: .8rem;
  line-height: 1;
  flex-shrink: 0;
  vertical-align: middle;
  user-select: none;
  /* Aksen cyan — tegas, berbeda dari teks abu */
  color: #06B6D4;
  /* cyan-500 */
  padding: 0 .15rem;
}


/* ── Mobile nav ──────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
}

#mobile-menu {
  display: none;
}

#mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem 1.5rem 1rem;
  border-top: 1px solid var(--clr-border);
}

/* ── Fade-up animation ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    display: none;
  }

  /* hide visual on tablet — left col fills full width */
  .hero-left {
    max-width: 100%;
  }

  .services-header {
    grid-template-columns: 1fr;
  }

  .services-desc {
    margin-left: 0;
  }

  .whyus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4.5rem 0 4rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-stats-bar {
    gap: 0;
  }

  .hero-stat-item {
    padding: 0 1.25rem;
  }

  .service-name {
    font-size: 1.05rem;
  }

  .service-category {
    display: none;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ── Admin float button ──────────────────────────────────── */
.admin-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}

.admin-float a {
  background: var(--clr-ink);
  color: var(--clr-accent);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-md);
  padding: .5rem 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.admin-float a:hover {
  background: #1a1a1a;
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.floating-wa svg {
  width: 35px;
  height: 35px;
}