/**
 * Landing Page Styles
 * Landing-specific styles - extends core.css, core-colour.css, and light.css
 *
 * Note: This file assumes core CSS files are already loaded
 */

/* ===========================
   Landing Page Overrides
   =========================== */

/* Override core.css body display */
body {
  display: block !important;
  padding-top: 0 !important;
  background: var(--colour-grey-vdark);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 1rem 0;
    min-height: 90vh;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/backgrounds/bg-festival.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(0.3) brightness(0.35);
  opacity: 0.8;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(51, 51, 51, 0.90) 0%,
    rgba(51, 51, 51, 0.75) 40%,
    rgba(222, 161, 4, 0.15) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-text {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: var(--fontweight-bold);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--colour-white) 0%, var(--eda-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: var(--fontweight-light);
  color: var(--eda-orange);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin-bottom: 3rem;
  color: var(--colour-grey-light);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* ===========================
   CTA Buttons
   =========================== */

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--eda-orange);
  color: var(--colour-white) !important;
  font-weight: var(--fontweight-bold);
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  border: none;
  animation: fadeInUp 1s ease-out 0.6s backwards;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(222, 161, 4, 0.5);
  background: var(--colour-orange-darker);
  color: var(--colour-white);
}

a.cta-button,
a.cta-button:visited {
  color: var(--colour-white);
}

/* ===========================
   Section Styling
   =========================== */

section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  color: var(--colour-white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--colour-grey-light);
  margin-bottom: 3rem;
  max-width: 800px;
}

/* ===========================
   Introduction Section
   =========================== */

.intro-section {
  background: var(--bg-dark-background);
  border-top: 1px solid var(--colour-grey-dark);
  border-bottom: 1px solid var(--colour-grey-dark);
}

/* ===========================
   Feature Highlights
   =========================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-dark-background);
  padding: 2rem;
  border: 1px solid var(--colour-grey-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--eda-orange);
  transition: height 0.3s ease;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateX(8px);
  border-color: var(--eda-orange);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--eda-orange);
  flex-shrink: 0;
  line-height: 1;
}

.feature-icon i,
.feature-icon svg {
  width: 1em;
  height: 1em;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--colour-white);
}

.feature-description {
  color: var(--colour-grey-light);
  line-height: 1.7;
}

/* ===========================
   Details Section
   =========================== */

.details-section {
  background: linear-gradient(180deg, var(--colour-grey-vdark) 0%, var(--bg-dark-background) 100%);
}

.detail-block {
  margin-bottom: 4rem;
  padding-left: 2rem;
  border-left: 3px solid var(--eda-orange);
}

.detail-block h3 {
  font-size: 1.75rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--eda-orange);
}

.detail-block p {
  color: var(--colour-grey-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.detail-block ul {
  list-style: none;
  padding-left: 0;
}

.detail-block ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--colour-grey-light);
  position: relative;
}

.detail-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--eda-orange);
  font-weight: bold;
}

/* ===========================
   Modules Section
   =========================== */

.modules-section {
  background: var(--bg-dark-background);
  border-top: 1px solid var(--colour-grey-dark);
}

.module-card {
  background: var(--colour-grey-vdark);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--eda-orange);
  transition: all 0.3s ease;
}

.module-card:hover {
  border-left-color: var(--colour-orange-darker);
  transform: translateX(8px);
}

.module-card h4 {
  font-size: 1.4rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--colour-white);
}

.module-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: var(--fontweight-semibold);
  letter-spacing: 0.02em;
  border-radius: 2px;
  margin-left: 1rem;
}

.status-active {
  background: rgba(222, 161, 4, 0.2);
  color: var(--eda-orange);
  border: 1px solid rgba(222, 161, 4, 0.3);
}

.status-coming {
  background: rgba(108, 117, 125, 0.15);
  color: var(--colour-grey-dark);
  border: 1px solid var(--colour-grey-dark);
}

/* ===========================
   Final CTA Section
   =========================== */

/* ===========================
   CTA Sections (used across all pages)
   =========================== */

.final-cta,
.content-cta {
  background: linear-gradient(135deg, var(--colour-grey-vdark) 0%, var(--bg-dark-background) 100%);
  text-align: center;
  padding: 5rem 0;
  border-top: 1px solid var(--colour-grey-dark);
}

.final-cta h2,
.content-cta h2,
.cta-content h2,
.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 1rem;
}

.final-cta p,
.content-cta p,
.cta-content p,
.cta-subtitle {
  font-size: 1.15rem;
  color: var(--colour-grey-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-secondary {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: var(--eda-orange);
  font-weight: var(--fontweight-bold);
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--eda-orange);
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: var(--eda-orange);
  color: var(--colour-white);
}

/* ===========================
   Related Features Section
   =========================== */

.related-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-dark-background);
  border: 1px solid var(--colour-grey-dark);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.related-card:hover {
  border-color: var(--eda-orange);
  transform: translateX(8px);
}

.related-icon {
  width: 56px;
  height: 56px;
  background: rgba(222, 161, 4, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.related-icon i,
.related-icon svg {
  font-size: 1.5rem;
  color: #DEA104 !important;
}

.related-icon svg path {
  fill: #DEA104 !important;
}

.related-content {
  flex: 1;
}

.related-content h4 {
  font-size: 1.1rem;
  font-weight: var(--fontweight-bold);
  color: var(--colour-white);
  margin-bottom: 0.25rem;
}

.related-content p {
  font-size: 0.9rem;
  color: var(--colour-grey-light);
  margin: 0;
}

.related-arrow {
  color: var(--colour-grey-dark);
  transition: all 0.3s ease;
}

.related-card:hover .related-arrow {
  color: var(--eda-orange);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-features {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .content-cta {
    padding: 4rem 0;
  }
}

/* ===========================
   Scroll Indicator
   =========================== */

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--colour-white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  color: var(--eda-orange);
}

/* Login Pill */
.login-pill {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.login-pill:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--eda-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.login-pill a {
  color: var(--eda-orange);
  text-decoration: none;
  font-weight: var(--fontweight-semibold);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.login-pill a:hover {
  color: var(--colour-orange-darker);
}

@media (max-width: 768px) {
  .login-pill {
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.2rem;
  }

  .login-pill a {
    font-size: 0.9rem;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator::after {
  content: '↓';
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

/* ===========================
   Client Marquee Section
   =========================== */

.client-marquee-section {
  background: var(--bg-dark-background);
  padding: 4rem 0;
  border-top: 1px solid var(--colour-grey-dark);
  border-bottom: 1px solid var(--colour-grey-dark);
  overflow: hidden;
}

.client-marquee-title {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--colour-grey-light);
  margin-bottom: 2rem;
  font-weight: var(--fontweight-semibold);
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .marquee-content {
    animation: scroll 20s linear infinite;
  }
  .client-logo {
    width: 120px;
    height: 80px;
    margin: 0 1rem;
  }
  .client-logo i {
    font-size: 2.5rem !important;
  }
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo i {
  font-size: 3.5rem;
  color: var(--eda-orange);
}

.client-logo-text {
  font-size: 1.5rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.05em;
  color: var(--colour-grey-light);
}

/* Map Display Section */

.map-display-section {
  background: var(--colour-grey-vdark);
  padding: 6rem 0;
}

.map-display-section .section-header {
  color: var(--colour-white);
}

.map-display-section .section-subtitle {
  color: var(--colour-grey-light);
}

.map-features {
  padding-right: 2rem;
}

.map-features h4 {
  font-size: 1.4rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0.02em;
  color: var(--eda-orange);
  margin-bottom: 1.5rem;
}

.map-features ul {
  list-style: none;
  padding: 0;
}

.map-features ul li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--colour-grey-light);
  position: relative;
  border-left: 2px solid var(--colour-grey-dark);
  transition: all 0.3s ease;
  line-height: 1.5;
}

.map-features ul li:hover {
  border-left-color: var(--eda-orange);
  color: var(--colour-white);
}

.map-features ul li i,
.map-features ul li svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #DEA104 !important;
  font-size: 1rem;
}

/* Target SVG path for FontAwesome Kit */
.map-features ul li svg path {
  fill: #DEA104 !important;
}

/* Backup with higher specificity */
.map-display-section .map-features ul li i,
.map-display-section .map-features ul li svg {
  color: #DEA104 !important;
}

.map-display-section .map-features ul li svg path {
  fill: #DEA104 !important;
}

/* Target FontAwesome specifically */
.map-features ul li i.fa-solid,
.map-features ul li svg.svg-inline--fa {
  color: #DEA104 !important;
}

.map-features ul li svg.svg-inline--fa path {
  fill: #DEA104 !important;
}

.map-features ul li i[class*="fa-"],
.map-features ul li svg[data-icon] {
  color: #DEA104 !important;
}

.map-features ul li svg[data-icon] path {
  fill: #DEA104 !important;
}

.map-container {
  position: relative;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--colour-grey-dark);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

#map {
  height: 100%;
  width: 100%;
}

.map-caption {
  color: var(--colour-white);
  font-size: 0.9rem;
  text-align: right;
  padding-right: 6px;
}

/* Footer */

.footer {
  background: var(--bg-dark-background);
  border-top: 2px solid var(--eda-orange);
  padding: 4rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--colour-grey-dark);
  padding-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: var(--fontweight-bold);
  color: var(--eda-orange);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-copyright a,
.footer-section ul li a {
  color: var(--colour-grey-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-copyright a:hover,
.footer-section ul li a:hover {
  color: var(--eda-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--colour-grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--eda-orange);
}

.footer-copyright {
  color: var(--colour-grey-light);
  font-size: 0.9rem;
}

.footer-credit {
  color: var(--colour-grey-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.footer-credit a {
  color: var(--colour-grey-light);
  text-decoration: underline;
}

.footer-credit a:hover {
  color: var(--eda-orange);
}

/* Map formating */
.leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.leaflet-popup-tip-container {
  left: 0;
  margin-left: 12px;
}

.leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.6);
}


/* Map formating */
.leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.leaflet-popup-tip-container {
  left: 0;
  margin-left: 12px;
}

.strike-popup .leaflet-popup-tip-container {
  left: 50%;
  margin-left: -10px;
}

.leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.6);
}


/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .detail-block {
    padding-left: 1rem;
    border-left-width: 2px;
  }

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-card:hover {
    transform: none;
  }

  .feature-icon {
    width: auto;
    margin-bottom: 1rem;
  }

  .module-card:hover {
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* ===========================
   Navigation Menu Override
   =========================== */

/* Prevent layout shift during FontAwesome Kit SVG injection */
.nav-trigger i,
.nav-menu a i {
  vertical-align: middle;
}

.page-nav {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
}

.nav-trigger {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 90px;
}

.nav-trigger:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--eda-orange);
}

.nav-trigger span {
  color: var(--colour-grey-light);
  font-size: 0.9rem;
  font-weight: var(--fontweight-medium);
}

.nav-trigger i {
  color: var(--eda-orange);
  font-size: 0.9rem;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-trigger svg,
.nav-trigger .svg-inline--fa {
  width: 14px !important;
  height: 14px !important;
  display: inline-block;
  color: var(--eda-orange);
}

.nav-trigger svg path {
  fill: var(--eda-orange);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.page-nav:hover .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  color: var(--colour-grey-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: var(--fontweight-medium);
  transition: all 0.2s ease;
}

.nav-menu a:hover {
  background: rgba(222, 161, 4, 0.1);
  color: var(--colour-white);
}

.nav-menu a i {
  color: var(--eda-orange);
  font-size: 0.9rem;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}

.nav-menu a svg,
.nav-menu a .svg-inline--fa {
  width: 16px !important;
  height: 16px !important;
  display: inline-block;
  color: var(--eda-orange);
}

.nav-menu a svg path {
  fill: var(--eda-orange);
}

.nav-menu a.active {
  color: var(--eda-orange);
  background: rgba(222, 161, 4, 0.05);
}

@media (max-width: 768px) {
  .page-nav {
    top: 1rem;
    left: 1rem;
  }

  .nav-trigger {
    padding: 0.5rem 1rem;
  }

  .nav-trigger span {
    font-size: 0.85rem;
  }

  .nav-menu {
    min-width: 180px;
  }

  .nav-menu a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

.btn-feature-link {
  cursor: pointer;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-feature-link:hover {
  background: #fff;
  border-color: #DEA104;
  color: #1a1a1a;
  text-decoration: none;
}