/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f2f5; /* light neutral background */

  /* Light glowing grid lines */
  background-image:
    linear-gradient(to right, rgba(253, 86, 34, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(253, 86, 34, 0.1) 1px, transparent 1px);
  background-size: 50px 50px; /* grid spacing */
  background-attachment: fixed;
  color: #333;
}

/* Optional: subtle animated glow movement */
@keyframes glowGridLight {
  0% { background-position: 0 0, 0 0; }
  50% { background-position: 25px 25px, 25px 25px; }
  100% { background-position: 0 0, 0 0; }
}

body {
  animation: glowGridLight 15s linear infinite;
}

/* Optional: soft blur to make it look glowing */
body::before {
  content: '';
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(253, 86, 34, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(253, 86, 34, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  filter: blur(2px);
  z-index: -1;
  animation: glowGridLight 20s linear infinite;
}

/* Logo Container */
.logo-container {
  text-align: center;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

/* Logo Image */
.logo {
  max-width: 180px;
  width: 40%;
  height: auto;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .logo {
    max-width: 140px;
    width: 50%;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: #FD5622; /* updated branding color */
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.header h1 span {
  color: #FD5622; /* updated branding color */
}

.header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Card Link */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Hover effect with branding glow */
.card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #FD5622; /* updated branding color */
  box-shadow: 0 0 15px rgba(253, 86, 34, 0.25); /* subtle glow */
}

/* Card Icon */
.card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  color: #FD5622; /* updated branding color */
}

/* Card Title */
.card h3 {
  font-size: 1.35rem;
  color: #111;
  margin-bottom: 0.8rem;
}

/* Card Text */
.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
}

/* Highlighted Card */
.card.highlight {
  border: 2px solid #FD5622;
  background: #ffe6e0; /* light tint of branding */
}

/* Premium Card */
.card.premium {
  border: 2px solid gold;
  background: linear-gradient(145deg, #fff8e1, #ffe680);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.card.premium:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.35);
}

/* Utility Card */
.card.utility {
  background-color: #fff5f0;
  border: 1px solid #ffd4c2;
}