@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

* { box-sizing: border-box; }
body {
  margin: 0;
  color: #222;
  font-family: "Raleway", Arial, sans-serif;
  background: #fff;
}

.editor-toolbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #1f1f1f;
  border-bottom: 1px solid #343434;
}
.editor-toolbar select,
.editor-toolbar input,
.editor-toolbar button {
  height: 32px;
  border: 1px solid #555;
  background: #fff;
  color: #171717;
  border-radius: 4px;
  padding: 0 8px;
  font: 600 12px Arial, sans-serif;
}
.editor-toolbar input[type="number"] { width: 64px; }
.editor-toolbar input[type="color"] { width: 42px; padding: 2px; }
.editor-toolbar .save-button {
  border-color: #daa900;
  background: #daa900;
  color: #111;
}
.editor-toolbar .history-list {
  min-width: 178px;
}
.save-status {
  min-width: 98px;
  color: #f4f4f4;
  font: 600 12px Arial, sans-serif;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 56px;
  background: #101010;
  color: #fff;
}
.logo img, .site-footer img { width: 210px; height: auto; display: block; }
.top-nav { display: flex; gap: 31px; align-items: center; font-size: 15px; font-weight: 500; }
.header-actions { display: flex; gap: 20px; align-items: center; }
.gold-btn {
  border: 0;
  min-height: 40px;
  padding: 10px 26px;
  background: #daa900;
  color: #111;
  text-transform: uppercase;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 420px;
  margin-top: 0;
  overflow: hidden;
  color: #fff;
}
.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.12));
}
.breadcrumbs {
  position: absolute;
  z-index: 1;
  top: 62px;
  left: 80px;
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}
.hero h1 {
  position: absolute;
  z-index: 1;
  left: 80px;
  bottom: 72px;
  max-width: 1000px;
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
}

.section {
  padding: 82px 80px;
}
h2 {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 300;
}
h2 strong { font-weight: 800; }
.light { font-weight: 300; }
.section-copy {
  max-width: 790px;
  margin: -20px auto 42px;
  text-align: center;
  color: #646464;
  font-size: 18px;
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: #e7e7e7;
}
.stats article {
  min-height: 190px;
  padding: 32px 28px;
  background: #fff;
  text-align: center;
}
.stats h3 {
  margin: 0 0 16px;
  color: #daa900;
  font-size: 54px;
  line-height: .95;
}
.stats h3 span {
  margin-left: 4px;
  font-size: 18px;
  color: #222;
}
.stats p { margin: 0 auto; max-width: 230px; line-height: 1.5; color: #555; }

.framework, .transparency, .journey { background: #f7f7f7; }
.framework-grid {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 54px;
  align-items: center;
}
.framework-wheel {
  display: grid;
  place-items: center;
}
.framework-wheel img { width: min(100%, 447px); }
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 18px;
  min-height: 260px;
  background: #fff;
  overflow: hidden;
}
.product-card.wide { grid-column: 1 / -1; }
.product-card img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.product-card div { padding: 26px 22px 24px 0; }
.product-card h3 { margin: 0 0 12px; font-size: 26px; line-height: 1.15; }
.product-card p { margin: 0; color: #5a5a5a; line-height: 1.58; }

.video-block {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 58px;
  align-items: center;
}
.video-block h2 { margin: 0 0 24px; text-align: left; }
.video-block p { margin: 0; color: #555; font-size: 18px; line-height: 1.7; }
.video-thumb { position: relative; overflow: hidden; background: #ddd; }
.video-thumb img { width: 100%; display: block; }
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 28px;
}

.accordion-layout {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 46px;
  align-items: stretch;
}
.accordion-list {
  display: grid;
  gap: 14px;
}
.accordion-list article {
  padding: 26px;
  background: #fff;
  border-left: 5px solid #daa900;
}
.accordion-list h3 { margin: 0 0 10px; font-size: 24px; }
.accordion-list p { margin: 0; color: #5a5a5a; line-height: 1.55; }
.accordion-layout > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }

.tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 34px; }
.tabs button {
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 14px 28px;
  font-weight: 700;
}
.tabs .active { background: #222; color: #fff; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.logo-grid img {
  width: 100%;
  min-height: 120px;
  object-fit: contain;
  padding: 28px;
  background: #fff;
  border: 1px solid #e9e9e9;
}

.journey-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 14px;
}
.journey-row article { background: #fff; min-width: 250px; }
.journey-row img { width: 100%; height: 156px; object-fit: cover; display: block; }
.journey-row h3 { margin: 22px 20px 10px; font-size: 26px; color: #daa900; }
.journey-row p { margin: 0 20px 24px; color: #555; line-height: 1.5; }

.conversation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.conversation article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #111;
  background: #ddd;
}
.conversation article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.25));
}
.conversation article.dark { color: #fff; }
.conversation article.dark:after { background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.15)); }
.conversation img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.conversation div {
  position: absolute;
  z-index: 1;
  left: 38px;
  bottom: 38px;
  max-width: 370px;
}
.conversation h3 { margin: 0 0 12px; font-size: 34px; }
.conversation p { margin: 0 0 24px; line-height: 1.55; }
.conversation button {
  border: 0;
  background: #daa900;
  color: #111;
  padding: 14px 24px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 62px 80px;
  background: #151515;
  color: #fff;
}
.site-footer h4 { margin: 0 0 14px; }
.site-footer p { margin: 0; color: #cfcfcf; line-height: 1.6; }

.editable-text {
  cursor: text;
  outline: 0 solid transparent;
}
.editable-text:hover { outline: 1px dashed rgba(218,169,0,.8); outline-offset: 3px; }
.editable-text.selected {
  outline: 2px solid #daa900;
  outline-offset: 4px;
}
.editable-text.movable {
  position: relative;
  z-index: 5;
  cursor: move;
  user-select: none;
}

@media (max-width: 980px) {
  .site-header { padding: 0 20px; }
  .top-nav { display: none; }
  .section { padding: 58px 22px; }
  .hero h1 { left: 24px; right: 24px; font-size: 42px; }
  .breadcrumbs { left: 24px; top: 42px; }
  h2 { font-size: 32px; }
  .stats, .framework-grid, .video-block, .accordion-layout, .conversation, .site-footer { grid-template-columns: 1fr; }
  .product-cards, .logo-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-card div { padding: 24px; }
}

@media (max-width: 640px) {
  .editor-toolbar { overflow-x: auto; }
  .site-header { top: 48px; min-height: 72px; }
  .logo img { width: 160px; }
  .header-actions .gold-btn { display: none; }
  .hero, .hero img { height: 332px; min-height: 332px; }
  .hero h1 { bottom: 36px; font-size: 34px; }
  .stats article { min-height: 150px; }
}
