:root {
  --navy: #071426;
  --navy-soft: #10233d;
  --gold: #d4af37;
  --gold-deep: #a67c00;
  --white: #ffffff;
  --ivory: #fffaf0;
  --ink: #1d2733;
  --muted: #687586;
  --line: rgba(212, 175, 55, 0.4);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 34rem),
    linear-gradient(145deg, var(--navy), #020814 70%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

button {
  font: inherit;
}

.brochure {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.section-frame {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cover {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(32px, 7vw, 84px);
  color: var(--white);
  background:
    linear-gradient(rgba(7, 20, 38, 0.78), rgba(7, 20, 38, 0.92)),
    url("https://images.unsplash.com/photo-1606293926249-ed4a5d326799?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.brand-kicker,
.section-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

p {
  margin: 0;
  color: inherit;
  line-height: 1.7;
}

.cover-subtitle {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.cover-actions,
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button,
.outline-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.primary-button {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), #f3d77b);
  color: #111827;
}

.outline-button {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0;
}

.card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
}

.span-2 {
  grid-column: span 2;
}

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

.overview-list div {
  padding: 16px;
  border: 1px solid rgba(166, 124, 0, 0.2);
  background: var(--ivory);
}

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

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

.clean-list,
.check-list,
.dash-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li::before {
  content: "\2713 ";
  color: var(--gold-deep);
  font-weight: 800;
}

.dash-list li::before,
.clean-list li::before {
  content: "- ";
  color: var(--gold-deep);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(166, 124, 0, 0.2);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(166, 124, 0, 0.16);
}

th {
  background: var(--navy-soft);
  color: var(--gold);
}

td {
  color: var(--muted);
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4),
.pricing-table td:nth-child(5) {
  color: var(--ink);
  font-weight: 700;
}

.price-note {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 18px 18px 18px 24px;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
}

.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.contact-cta {
  justify-content: space-between;
  padding: clamp(26px, 5vw, 46px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-soft), #06101f);
}

.contact-cta div {
  max-width: 680px;
}

.contact-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.9);
  border-radius: 999px;
  padding: 0 24px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.98), rgba(244, 213, 120, 0.96) 48%, #128c4a 49%, #075e34);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34), 0 0 0 4px rgba(212, 175, 55, 0.14);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.sticky-whatsapp:hover {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .brochure {
    width: min(100% - 22px, 1120px);
    padding: 18px 0 88px;
  }

  .cover {
    min-height: 470px;
    padding: 28px 22px;
  }

  .content-grid,
  .overview-list {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }

  .primary-button,
  .outline-button {
    width: 100%;
  }

  .contact-cta {
    align-items: stretch;
  }

  .sticky-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    min-height: 54px;
  }
}

/* Related Content Section */
.related-content {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.04));
  padding: 4rem 2rem !important;
  margin-top: 3rem;
  border-top: 2px solid var(--gold) !important;
}

.related-content > div {
  margin-bottom: 2rem;
}

.related-content .brand-kicker {
  color: var(--gold);
}

.related-content h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin: 0.5rem 0 0.8rem;
}

.related-content p {
  color: var(--muted);
  margin: 0;
}

.related-links {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-link:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  transform: translateX(4px);
}

.link-label {
  flex-grow: 1;
}

.link-arrow {
  margin-left: 1rem;
  font-size: 1.2rem;
}

@media print {
  @page {
    margin: 14mm;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html,
  body {
    background: #ffffff !important;
    color: #111827;
  }

  body {
    min-height: auto;
    font-size: 11pt;
  }

  a {
    text-decoration: none;
  }

  .brochure {
    width: 100%;
    padding: 0;
  }

  .cover-actions,
  .contact-cta .primary-button,
  .contact-cta .print-button,
  .sticky-whatsapp {
    display: none !important;
  }

  .section-frame,
  .card {
    border-color: #d4af37;
  }

  .cover {
    min-height: auto;
    padding: 22mm 12mm;
    color: #ffffff !important;
    background:
      linear-gradient(rgba(7, 20, 38, 0.9), rgba(7, 20, 38, 0.95)),
      url("https://images.unsplash.com/photo-1606293926249-ed4a5d326799?auto=format&fit=crop&w=1600&q=80") center/cover !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .cover-subtitle {
    color: #ffffff !important;
  }

  h1,
  h2,
  .brand-kicker,
  .section-label {
    color: #a67c00 !important;
  }

  .content-grid {
    display: block;
    padding: 12mm 0 0;
  }

  .card {
    display: block;
    margin-bottom: 8mm;
    padding: 7mm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .overview-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5mm;
  }

  .table-wrap {
    overflow: visible;
  }

  table {
    min-width: 0;
    width: 100%;
    font-size: 9.5pt;
    page-break-inside: avoid;
  }

  th {
    background: #071426 !important;
    color: #d4af37 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  th,
  td {
    padding: 8px;
    border: 1px solid rgba(166, 124, 0, 0.42);
  }

  .timeline-item,
  .overview-list div,
  .price-note {
    background: #fffaf0 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .contact-cta {
    display: block;
    padding: 8mm;
    color: #111827;
    background: #ffffff !important;
    border-top: 3px solid #d4af37;
  }

  .contact-cta p {
    color: #111827;
  }
}
