/* Light theme based on PDF look */
:root {
  --bg: #f5f5f7;
  --panel: #ffffff;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(15,23,42,0.08);
  --accent: #0f766e;
  --accent2: #2563eb;
  --shadow-soft: 0 8px 20px rgba(15,23,42,0.08);
  --radius: 14px;
  --radius2: 20px;
  --max: 1140px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Top bar – light, clean */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.topbar .logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: .08em;
  font-size: 22px;
}
.brand h1 {
  margin: 0;
  font-size: 14px;
  letter-spacing: .10em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #111827;
}
.brand p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .18s ease;
}
nav a:hover {
  color: var(--text);
  border-color: rgba(15,23,42,0.10);
  background: rgba(15,23,42,0.03);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  justify-content: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: #ffffff;
  color: #111827;
  cursor: pointer;
  transition: .18s ease;
  font-size: 13px;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15,23,42,0.12);
}
.btn.primary {
  border-color: rgba(15,118,110,0.25);
  background: linear-gradient(135deg, #0f766e, #0ea5e9);
  color: #ffffff;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

/* Hero */
.hero {
  padding: 56px 0 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.hero h2 {
  margin: 12px 0 14px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111827;
}
.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  max-width: 62ch;
}
.hero-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: var(--radius2);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 26px;
}
.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.kpi {
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 10px;
  padding: 12px;
  background: #f9fafb;
}
.kpi .label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.kpi .value {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-side {
  border-radius: var(--radius2);
  border: 1px solid rgba(15,23,42,0.06);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 260px;
}
.hero-side h3 { margin: 0 0 8px; font-size: 16px; color: #111827; }
.hero-side p { margin: 0; color: var(--muted); font-size: 13px; }

/* Generic image placeholders – keep space for future images */
.image-slot {
  width: 100%;
  background: #f9fafb;
  display: block;
}
.image-slot--hero {
  height: 180px;
  margin-bottom: 14px;
}
.image-slot--product {
  width: 100%;
  aspect-ratio: 4 / 3;   /* keeps all images same ratio */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
}
.image-slot--vision {
  height: 160px;
  margin-bottom: 12px;
}

/* Sections */
section { padding: 54px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #111827;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card {
  grid-column: span 4;
  border: 1px solid rgba(15,23,42,0.08);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 16px rgba(15,23,42,0.06);
}
.card h4 { margin: 0 0 8px; font-size: 15px; color: #111827; }
.card p { margin: 0; color: var(--muted); font-size: 13px; }
.card a {
  color: #2563eb;        /* nice clickable blue */
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
}
.tag .mini {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent2);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}
.list li { margin: 6px 0; }

/* Products */
.product {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.product .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,0.3);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #1d4ed8;
}
.product small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.kv .v {
  word-break: break-word;
}
/* Contact */
.contact-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.contact-card {
  grid-column: span 6;
  width: 100%;
}

/* CTA */
.cta {
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius2);
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cta h3 { margin: 0; font-size: 18px; color: #111827; }
.cta p { margin: 6px 0 0; color: var(--muted); font-size: 13px; max-width: 70ch; }

/* Footer */
footer {
  padding: 26px 0 38px;
  border-top: 1px solid rgba(15,23,42,0.08);
  color: var(--muted);
  font-size: 12px;
  background: #ffffff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: start;
}
.footer-box {
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: var(--radius);
  padding: 16px;
  background: #f9fafb;
}
.footer-box strong { color: #111827; }
.kv {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px 12px;
  margin-top: 10px;
}
.kv div { padding: 2px 0; }
.kv .k { color: var(--muted); }
.kv .v { color: #111827; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .actions { min-width: unset; }
  .brand { min-width: unset; }
  .kpi-grid { grid-template-columns: 1fr; }
  .card { grid-column: span 6; }
  .product { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { display: none; }
}

@media (max-width: 560px) {
  .card { grid-column: span 12; }
  .cta { flex-direction: column; align-items: flex-start; }
}

