/* ============================================================
   PT DIKARI TATA UDARA INDONESIA — main.css
   Corporate Website v4.0 | 2025
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:     #0B1B3A;
  --navy2:    #132244;
  --navy-lt:  #1a2f5a;
  --cyan:     #00C4CC;
  --cyan2:    #00A8B5;
  --amber:    #F5A623;
  --amber2:   #E09010;
  --white:    #FFFFFF;
  --offwhite: #F4F7FB;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --text:     #1E293B;

  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body:    'Inter', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --topbar-h:  40px;
  --nav-h:     76px;
  --total-top: 116px; /* topbar + nav */

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,.09);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section--dark      { background: var(--navy); }
.section--offwhite  { background: var(--offwhite); }
.section--gray      { background: var(--gray-100); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.eyebrow--amber { color: var(--amber); }
.eyebrow--white { color: rgba(255,255,255,.55); }

/* Headings */
h1, h2, h3, h4, h5 { font-family: var(--ff-display); line-height: 1.15; }
.section-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title--white { color: var(--white); }
.section-title em { font-style: normal; color: var(--cyan); }
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.75;
}
.section-sub--wide { max-width: 760px; }
.section-sub--white { color: rgba(255,255,255,.65); }
.section-intro { margin-bottom: 60px; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease-out);
}
.btn-primary:hover { background: var(--cyan2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,196,204,.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all .25s var(--ease-out);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-outline--dark {
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline--dark:hover { border-color: var(--cyan); color: var(--cyan2); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: var(--white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease-out);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.3); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease-out), transform .72s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h);
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.topbar__left a { color: rgba(255,255,255,.5); transition: color .2s; }
.topbar__left a:hover { color: var(--cyan); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar__wa {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  transition: color .2s;
}
.topbar__wa:hover { color: #22c55e; }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}
.lang-switcher a { color: rgba(255,255,255,.5); transition: color .2s; padding: 2px 4px; border-radius: 4px; }
.lang-switcher a:hover { color: var(--white); }
.lang-switcher a.lang-active { color: var(--cyan); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 199;
  height: var(--nav-h);
  transition: background .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(11,27,58,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar__logo img { height: 44px; width: auto; display: block; }
.navbar__nav { flex: 1; }
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__menu > li { position: relative; }
.navbar__menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.navbar__menu > li > a:hover,
.navbar__menu > li.active > a { color: var(--cyan); background: rgba(0,196,204,.08); }
.chevron { font-size: 9px; opacity: .6; transition: transform .25s; }
.has-dropdown.open .chevron { transform: rotate(180deg); }

.badge-new {
  font-size: 9px;
  font-weight: 800;
  background: var(--amber);
  color: var(--navy);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .06em;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s var(--ease-out);
  z-index: 999;
}
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  font-size: 13.5px;
  color: var(--gray-600);
  padding: 9px 20px;
  transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--gray-50); color: var(--navy); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nav-cta {
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all .22s var(--ease-out);
}
.btn-nav-cta:hover { background: var(--cyan2); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; display: block; }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--navy);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-close {
  font-size: 20px;
  color: rgba(255,255,255,.6);
  line-height: 1;
  padding: 4px 8px;
}
.mobile-drawer__nav {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.mobile-drawer__nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s;
}
.mobile-drawer__nav a:hover { color: var(--cyan); background: rgba(0,196,204,.06); }
.drawer-cta {
  margin: 16px 20px 8px;
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  text-align: center;
  border-radius: var(--radius-sm) !important;
  padding: 12px 20px !important;
}
.drawer-lang {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
}
.drawer-lang a { font-size: 14px; color: rgba(255,255,255,.5); }
.drawer-lang a.lang-active { color: var(--cyan); font-weight: 700; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.page-header {
  background: var(--navy);
  padding: calc(var(--total-top) + 60px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-header__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,204,.12) 0%, transparent 65%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.page-header__inner { position: relative; z-index: 2; }
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.page-header .breadcrumb a:hover { color: var(--cyan); }
.page-header .breadcrumb span { color: rgba(255,255,255,.25); }
.page-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  line-height: 1.75;
}

/* ── HOMEPAGE HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--total-top);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridPulse 10s ease-in-out infinite;
}
@keyframes gridPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.hero__glow-1 {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,204,.13) 0%, transparent 65%);
  top: -250px; right: -150px;
  pointer-events: none;
  animation: glowBreath 7s ease-in-out infinite;
}
.hero__glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.09) 0%, transparent 65%);
  bottom: -150px; left: 5%;
  pointer-events: none;
  animation: glowBreath 9s ease-in-out infinite reverse;
}
@keyframes glowBreath { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.12);opacity:1} }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__on-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,196,204,.1);
  border: 1px solid rgba(0,196,204,.25);
  border-radius: 99px;
  padding: 7px 16px;
  margin-bottom: 28px;
}
.hero__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero__on-call span { font-size: 12px; font-weight: 600; color: var(--cyan); letter-spacing: .05em; }

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.hero__stat {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-val {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 5px;
}
.hero__stat-label { font-size: 11.5px; color: rgba(255,255,255,.45); font-weight: 500; line-height: 1.3; }

/* Hero right: floating dashboard */
.hero__visual { position: relative; }
.hero__float-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 28px;
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.float-badge {
  position: absolute;
  background: rgba(11,27,58,.92);
  border: 1px solid rgba(0,196,204,.3);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.float-badge--tl { top: -22px; right: -16px; animation: floatY 5s ease-in-out infinite 1s; }
.float-badge--br { bottom: -22px; left: -16px; animation: floatY 6.5s ease-in-out infinite .5s; }
.float-badge .dot-live { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.2); animation: blink 1.5s infinite; }
.float-badge span  { font-size: 12px; font-weight: 700; color: var(--white); }
.float-badge small { font-size: 10px; color: rgba(255,255,255,.45); display: block; }

/* Card internals */
.fc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.fc-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(0,196,204,.15); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fc-icon img { width: 34px; height: 34px; object-fit: contain; }
.fc-title { font-size: 15px; font-weight: 700; color: var(--white); }
.fc-sub   { font-size: 11px; color: rgba(255,255,255,.4); }
.fc-kpis  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.fc-kpi   { background: rgba(0,0,0,.22); border-radius: 10px; padding: 13px; border: 1px solid rgba(255,255,255,.05); }
.fc-kpi-val { font-family: var(--ff-display); font-size: 21px; font-weight: 800; color: var(--white); line-height: 1; }
.fc-kpi-lbl { font-size: 10.5px; color: rgba(255,255,255,.38); margin-top: 3px; }
.fc-bar { margin-bottom: 8px; }
.fc-bar-meta { display: flex; justify-content: space-between; font-size: 10.5px; color: rgba(255,255,255,.45); margin-bottom: 5px; }
.fc-bar-track { height: 5px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; }
.fc-bar-fill  { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), var(--amber)); animation: barGrow 2.2s var(--ease-out) forwards; }
@keyframes barGrow { from { width: 0; } }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee { background: var(--cyan); padding: 13px 0; overflow: hidden; }
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--navy);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee__item::after { content: '✦'; color: rgba(11,27,58,.28); }

/* ── CLIENT LOGOS ────────────────────────────────────────── */
.clients-strip {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.clients-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 28px;
}
.clients-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.client-pill {
  font-family: var(--ff-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-400);
  padding: 6px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  transition: all .22s;
  letter-spacing: .03em;
}
.client-pill:hover { color: var(--navy); border-color: var(--gray-400); }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card--dark { background: var(--navy); border-color: transparent; }
.svc-card--dark h3 { color: var(--white); }
.svc-card--dark p { color: rgba(255,255,255,.55); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0,196,204,.12), rgba(0,168,181,.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.svc-card--dark .svc-icon { background: rgba(0,196,204,.15); }
.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.svc-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0,196,204,.1);
  color: var(--cyan2);
}
.svc-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cyan2);
  margin-top: 16px;
  transition: gap .2s;
}
.svc-learn-more:hover { gap: 10px; }

/* ── INDUSTRY CARDS ──────────────────────────────────────── */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: all .3s var(--ease-out);
}
.ind-card:hover {
  background: rgba(0,196,204,.1);
  border-color: rgba(0,196,204,.25);
  transform: translateY(-4px);
}
.ind-card__icon { font-size: 32px; margin-bottom: 12px; display: block; }
.ind-card h4    { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ind-card p     { font-size: 11.5px; color: rgba(255,255,255,.4); line-height: 1.55; }

/* ── WHY DIKARI ──────────────────────────────────────────── */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__list { display: flex; flex-direction: column; gap: 18px; }
.why__item { display: flex; align-items: flex-start; gap: 16px; }
.why__item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,196,204,.15), rgba(0,168,181,.07));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why__item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why__item p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }

/* Credential boxes */
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cred-box {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.cred-box__val {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.cred-box--amber .cred-box__val { color: var(--amber); }
.cred-box__key { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.4; }
.cred-box--span2 { grid-column: span 2; }

/* Cert badges */
.cert-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; padding-top: 8px; }
.cert-item { text-align: center; }
.cert-item__name { font-size: 12px; font-weight: 800; color: var(--cyan); letter-spacing: .08em; }
.cert-item__sub  { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; }

/* ── VALUE CARDS ─────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: attr(data-letter);
  position: absolute; top: -8px; right: 18px;
  font-family: var(--ff-display);
  font-size: 80px;
  font-weight: 800;
  color: rgba(0,196,204,.06);
  line-height: 1;
  pointer-events: none;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,196,204,.2); }
.value-card__letter {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-display);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--cyan2);
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.value-card__letter::before { content: ''; width: 22px; height: 2px; background: var(--cyan); flex-shrink: 0; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.value-card p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }

/* ── ABOUT: MILESTONE ────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--amber));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--cyan);
}
.timeline-year { font-family: var(--ff-display); font-size: 13px; font-weight: 700; color: var(--cyan); margin-bottom: 4px; letter-spacing: .06em; }
.timeline-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline-item p  { font-size: 13.5px; color: var(--gray-600); line-height: 1.65; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color .22s, box-shadow .22s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,196,204,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact info side */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-block h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-info-block p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.contact-divider { height: 1px; background: var(--gray-200); }

/* ── ECOSYSTEM CARDS ──────────────────────────────────────── */
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eco-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.eco-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,196,204,.04), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.eco-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(0,196,204,.2); }
.eco-card:hover::before { opacity: 1; }
.eco-card--featured { background: var(--navy); border-color: transparent; }
.eco-card--featured h3 { color: var(--white); }
.eco-card--featured p  { color: rgba(255,255,255,.5); }
.eco-card__logo { height: 68px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.eco-card__logo img { max-height: 60px; max-width: 130px; object-fit: contain; }
.eco-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(0,196,204,.1);
  color: var(--cyan2);
  margin-bottom: 12px;
}
.eco-card--featured .eco-card__badge { background: rgba(245,166,35,.15); color: var(--amber); }
.eco-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.eco-card p  { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* ── NEWS CARDS ──────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease-out);
  background: var(--white);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.news-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__body { padding: 24px; }
.news-card__cat { font-size: 10.5px; font-weight: 700; color: var(--cyan2); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.news-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.news-card__date  { font-size: 12px; color: var(--gray-400); }

/* ── CAREER ──────────────────────────────────────────────── */
.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all .3s var(--ease-out);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(0,196,204,.2); }
.job-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,196,204,.1); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.job-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.job-card p  { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.job-tag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 5px; background: var(--gray-100); color: var(--gray-600); }

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,196,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,196,204,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-strip__inner { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.cta-strip h2 em { font-style: normal; color: var(--cyan); }
.cta-strip p { font-size: 17px; color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.cta-strip__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.4); }
.cta-trust-item::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #060E1F; }
.footer__top { padding: 64px 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer__logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer__tagline { font-family: var(--ff-display); font-size: 12px; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.footer__about { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 300px; margin-bottom: 20px; }
.footer__eco-logos { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.footer__eco-logos img { height: 26px; width: auto; opacity: .45; filter: grayscale(20%); transition: opacity .2s; }
.footer__eco-logos img:hover { opacity: .7; }
.footer__col h5 { font-family: var(--ff-display); font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul a { font-size: 13.5px; color: rgba(255,255,255,.38); transition: color .2s; }
.footer__col ul a:hover { color: var(--cyan); }
.footer__socials { display: flex; gap: 10px; margin-top: 8px; }
.footer__socials a {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: all .22s;
}
.footer__socials a:hover { background: rgba(0,196,204,.15); border-color: rgba(0,196,204,.3); color: var(--cyan); }
.footer__address p { font-size: 13px; color: rgba(255,255,255,.38); line-height: 2; }
.footer__address a { color: rgba(255,255,255,.38); transition: color .2s; }
.footer__address a:hover { color: var(--cyan); }
.btn-footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.25);
  color: #4ade80;
  font-size: 13px; font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  transition: all .22s;
}
.btn-footer-wa:hover { background: rgba(37,211,102,.2); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__copy    { font-size: 12.5px; color: rgba(255,255,255,.22); }
.footer__powered { font-size: 12px; color: rgba(255,255,255,.2); }
.footer__powered strong { color: var(--cyan); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
  .why__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --topbar-h: 0px; }
  .topbar { display: none; }
  .navbar { top: 0; }
  .hero { padding-top: var(--nav-h); }
  .page-header { padding-top: calc(var(--nav-h) + 48px); }
  .hamburger { display: flex; }
  .navbar__nav { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .career-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
}
