/* === ГЛОБАЛЬНІ НАЛАШТУВАННЯ === */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Manrope:wght@300;400;500;600;700&display=swap");

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

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #0f0f1a;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.logo__text {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 1px;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  background: linear-gradient(90deg, #f0e6d2, #d4af37, #b8972e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover .logo__text {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.logo--footer .logo__text {
  font-size: 28px;
}

.nav__list {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav__link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: #d4af37;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav__link:hover::after {
  width: 100%;
}
.nav__link:hover {
  color: #d4af37;
}
.nav__link--accent {
  color: #d4af37;
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  background: #0a0a14;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 80px 0 40px;
  margin-top: 150px;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-legal a,
.footer-nav a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  line-height: 2.2;
  transition: color 0.3s;
}

.footer-legal a:hover,
.footer-nav a:hover {
  color: #d4af37;
}

.footer-contacts__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-contacts__item a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contacts__item a:hover {
  color: #d4af37;
}

.footer__copy {
  text-align: center;
  color: #555;
  font-size: 14px;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav__list {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
    gap: 20px;
  }
  .nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contacts__item {
    justify-content: center;
  }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__content {
  max-width: 660px;
}

.hero__title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: #d4af37;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1.2s ease forwards;
}

.hero__title-line--accent {
  background: linear-gradient(90deg, #d4af37, #f0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease 0.8s forwards;
  color: #bbb;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease 1s forwards;
}

.btn {
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  font-size: 18px;
  backdrop-filter: blur(10px);
}

.btn--primary {
  background: linear-gradient(135deg, #d4af37, #b8972e);
  color: #0f0f1a;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn--secondary {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn--secondary:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.hero__note {
  font-size: 14px;
  color: #888;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

/* Canvas */
.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 20px #d4af37;
  opacity: 0;
  animation: floatDot 15s infinite linear;
}

.dot:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.dot:nth-child(2) {
  top: 35%;
  left: 70%;
  animation-delay: 2s;
}
.dot:nth-child(3) {
  top: 60%;
  left: 30%;
  animation-delay: 4s;
}
.dot:nth-child(4) {
  top: 80%;
  left: 85%;
  animation-delay: 6s;
}
.dot:nth-child(5) {
  top: 45%;
  left: 10%;
  animation-delay: 8s;
}
.dot:nth-child(6) {
  top: 15%;
  left: 60%;
  animation-delay: 10s;
}
.dot:nth-child(7) {
  top: 70%;
  left: 50%;
  animation-delay: 12s;
}
.dot:nth-child(8) {
  top: 25%;
  left: 90%;
  animation-delay: 14s;
}
.dot:nth-child(9) {
  top: 55%;
  left: 75%;
  animation-delay: 1s;
}
.dot:nth-child(10) {
  top: 90%;
  left: 20%;
  animation-delay: 7s;
}

@keyframes floatDot {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.8;
    transform: translateY(-30px) scale(1);
  }
  90% {
    opacity: 0.8;
    transform: translateY(-30px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 160px 0 80px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

/* === ABOUT === */
.about {
  padding: 140px 0;
  position: relative;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 560px;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image:hover .about__img {
  transform: scale(1.05);
}

.about__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    transparent 50%
  );
  pointer-events: none;
}

.about__content {
  max-width: 600px;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 32px;
}

.section-title__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.section-title__line--gold {
  background: linear-gradient(90deg, #d4af37, #f0e6d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1s ease 0.3s forwards;
}

.about__text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 48px;
  color: #ccc;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.about__features {
  display: grid(grid);
  gap: 28px;
  margin-bottom: 48px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.feature:nth-child(1) {
  animation-delay: 0.9s;
}
.feature:nth-child(2) {
  animation-delay: 1.1s;
}
.feature:nth-child(3) {
  animation-delay: 1.3s;
}

.feature__icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  color: #d4af37;
  flex-shrink: 0;
}

.feature__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #d4af37;
}

.feature__desc {
  color: #aaa;
  font-size: 15px;
}

.about__cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.about__link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.about__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background: #d4af37;
  transition: width 0.4s ease;
}

.about__link:hover::after {
  width: 100%;
}

/* Адаптив */
@media (max-width: 992px) {
  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__image {
    height: 420px;
    margin: 0 auto;
    max-width: 500px;
  }
  .about__cta {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 100px 0;
  }
  .feature {
    text-align: left;
  }
}

/* === ADVANTAGES === */
.advantages {
  padding: 160px 0;
  background: linear-gradient(180deg, #0f0f1a 0%, #0a0a14 100%);
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
}

.section-subtitle {
  font-size: 20px;
  color: #aaa;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.advantage-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(60px);
}

.advantage-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  background: rgba(212, 175, 55, 0.1);
}

.advantage-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 36px;
}

.advantage-card__title {
  font-family: "Cinzel", serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: #d4af37;
}

.advantage-card__text {
  color: #bbb;
  line-height: 1.6;
}

.advantages__cta {
  text-align: center;
}

.btn--large {
  padding: 20px 48px;
  font-size: 20px;
}

/* Анімація появи карток */
.advantage-card:nth-child(1) {
  animation: fadeUpCard 0.8s ease forwards;
  animation-delay: calc(0.2s + var(--delay, 0) * 1s);
}
.advantage-card:nth-child(2) {
  animation: fadeUpCard 0.8s ease forwards;
  animation-delay: calc(0.3s + var(--delay, 0) * 1s);
}
.advantage-card:nth-child(3) {
  animation: fadeUpCard 0.8s ease forwards;
  animation-delay: calc(0.4s + var(--delay, 0) * 1s);
}
.advantage-card:nth-child(4) {
  animation: fadeUpCard 0.8s ease forwards;
  animation-delay: calc(0.5s + var(--delay, 0) * 1s);
}
.advantage-card:nth-child(5) {
  animation: fadeUpCard 0.8s ease forwards;
  animation-delay: calc(0.6s + var(--delay, 0) * 1s);
}
.advantage-card:nth-child(6) {
  animation: fadeUpCard 0.8s ease forwards;
  animation-delay: calc(0.7s + var(--delay, 0) * 1s);
}

@keyframes fadeUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив */
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
  .advantages {
    padding: 120px 0;
  }
}

/* === TECHNOLOGY === */
.technology {
  padding: 160px 0;
  background: #0a0a14;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.tabs__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #ccc;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  min-width: 280px;
}

.tabs__btn:hover,
.tabs__btn--active {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.tabs__btn i {
  width: 32px;
  height: 32px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.tab-panel--active {
  display: block;
}

.tab-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tab-panel__text h3 {
  font-family: "Cinzel", serif;
  font-size: 36px;
  margin-bottom: 24px;
  color: #d4af37;
}

.tab-panel__text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #ccc;
}

.tab-list {
  list-style: none;
  margin-bottom: 40px;
}

.tab-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #bbb;
}

.tab-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
  font-size: 20px;
}

.tab-panel__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}

.tab-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tab-panel__visual:hover img {
  transform: scale(1.06);
}

.tab-panel__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent 60%);
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив */
@media (max-width: 992px) {
  .tab-panel__grid {
    grid-template-columns: 1fr;
  }
  .tab-panel__visual {
    height: 400px;
  }
  .tabs__btn {
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .tabs__nav {
    flex-direction: column;
    align-items: center;
  }
  .technology {
    padding: 120px 0;
  }
}

/* === CASES === */
.cases {
  padding: 160px 0;
  background: linear-gradient(180deg, #0a0a14 0%, #0f0f1a 100%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 120px;
  text-align: center;
}

.stat__number {
  font-family: "Cinzel", serif;
  font-size: 64px;
  font-weight: 900;
  color: #d4af37;
  margin-bottom: 12px;
}

.stat__label {
  font-size: 18px;
  color: #aaa;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.testimonial-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.testimonial-card__text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #ddd;
  position: relative;
}

.testimonial-card__text::before {
  content: "“";
  font-family: "Cinzel", serif;
  font-size: 120px;
  color: rgba(212, 175, 55, 0.2);
  position: absolute;
  top: -40px;
  left: -10px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d4af37;
}

.testimonial-card__name {
  font-weight: 600;
  color: #d4af37;
}

.testimonial-card__location {
  font-size: 14px;
  color: #999;
}

.cases__cta {
  text-align: center;
}

/* Адаптив */
@media (max-width: 1024px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cases {
    padding: 120px 0;
  }
  .stat__number {
    font-size: 48px;
  }
}

/* === CONTACT === */
.contact {
  padding: 160px 0;
  background: linear-gradient(135deg, #0f0f1a 0%, #0a0a14 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact__content {
  max-width: 560px;
}

.contact__text {
  font-size: 20px;
  line-height: 1.7;
  margin: 32px 0 48px;
  color: #ccc;
}

.contact__info p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #ddd;
}

.contact__info i {
  color: #d4af37;
  width: 28px;
}

.contact__form-wrapper {
  position: relative;
}

.contact-form {
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 48px;
  transition: all 0.4s ease;
}

.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.captcha label {
  display: block;
  margin-bottom: 8px;
  color: #ddd;
  font-size: 18px;
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #aaa;
}

.success-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0f0f1a;
  border: 2px solid #d4af37;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 420px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}

.success-message.active {
  opacity: 1;
  visibility: visible;
}

.success-message i {
  width: 80px;
  height: 80px;
  color: #d4af37;
  margin-bottom: 20px;
}

.success-message h3 {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 16px;
}

/* Адаптив */
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .contact-form {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 120px 0;
  }
  .contact-form {
    padding: 32px;
  }
}

/* === COOKIE POPUP === */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a14;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px 40px;
  max-width: 480px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cookie-popup.active {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.cookie-popup p {
  margin: 0 0 20px;
  font-size: 15px;
}

.cookie-popup a {
  color: #d4af37;
  text-decoration: underline;
}

/* === СТИЛІ ДЛЯ ПОЛІТИК (privacy.html тощо) === */
.pages {
  padding: 140px 0 100px;
  min-height: 100vh;
}

.pages .container {
  max-width: 900px;
}

.pages h1 {
  font-family: "Cinzel", serif;
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 40px;
  text-align: center;
}

.pages h2 {
  font-family: "Cinzel", serif;
  font-size: 32px;
  color: #d4af37;
  margin: 48px 0 24px;
}

.pages p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #ddd;
}

.pages ul {
  margin: 20px 0;
  padding-left: 30px;
}

.pages li {
  margin-bottom: 12px;
  position: relative;
}

.pages li::marker {
  color: #d4af37;
}

.pages strong {
  color: #d4af37;
}

.pages a {
  color: #d4af37;
  text-decoration: underline;
}
