/* ============ TOKENS ============ */
:root {
  --green:         #1faa5b;
  --green-dark:    #17904c;
  --green-50:      #e7f6ee;
  --purple:        #1faa5b;  /* accent → green */
  --purple-btn:    #111111;  /* primary buttons stay black */
  --purple-bright: #1faa5b;  /* accent → green */
  --purple-light:  #6b7280;
  --purple-50:     #e7f6ee;  /* icon tint → light green */
  --ink:           #18181b;
  --ink-soft:      #3f3f46;
  --muted:         #6b7280;
  --muted-2:       #9ca3af;
  --line:          #ececf0;
  --grey-bg:       #f4f4f6;
  --grey-panel:    #f7f7f9;
  --white:         #ffffff;
  --radius:        22px;
  --radius-sm:     14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 11px 22px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--purple-btn); color: #fff; }
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-white { background: #fff; color: var(--ink); padding: 13px 26px; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }

/* ============ PILL / BADGE ============ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); display: inline-block; }
.pill-light { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: #fff; }

/* ============ NAVBAR ============ */
.navbar { position: sticky; top: 0; z-index: 50; background: #fff; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand-mark { display: inline-flex; }
.brand-name { font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.brand-logo { height: 54px; width: auto; display: block; }
.hero-brand { display: flex; justify-content: center; margin-bottom: 44px; }
.hero-brand .brand-logo { height: 150px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: .02em; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--purple); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.link-login { font-size: 14px; font-weight: 600; }

/* ============ HERO ============ */
.hero { padding: 8px 0 40px; }
.hero-card {
  position: relative;
  background: var(--grey-bg);
  border-radius: 28px;
  padding: 64px 40px 0;
  text-align: center;
  overflow: hidden;
}
.hero-card .pill { margin-bottom: 26px; }
.hero-title {
  font-size: 56px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero-sub { color: var(--muted); font-size: 16px; margin: 22px 0 30px; }
.hero .btn-lg { margin-bottom: 60px; }

/* connector tags */
.tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.tag-ico { width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; }
.tag-ico.red { background: #111111; }
.tag-ico.green { background: var(--green); }
.tag-left { left: 70px; top: 230px; }
.tag-right { right: 70px; top: 270px; }

/* department cards */
.dept-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  padding: 26px 22px 40px;
  margin: 0 -4px -1px;
  position: relative;
  z-index: 2;
}
.dept-card { text-align: center; padding: 8px 6px; }
.dept-card + .dept-card { border-left: 1px solid var(--line); }
.dept-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple-50); margin-bottom: 14px;
}
.dept-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.dept-card p { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-grey { background: var(--grey-bg); }

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}
.sec-title { font-size: 38px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-top: 16px; }
.sec-title.center { margin-top: 18px; }
.sec-lead { color: var(--muted); font-size: 15px; line-height: 1.6; }
.sec-lead.center { margin-top: 14px; }
.center-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.center-head .sec-lead.center, .center-head .sec-title.center { margin-left: auto; margin-right: auto; }

/* ============ DEPARTMENT GRID ============ */
.dept-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.panel h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.panel p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* full-width row panels */
.panel-c { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; align-items: center; }
.panel-d, .panel-e { grid-column: auto; }

.panel-visual {
  background: var(--grey-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  height: 180px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

/* business orbit */
.visual-orbit { display: flex; align-items: center; justify-content: center; gap: 8px; }
.orbit-node {
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--purple-bright);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.orbit-node.big { width: 56px; height: 56px; }
.orbit-node.small { width: 34px; height: 34px; background: var(--purple); align-self: flex-end; margin-bottom: 50px; }

/* finance flow */
.visual-flow { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 0 18px; }
.flow-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 130px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  display: flex; flex-direction: column; gap: 5px;
}
.flow-node.ok { transform: translateY(-14px); }
.flow-node.warn { transform: translateY(12px); }
.fn-label, .fn-tag { font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.fn-sub { font-size: 11px; color: var(--muted); }
.d-green, .d-amber { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.d-green { background: var(--green); }
.d-amber { background: #9ca3af; }

/* sales chart */
.panel-text-left h3 { margin-bottom: 8px; }
.chart {
  position: relative;
  background: var(--grey-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px 0;
  height: 190px;
  overflow: hidden;
}
.chart-label { font-size: 12px; font-weight: 700; display: block; }
.chart-sub { font-size: 11px; color: var(--purple); font-weight: 600; }
.chart-svg { position: absolute; left: 0; bottom: 0; width: 100%; height: 120px; }
.chart-badge {
  position: absolute; right: 30px; top: 70px;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 8px;
}

/* HR people */
.visual-people { display: flex; align-items: center; justify-content: center; }
.hub {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--purple-bright);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(0,0,0,.12), 0 8px 22px rgba(0,0,0,.4);
  z-index: 2;
}
.av { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,#d4d4d8,#a1a1aa); border: 2px solid #fff; }
.av1 { top: 40px; left: 30%; background: linear-gradient(135deg,#e4e4e7,#9ca3af); }
.av2 { top: 40px; right: 30%; background: linear-gradient(135deg,#c7c7cc,#71717a); }
.av3 { bottom: 40px; left: 30%; background: linear-gradient(135deg,#d4d4d8,#52525b); }
.av4 { bottom: 40px; right: 30%; background: linear-gradient(135deg,#a1a1aa,#3f3f46); }

/* IT logic */
.visual-logic { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.logic-row {
  background: #fff; border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 11px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.logic-row.head { font-weight: 700; }
.lr-ico { color: var(--purple); }
.lr-state { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 6px; }
.lr-state.true { background: var(--green-50); color: var(--green-dark); }
.lr-state.false { background: #e2e2e2; color: #555555; }
.lr-bullet { width: 8px; height: 8px; border-radius: 50%; }
.lr-bullet.purple { background: var(--purple-bright); }
.lr-bullet.amber { background: #9ca3af; }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center;
}
.step-active { box-shadow: 0 18px 44px rgba(0,0,0,.16); border-color: #d4d4d8; }
.step-ico {
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--grey-bg);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-ico.filled { background: var(--purple-bright); box-shadow: 0 12px 28px rgba(0,0,0,.4); }
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ============ INDUSTRIES ============ */
.industries { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.logo-cell {
  height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line);
}
.logo-cell.accent { color: var(--green); }
.logo-cell.hatch {
  background: repeating-linear-gradient(45deg,#f4f4f6,#f4f4f6 6px,#ececf0 6px,#ececf0 7px);
  border-color: transparent;
}

/* ============ CTA ============ */
.cta {
  background: linear-gradient(120deg,#000000 0%,#1a1a1a 55%,#2b2b2b 100%);
  border-radius: 26px;
  padding: 50px 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  overflow: hidden;
  color: #fff;
  position: relative;
}
.cta-text { padding-bottom: 50px; }
.cta-text .pill { margin-bottom: 20px; }
.cta-title { font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1.12; margin-bottom: 14px; }
.cta-text p { color: rgba(255,255,255,.82); font-size: 15px; margin-bottom: 26px; }
.cta-laptop { display: flex; align-items: flex-end; justify-content: center; }

/* css laptop */
.laptop { width: 100%; max-width: 380px; }
.laptop-screen {
  background: #1f2937; border-radius: 12px 12px 0 0;
  border: 8px solid #111827; border-bottom: none;
  padding: 12px; height: 210px;
}
.ls-bar { height: 8px; width: 60px; background: #4b5563; border-radius: 4px; margin-bottom: 12px; }
.ls-rows { display: flex; flex-direction: column; gap: 9px; }
.ls-rows span { height: 14px; border-radius: 4px; background: #374151; }
.ls-rows span:nth-child(1) { width: 90%; }
.ls-rows span:nth-child(2) { width: 70%; }
.ls-rows span:nth-child(3) { width: 80%; }
.ls-rows span:nth-child(4) { width: 55%; }
.ls-rows span:nth-child(5) { width: 75%; }
.laptop-base {
  height: 14px; background: #d1d5db;
  border-radius: 0 0 10px 10px;
  margin: 0 -22px;
  box-shadow: inset 0 3px 6px rgba(0,0,0,.2);
}

/* ============ BOOK A MEETING ============ */
.booking {
  background: linear-gradient(120deg,#000000 0%,#102017 55%,#15351f 100%);
  border-radius: 26px;
  padding: 60px 56px;
  color: #fff;
}
.booking-text { max-width: 620px; margin: 0 auto; text-align: center; }
.booking-text .pill { margin-bottom: 20px; }
.booking-text p { color: rgba(255,255,255,.78); font-size: 15px; margin: 0 auto 26px; max-width: 460px; }
.booking-points { list-style: none; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.booking-points li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.9); }
.bp-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex: none;
}

.btn-book.booking-btn { display: inline-flex; width: auto; margin-top: 30px; padding: 12px 34px; font-size: 14px; }
.booking-card { background: #fff; border-radius: 18px; padding: 26px; color: var(--ink); }

/* calendar mockup */
.cal-head { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.cal-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--green); flex: none; }
.cal-title { font-size: 15px; font-weight: 700; flex: 1; }
.cal-len { font-size: 12px; font-weight: 600; color: var(--muted); }
.cal-weekdays, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.cal-weekdays span { font-size: 11px; font-weight: 700; color: var(--muted-2); padding: 4px 0; }
.cal-grid span { font-size: 13px; font-weight: 600; padding: 8px 0; border-radius: 8px; color: var(--ink-soft); }
.cal-grid span.muted { color: #d4d4d8; }
.cal-grid span.sel { background: var(--green); color: #fff; }
.cal-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.cal-time { border: 1px solid var(--green); color: var(--green-dark); border-radius: 9px; padding: 9px 4px; font-size: 12px; font-weight: 600; text-align: center; }
.booking-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.field input {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; font-size: 14px; font-family: inherit; outline: none;
  background: #fff; color: var(--ink);
}
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-50); }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot {
  border: 1px solid var(--line); background: #fff; border-radius: 9px;
  padding: 9px 4px; font-size: 12px; font-weight: 600; font-family: inherit;
  color: var(--ink-soft); cursor: pointer; transition: all .12s ease;
}
.slot:hover { border-color: var(--green); color: var(--green-dark); }
.slot.active { background: var(--green); border-color: var(--green); color: #fff; }
.btn-book { background: var(--green); color: #fff; width: 100%; padding: 13px; margin-top: 4px; }
.btn-book:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ============ FOOTER ============ */
.footer { background: #fafafa; border-top: 1px solid var(--line); }
.footer-inner { padding-bottom: 44px; }
.footer-contact { color: var(--muted); font-size: 14px; margin-top: 12px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-logo { height: 64px; }
.newsletter { margin-top: 30px; max-width: 320px; }
.newsletter h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.newsletter p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.news-form { display: flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 5px 5px 16px; }
.news-form input { flex: 1; border: none; outline: none; font-size: 13px; font-family: inherit; background: transparent; }
.news-form button {
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: var(--green); color: #fff; cursor: pointer; font-size: 15px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col h6 { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 13px; }
.footer-col a:hover { color: var(--purple); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; padding-bottom: 28px;
}
.copyright { font-size: 13px; color: var(--muted); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--ink-soft);
}
.socials a:hover { background: var(--green); color: #fff; border-color: var(--green); }
.legal { display: flex; gap: 26px; }
.legal a { font-size: 11px; font-weight: 700; letter-spacing: .05em; color: var(--ink-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-title { font-size: 40px; }
  .dept-row { grid-template-columns: repeat(2, 1fr); }
  .dept-card { border-left: none !important; }
  .dept-grid { grid-template-columns: 1fr; }
  .panel-c { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; padding: 40px 30px 0; }
  .booking { grid-template-columns: 1fr; gap: 30px; padding: 38px 26px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .tag { display: none; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 32px; }
  .dept-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
