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

@page {
  size: A4;
  margin: 0;
}

:root {
  --color-dark: #0f1d2b;
  --color-accent: #1a7efb;
  --color-muted: #6f7c8e;
  --color-soft: #f5f7fb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #dfe6f2;
  font-family: 'Lato', sans-serif;
  color: var(--color-dark);
}

.prospect {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  background: #fff;
  padding: 20mm 18mm;
  display: flex;
  gap: 16mm;
  box-shadow: 0 18px 60px rgba(15, 29, 43, 0.08);
}

.collage {
  width: 68mm;
  display: flex;
  flex-direction: column;
  gap: 6mm;
}

.collage img {
  width: 100%;
  height: auto;
  border-radius: 10mm;
  object-fit: cover;
}

.collage-logo {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  object-fit: contain;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12mm;
  padding-top: 18mm;
  align-items: flex-start;
}

.social-strip,
.footer {
  width: 100%;
  text-align: right;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-meta {
  text-align: right;
  font-size: 12px;
  color: var(--color-muted);
}


.header-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-brand span:first-child {
  font-size: 26px;
}

.header-brand span:nth-child(2) {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.header-brand span:last-child {
  font-size: 13px;
  letter-spacing: 0.3em;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 6px;
}

.section-text {
  margin: 0;
  line-height: 1.6;
  color: var(--color-muted);
}

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

.feature-card {
  background: var(--color-soft);
  border-radius: 12px;
  padding: 14px 16px;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

.coverage {
  background: #fff;
  border: 1px solid rgba(15, 29, 43, 0.08);
  border-radius: 12px;
  padding: 16px 0;
}

.coverage h3 {
  margin: 0 16px 6px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.social-strip {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

.social-strip strong {
  color: var(--color-dark);
}

.coverage table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.coverage th,
.coverage td {
  padding: 6px 16px;
  border-bottom: 1px solid rgba(15, 29, 43, 0.08);
  text-align: left;
}

.footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
}

.footer-contact {
  font-size: 140%;
  line-height: 1.4;
}

.footer strong {
  font-weight: 700;
}

@media print {
  body { background: #fff; }
  .prospect { box-shadow: none; }
}
