/* SiteDeApost shared stylesheet. */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2F45;
  --slate: #3D5A73;
  --teal: #00C9A7;
  --teal-dim: #00A98A;
  --cream: #F5F2EC;
  --gray-lt: #E8EDF2;
  --gray-md: #B0BEC8;
  --white: #FFFFFF;
  --warn: #E8A020;
  --radius: 8px;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  font-size: 16px;
}

.compliance-banner {
  background: var(--navy);
  color: var(--gray-md);
  font-size: 11px;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.03em;
}

.compliance-banner strong {
  color: var(--teal);
}

header {
  background: var(--white);
  border-bottom: 2px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(13, 27, 42, 0.08);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.logo-mark span {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -1px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

.logo-text em {
  color: var(--teal);
  font-style: normal;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition);
}

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

.header-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(0, 201, 167, 0.12);
  border: 1px solid rgba(0, 201, 167, 0.25);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 2px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 18px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-dim);
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-lead {
  color: var(--slate);
  font-size: 16px;
  max-width: 760px;
}

.page-hero {
  padding: 44px 0 26px;
}

.page-hero-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(13, 27, 42, 0.10);
}

.breadcrumbs {
  font-size: 12px;
  color: var(--gray-md);
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: var(--slate);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--teal);
}

.content-section {
  padding: 18px 0 46px;
}

.content-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(13, 27, 42, 0.08);
}

.content-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 18px 0 8px;
}

.content-card p {
  color: var(--slate);
  margin: 10px 0;
}

.content-card ul {
  margin: 10px 0 10px 18px;
  color: var(--slate);
}

.content-card li {
  margin: 6px 0;
}

.callout {
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.22);
  color: var(--navy-mid);
}

.callout strong {
  color: var(--navy);
}

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

.meta-item {
  border: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(245, 242, 236, 0.6);
  border-radius: 12px;
  padding: 12px;
}

.meta-item .k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-md);
}

.meta-item .v {
  margin-top: 6px;
  color: var(--navy);
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 16px;
  color: var(--slate);
  font-size: 14px;
}

.faq-item.open .faq-a {
  max-height: 280px;
  padding: 0 16px 14px;
}

footer {
  background: var(--navy);
  color: var(--gray-md);
  padding: 42px 0 30px;
  margin-top: 40px;
}

footer .logo-text {
  color: var(--white);
}

footer .logo-text em {
  color: var(--teal);
}

footer .logo-mark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(176, 190, 200, 0.18);
}

.footer-brand p {
  margin-top: 10px;
  color: rgba(176, 190, 200, 0.9);
  font-size: 13px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(176, 190, 200, 0.92);
  font-size: 13px;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-legal {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.footer-age {
  font-size: 12px;
  color: #FFD8D8;
}

.footer-responsible {
  font-size: 13px;
  color: rgba(176, 190, 200, 0.95);
  line-height: 1.6;
}

.footer-legal-entity,
.footer-copy {
  font-size: 12px;
  color: rgba(176, 190, 200, 0.9);
  line-height: 1.6;
}

@media (max-width: 980px) {
  nav {
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(13, 27, 42, 0.08);
  }

  nav.open {
    display: flex;
  }

  .hamburger {
    display: inline-block;
  }

  .header-badge {
    display: none;
  }

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

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

