/* -------------------------------------------------------- */
/* 1. Fonts Import */
/* -------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans&display=swap');

/* -------------------------------------------------------- */
/* 2. Base Styling */
/* -------------------------------------------------------- */

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #080808;
  background-color: #FAFAFA; /* Very light grey to let the vibrant colors pop */
  margin: 0;
  line-height: 1.6;
}

h1, h2, h3, .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase; /* Matches the bold logo style */
  letter-spacing: -0.02em;
  color: #080808;
}

.section-padding {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 2.5rem 0;
  }
}

/* -------------------------------------------------------- */
/* 3. High-Energy Components */
/* -------------------------------------------------------- */

.header-accent {
  /* Uses the teal from the 'N' for a technical look */
  border-left: 5px solid #2DA7C4;
  padding-left: 15px;
}

.header-accent h2 {
  color: #080808;
  margin: 0;
}

.btn-consult {
  /* Captures the vibrancy of the logo's brackets */
  background: linear-gradient(135deg, #F16522 0%, #E32026 100%);
  color: #FFFFFF;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(227, 32, 38, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 32, 38, 0.5);
}

.feature-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.3s ease;
}

/* Circuit-style hover effect */
.feature-card:hover {
  border-color: #2DA7C4;
  box-shadow: 0 10px 30px rgba(45, 167, 196, 0.1);
}

.feature-card:hover .icon {
  color: #F16522;
}

.feature-card .icon {
  color: #2DA7C4;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.article-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.footer {
  background: #080808;
  color: #FFFFFF;
  padding: 40px 0;
  /* A thin vibrant "energy line" at the top of the footer */
  border-top: 4px solid #2DA7C4;
}
