:root {
  --primary: #6b1098;    /* Your new deep purple */
  --secondary: #9d4edd;  /* A lighter purple for hover states/accents */
  --accent: #00cec9;     /* Keeps that "Crystal" pop */
  --bg: #ffffff;
  --text: #1a1a1a;       /* Slightly darker text for the new palette */
  --text-light: #5a5a5a;
  --card-bg: #fdfbff;    /* Added a tiny hint of purple to the card background */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

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

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center; 
  background: linear-gradient(135deg, #f8f0ff 0%, #ffffff 100%);
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--primary); }
.hero p { font-size: 1.25rem; color: var(--text-light); max-width: 700px; margin: 0 auto 2rem; }

/* Grid for Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-5px); }

/* Micro-lines */
.micro-line {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
}

/* CTA Button */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.main-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* Removes underline from the link */
  gap: 12px;             /* Space between logo and text */
}

.header-logo {
  height: 56px;          /* Adjust this to fit your logo's proportions */
  width: auto;
  display: block;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.5px;
  padding-top: 5px;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid #eee;
  margin-top: 4rem;
  background-color: #fcfcfc;
}

.footer-flex {
  display: flex;
  justify-content: space-between; /* Pushes brand to left, links to right */
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-size: 0.95rem;
}

.footer-logo-text {
  font-weight: 700;
  color: #000;
}

.footer-tagline {
  color: var(--text-light);
}

.footer-nav {
  display: flex;
  gap: 1.5rem; /* Space between links */
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.85rem; /* Smaller font for compactness */
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #eee;
  color: #999;
  font-size: 0.75rem;
}

/* Mobile Tweak: Stack on small screens */
@media (max-width: 600px) {
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
}