:root {
  --black: #050b50;
  --charcoal: #151c4d;
  --panel: #ffffff;
  --panel-soft: #f1f6fb;
  --white: #ffffff;
  --text: #172033;
  --muted: #5f6f86;
  --dim: #8c99aa;
  --primary: #4cafdf;
  --primary-dark: #050b50;
  --accent: #12a4e0;
  --success: #22c55e;
  --line: rgba(5, 11, 80, 0.12);
  --shadow: 0 24px 70px rgba(5, 11, 80, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6f9fc;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 225px;
}

.mini-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(76, 175, 223, 0.25);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.mini-mark {
  width: 34px;
  height: 34px;
  font-size: 12px;
}

.brand span {
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(10px, 1.25vw, 20px);
  color: var(--text);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 700;
  white-space: nowrap;
}

nav a {
  flex: 0 0 auto;
}

nav a:hover {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
}

.header-cta {
  flex: 0 0 auto;
  padding: 0 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 760px;
  padding: clamp(56px, 6vw, 84px) clamp(20px, 5vw, 76px) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(76, 175, 223, 0.18), transparent 32%),
    radial-gradient(circle at 12% 80%, rgba(18, 164, 224, 0.13), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #edf6fc 52%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(76, 175, 223, 0.25), rgba(76, 175, 223, 0) 66%);
  pointer-events: none;
}

.hero-content,
.phone-preview {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Raleway", "Manrope", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--black);
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 64px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: var(--primary);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(5, 11, 80, 0.2);
  color: var(--black);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--accent);
  font-size: 20px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.mockup-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mockup-image figcaption {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  background: #f8fbff;
}

.admin-hero {
  position: relative;
  z-index: 1;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #eef4fa;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bac7d8;
}

.browser-bar b {
  margin-left: 10px;
  color: var(--muted);
  font-size: 12px;
}

.system-shell {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 440px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px;
  background: var(--black);
  color: #dcecff;
}

.sidebar img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 14px;
}

.sidebar a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #dcecff;
  font-size: 12px;
  font-weight: 800;
}

.sidebar a.active {
  background: var(--primary);
  color: #ffffff;
}

.system-main {
  padding: 22px;
  background: #f7fafc;
}

.system-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.system-title span {
  color: var(--muted);
  font-size: 13px;
}

.system-title strong {
  color: var(--black);
}

.system-kpis,
.status-strip,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.system-kpis div,
.status-strip div,
.detail-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.system-kpis strong,
.status-strip b,
.detail-grid b {
  display: block;
  color: var(--accent);
  font-size: 24px;
}

.system-kpis span,
.status-strip span,
.detail-grid span {
  color: var(--muted);
  font-size: 12px;
}

.campaign-row {
  position: relative;
  margin-top: 12px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.campaign-row span,
.campaign-row b {
  position: relative;
  z-index: 1;
  display: block;
}

.campaign-row span {
  color: var(--black);
  font-weight: 800;
}

.campaign-row b {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.campaign-row i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: var(--primary);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mockup-grid .wide:last-child {
  grid-column: 1 / -1;
}

.admin-window {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 370px;
}

.admin-window aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: var(--black);
  color: #ffffff;
}

.admin-window aside strong {
  margin-bottom: 16px;
}

.admin-window aside span {
  padding: 9px 10px;
  border-radius: 6px;
  color: #dcecff;
  font-size: 12px;
  font-weight: 800;
}

.admin-window aside span.active {
  background: var(--primary);
}

.admin-window main {
  padding: 22px;
  background: #ffffff;
}

.window-head,
.detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.window-head small,
.detail-head small,
.field-editor small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.window-head h3,
.detail-head h3,
.field-editor h3 {
  margin: 4px 0 0;
}

.window-head button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 900;
}

.company-list,
.location-table,
.question-review {
  display: grid;
  gap: 10px;
}

.company-list div,
.location-table div,
.question-review div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.company-list b,
.location-table span,
.question-review b {
  color: var(--black);
}

.company-list span,
.location-table b,
.question-review span {
  color: var(--muted);
  font-size: 13px;
}

.company-list strong,
.location-table em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.status-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 14px;
}

.audit-detail {
  padding: 24px;
}

.detail-head strong {
  padding: 12px 14px;
  border-radius: 8px;
  background: #eaf7fd;
  color: var(--accent);
}

.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.builder-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.builder-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 390px;
}

.field-types {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: #f3f8fc;
  border-right: 1px solid var(--line);
}

.field-types strong {
  margin-bottom: 8px;
  color: var(--black);
}

.field-types span {
  padding: 10px 12px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-editor {
  padding: 26px;
}

.control-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.control-row span {
  color: var(--muted);
}

.control-row b {
  color: var(--black);
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.app-features div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.app-features strong,
.app-features span {
  display: block;
}

.app-features strong {
  color: var(--black);
}

.app-features span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: 12px 0;
  border: 1px dashed rgba(76, 175, 223, 0.7);
  border-radius: 8px;
  background: rgba(76, 175, 223, 0.1);
  color: #dcecff;
  font-weight: 900;
}

.phone-frame {
  width: min(100%, 360px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(145deg, #2c2c2c, #060606);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 92px;
  height: 7px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #050505;
}

.app-screen {
  min-height: 610px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(76, 175, 223, 0.18), rgba(0, 0, 0, 0) 36%),
    #0b1320;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.app-bar span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.progress-line {
  height: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: #2c2c2c;
}

.progress-line span {
  display: block;
  height: 100%;
  background: var(--primary);
}

.audit-card {
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11184b;
}

.audit-card.active {
  border-color: rgba(76, 175, 223, 0.65);
}

.audit-card small {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.audit-card strong,
.audit-card p {
  display: block;
  margin: 6px 0 0;
}

.audit-card strong {
  color: #ffffff;
}

.audit-card p {
  color: #cbd8e8;
  font-size: 13px;
}

.capture-button {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  font: inherit;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section:nth-of-type(odd) {
  background: #f6f9fc;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p,
.solution-copy p,
.scope p,
.feedback p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.problem-grid,
.module-grid,
.pricing-grid,
.deliverable-grid,
.campaign-grid {
  display: grid;
  gap: 16px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem article,
.module-grid article,
.pricing-grid article,
.phase-list article,
.campaign-grid article,
.questions,
.dashboard-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.dash-header strong {
  color: var(--black);
}

.problem article,
.module-grid article,
.pricing-grid article,
.phase-list article,
.campaign-grid article {
  padding: 24px;
}

.problem article span,
.phase-list strong,
.tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.problem article p,
.module-grid article p,
.campaign-grid article p,
.phase-list article p,
.pricing-grid article p,
.pricing-grid li {
  color: var(--muted);
  line-height: 1.58;
}

.solution,
.scope,
.feedback {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.solution-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.solution-list div {
  padding: 18px;
  border-left: 4px solid var(--primary);
  background: #f5f9fd;
}

.solution-list strong,
.solution-list span {
  display: block;
}

.solution-list span {
  margin-top: 4px;
  color: var(--muted);
}

.dashboard-preview {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(76, 175, 223, 0.18), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dash-header span {
  color: var(--muted);
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.dash-kpis div {
  padding: 16px;
  border-radius: 8px;
  background: #f3f8fc;
}

.dash-kpis strong,
.dash-kpis span {
  display: block;
}

.dash-kpis strong {
  color: var(--accent);
  font-size: 28px;
}

.dash-kpis span {
  color: var(--muted);
  font-size: 12px;
}

.bar-list {
  display: grid;
  gap: 10px;
}

.bar-list div {
  position: relative;
  min-height: 58px;
  border-radius: 6px;
  background: #f7fafc;
  border: 1px solid rgba(5, 11, 80, 0.08);
  box-shadow: inset 0 -1px 0 rgba(5, 11, 80, 0.03);
}

.bar-list div::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 11px;
  height: 9px;
  border-radius: 999px;
  background: #dde6f1;
}

.bar-list span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 10px 58px 0 12px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.bar-list em {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 12px;
  color: var(--primary-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.bar-list b {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 11px;
  height: 9px;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.dash-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.dash-table div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f3f8fc;
}

.dash-table span {
  color: var(--muted);
}

.dash-table b {
  color: var(--black);
}

.flow {
  background:
    linear-gradient(180deg, rgba(76, 175, 223, 0.16), transparent 46%),
    #ffffff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
  line-height: 1.55;
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campaigns {
  background:
    linear-gradient(180deg, rgba(76, 175, 223, 0.11), transparent 52%),
    #f6f9fc;
}

.campaign-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scope {
  background:
    radial-gradient(circle at 88% 18%, rgba(76, 175, 223, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef7fc);
}

.phase-list {
  display: grid;
  gap: 14px;
}

.deliverable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverable-grid div {
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  font-weight: 800;
}

.ai-planograms {
  background:
    linear-gradient(180deg, rgba(76, 175, 223, 0.1), transparent 48%),
    #ffffff;
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.ai-copy {
  display: grid;
  gap: 16px;
}

.ai-copy article,
.ai-mockup {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.ai-copy article {
  padding: 24px;
}

.ai-copy p,
.ai-copy li {
  color: var(--muted);
  line-height: 1.58;
}

.ai-copy ul {
  margin: 0;
  padding-left: 18px;
}

.ai-mockup {
  margin: 0;
  overflow: hidden;
}

.ai-mockup figcaption {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-window {
  padding: 22px;
}

.ai-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.ai-head small,
.ai-head strong {
  display: block;
}

.ai-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.ai-head strong {
  margin-top: 4px;
  color: var(--black);
}

.ai-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 54px;
  border-radius: 8px;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.comparison-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 13px;
}

.shelf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f9fd;
}

.shelf span {
  aspect-ratio: 0.72;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  box-shadow: inset 0 -10px 0 rgba(255, 255, 255, 0.16);
}

.shelf.photo span {
  background: linear-gradient(180deg, #45b7df, #1b4c91);
}

.shelf span.missing {
  border: 2px dashed #ef4444;
  background: #ffffff;
}

.shelf span.warning {
  background: linear-gradient(180deg, #f5c451, #d88d1e);
}

.ai-findings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.ai-findings div {
  padding: 14px;
  border-radius: 8px;
  background: #f3f8fc;
}

.ai-findings strong,
.ai-findings span {
  display: block;
}

.ai-findings strong {
  color: var(--accent);
  font-size: 24px;
}

.ai-findings span {
  color: var(--muted);
  font-size: 12px;
}

.ai-result {
  margin-top: 16px;
  padding: 16px;
  border-left: 4px solid var(--success);
  background: #f1fbf5;
}

.ai-result b {
  color: var(--black);
}

.ai-result p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.pricing {
  background: #ffffff;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 18px;
  margin-bottom: 22px;
}

.quote-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.quote-card.featured {
  background:
    linear-gradient(135deg, rgba(76, 175, 223, 0.16), transparent 42%),
    #ffffff;
  border-color: rgba(76, 175, 223, 0.36);
}

.quote-card p {
  color: var(--muted);
  line-height: 1.58;
}

.quote-total {
  margin-top: 24px;
  color: var(--black);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.quote-total small,
.quote-tax {
  display: block;
}

.quote-total small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.quote-tax {
  margin-top: 14px;
  color: var(--accent);
  font-size: 18px;
}

.storage-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(76, 175, 223, 0.28);
  border-radius: 8px;
  background: #f4f9fd;
}

.storage-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.storage-note strong {
  color: var(--black);
  font-size: 15px;
  line-height: 1.35;
}

.ai-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  gap: 24px;
  align-items: center;
  margin: 18px 0;
  padding: 24px;
  border: 1px solid rgba(76, 175, 223, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(76, 175, 223, 0.12), transparent 42%),
    #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.ai-quote.secondary {
  border-color: var(--line);
  background: #f8fbff;
}

.ai-quote p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.ai-quote-price {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.ai-quote-price strong {
  color: var(--black);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.ai-quote-price small,
.ai-quote-price span {
  display: block;
}

.ai-quote-price small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.ai-quote-price span {
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
}

.cost-table {
  overflow: hidden;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.cost-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr 180px;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cost-row:last-child {
  border-bottom: 0;
}

.cost-row span:nth-child(2) {
  color: var(--muted);
}

.cost-row strong {
  color: var(--black);
  text-align: right;
}

.cost-row.head {
  background: #f3f8fc;
  color: var(--black);
  font-weight: 900;
}

.cost-row.total,
.cost-row.grand {
  background: #f8fbff;
  font-weight: 900;
}

.cost-row.grand strong {
  color: var(--accent);
  font-size: 22px;
}

.scope-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 20px 0 30px;
  padding: 16px 18px;
  border: 1px solid rgba(238, 174, 64, 0.34);
  border-radius: 8px;
  background: #fff9ec;
  color: #59410c;
  line-height: 1.5;
}

.scope-note strong {
  color: #1f2937;
}

.work-program {
  margin: 44px 0 48px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.program-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.05);
}

.program-grid article span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-grid article h3 {
  margin: 10px 0 8px;
}

.program-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 48px;
}

.infra-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.infra-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.gantt-block {
  margin-top: 10px;
}

.gantt {
  overflow-x: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.gantt-scale,
.gantt-row {
  display: grid;
  grid-template-columns: 260px repeat(28, minmax(30px, 1fr));
  min-width: 1220px;
}

.gantt-scale {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.gantt-scale span {
  text-align: center;
}

.gantt-scale::before {
  content: "Actividad";
  color: var(--black);
  text-align: left;
}

.gantt-row {
  position: relative;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid var(--line);
}

.gantt-row b {
  position: relative;
  z-index: 2;
  padding-right: 16px;
  color: var(--black);
  font-size: 13px;
}

.gantt-row i {
  grid-column: calc(var(--start) + 1) / span var(--span);
  height: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 8px 18px rgba(76, 175, 223, 0.25);
}

.gantt-row.ai-row i {
  background: linear-gradient(90deg, #4f46e5, #22c55e);
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.2);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.pricing-grid article.featured {
  border-color: rgba(76, 175, 223, 0.58);
  background:
    linear-gradient(180deg, rgba(76, 175, 223, 0.18), transparent 44%),
    var(--panel);
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding-left: 18px;
}

.price {
  margin-top: auto;
  color: var(--accent);
  font-size: 28px;
}

.reports,
.feedback {
  background: #f6f9fc;
}

.client-reports {
  background: #ffffff;
}

.report-example {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(76, 175, 223, 0.08), transparent 42%),
    #ffffff;
  box-shadow: 0 12px 34px rgba(5, 11, 80, 0.06);
}

.report-sheet,
.report-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.report-sheet {
  padding: 26px;
}

.report-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.report-sheet-head small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.report-sheet-head h3 {
  max-width: 520px;
  margin: 8px 0 8px;
  color: var(--black);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.report-sheet-head p {
  margin: 0;
  color: var(--muted);
}

.report-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 126px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--black);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(5, 11, 80, 0.18);
}

.report-score strong {
  font-size: 46px;
  line-height: 1;
}

.report-score span {
  font-size: 18px;
  font-weight: 900;
}

.report-progress {
  display: grid;
  gap: 12px;
  padding: 22px 0;
}

.report-progress div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-progress b {
  color: var(--black);
}

.report-progress span {
  color: var(--muted);
  font-size: 14px;
}

.report-progress i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef6;
}

.report-progress em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.report-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.report-content > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.report-content strong,
.report-content span {
  display: block;
}

.report-content strong {
  color: var(--accent);
  font-size: 28px;
}

.report-content span,
.report-summary li {
  color: var(--muted);
}

.report-summary {
  padding: 26px;
}

.report-summary h4 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 18px;
}

.report-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-grid article,
.questions {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.report-grid h3 {
  color: var(--black);
}

.report-grid ul,
.questions ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 76px);
  background: var(--black);
  color: var(--dim);
  font-size: 13px;
}

.footer strong {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .solution,
  .scope,
  .feedback,
  .builder-section,
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    justify-content: flex-start;
  }

  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .campaign-grid,
  .module-grid,
  .pricing-grid,
  .deliverable-grid,
  .report-grid,
  .app-features,
  .quote-layout,
  .ai-layout,
  .infra-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-example {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
  }

  .system-shell,
  .admin-window,
  .builder-panel {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .admin-window aside {
    display: none;
  }

  .system-kpis,
  .status-strip,
  .detail-grid,
  .company-list div,
  .location-table div,
  .question-review div {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .problem-grid,
  .module-grid,
  .pricing-grid,
  .deliverable-grid,
  .campaign-grid,
  .report-grid,
  .report-example,
  .app-features,
  .quote-layout,
  .ai-layout,
  .comparison-grid,
  .ai-findings,
  .ai-quote,
  .infra-grid,
  .program-grid,
  .dash-kpis,
  .timeline {
    grid-template-columns: 1fr;
  }

  .scope-note {
    grid-template-columns: 1fr;
  }

  .ai-quote-price {
    justify-items: start;
    text-align: left;
  }

  .cost-row {
    grid-template-columns: 1fr;
  }

  .report-content {
    grid-template-columns: 1fr;
  }

  .report-sheet,
  .report-summary {
    padding: 20px;
  }

  .report-sheet-head,
  .report-progress div {
    flex-direction: column;
    align-items: flex-start;
  }

  .report-score {
    min-width: 112px;
    padding: 14px 16px;
  }

  .report-score strong {
    font-size: 38px;
  }

  .cost-row strong {
    text-align: left;
  }

  .app-screen {
    min-height: 540px;
  }

  .dash-header,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
