/* Solutions page styles extracted from solutions/index.html inline style block */

/* OPERATIONAL MODELS */
.models-section { background: var(--gray-100); }
.models-header { text-align: center; margin-bottom: 52px; }
.models-header .section-sub { margin: 0 auto; }
.models-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 24px;
}
.models-footer { text-align: center; margin-top: 52px; }
.models-footer .section-sub { margin: 0 auto; }
.model-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 18px; padding: 36px 32px;
  display: grid; grid-row: span 4; grid-template-rows: subgrid; row-gap: 16px;
  position: relative;
}
.model-card--featured {
  background: linear-gradient(160deg, var(--surf-navy) 0%, var(--otto-blue) 100%);
  border-color: transparent;
}
.model-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--surf-teal); color: var(--white);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.model-card--featured .model-num { color: rgba(255,255,255,0.55); }
.model-name {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--surf-navy); line-height: 1.2; margin: 0;
}
.model-card--featured .model-name { color: var(--white); }
.model-desc {
  font-size: 14px; color: var(--gray-500); line-height: 1.7; margin: 0;
}
.model-card--featured .model-desc { color: rgba(255,255,255,0.72); }

.model-responsibilities { display: contents; }
.model-resp-block { border-radius: 10px; padding: 14px 16px; }
.model-resp-us { background: linear-gradient(135deg, var(--surf-teal) 0%, var(--otto-blue) 100%); }
.model-resp-you { background: linear-gradient(135deg, var(--surf-navy) 0%, var(--otto-blue) 100%); }
.model-card--featured .model-resp-us { background: var(--white); }
.model-card--featured .model-resp-you { background: var(--gray-100); }
.model-resp-label {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65); margin-bottom: 8px;
}
.model-card--featured .model-resp-label { color: var(--gray-500); }
.model-resp-block ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.model-resp-block ul li {
  font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.4;
  padding-left: 14px; position: relative;
}
.model-resp-block ul li::before {
  content: '-'; position: absolute; left: 0; color: var(--surf-sand);
}
.model-card--featured .model-resp-block ul li { color: var(--gray-700); }
.model-card--featured .model-resp-block ul li::before { color: var(--surf-teal); }

/* REVENUE MODEL */
.revenue-model { background: linear-gradient(135deg, var(--surf-navy) 0%, var(--otto-blue) 100%); }
.revenue-model-header { text-align: center; margin-bottom: 56px; }
.revenue-model-header .label { color: var(--surf-sand); }
.revenue-model-header .section-title { color: var(--white); }
.revenue-model-inner { max-width: 860px; margin: 0 auto; }
.revenue-text { text-align: center; margin-bottom: 40px; }
.revenue-body { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 20px; }
.revenue-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.revenue-card {
  background: white; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.revenue-card-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.revenue-card h4 {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 5px;
}
.revenue-card > div:not(.revenue-card-icon) { flex: 1; }
.revenue-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.revenue-callout {
  margin-top: 28px; background: white; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px; padding: 20px 24px;
  font-size: 15px; color: var(--black); line-height: 1.65;
}
.revenue-callout strong { font-weight: 700; }

/* TIMELINE SECTION */
.timeline-section { background: var(--gray-100); }
.timeline-header { text-align: center; margin-bottom: 52px; }
.timeline-header .section-sub { margin: 0 auto; }
.timeline-embed { max-width: 1000px; margin: 0 auto; }
@media (max-width: 768px) {
  .timeline-embed { overflow-x: auto; max-width: 100%; padding-bottom: 12px; }
  .timeline-embed > * { min-width: 700px; }
}

/* BRANDS SECTION */
/* Section wrapper styles in shared.css */

@media (max-width: 768px) {
  .models-grid { grid-template-columns: 1fr; }
  .revenue-model { overflow-x: hidden; }
  .revenue-model-inner { max-width: 100%; padding: 0; }
  .revenue-cards { grid-template-columns: 1fr; gap: 12px; }
  .revenue-card { padding: 20px; }
}
