
    :root {
      --bg-dark: #0c0c0c;
      --bg-soft: #141414;
      --gold: #c7a45d;
      --text-main: #f2f2f2;
      --text-muted: #b5b5b5;
      --border-soft: rgba(199,164,93,0.2);
    }

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

    body {
      background: var(--bg-dark);
      color: var(--text-main);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    section {
      padding: 120px 8%;
      position: relative;
    }

    .gold {
      color: var(--gold);
    }

    /* ---------- HERO ---------- */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: radial-gradient(circle at top, #1a1a1a, #000);
    }

    .hero-content {
      max-width: 700px;
      animation: fadeUp 1.2s ease forwards;
    }

    .hero h1 {
      font-size: 3.4rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.1rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .cta {
      display: inline-block;
      padding: 14px 36px;
      border: 1px solid var(--gold);
      color: var(--gold);
      text-decoration: none;
      font-size: 0.9rem;
      letter-spacing: 1px;
      transition: all 0.4s ease;
    }

    .cta:hover {
      background: var(--gold);
      color: #000;
    }

    /* ---------- SECTION DIVIDER ---------- */
    .divider {
      height: 1px;
      width: 100%;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 80px 0;
      opacity: 0.4;
    }

    /* ---------- VALUE BLOCKS ---------- */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      margin-top: 60px;
    }

    .card {
      background: var(--bg-soft);
      padding: 40px;
      border: 1px solid var(--border-soft);
      transition: transform 0.6s ease, opacity 0.6s ease;
      opacity: 0;
      transform: translateY(40px);
    }

    .card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .card h3 {
      margin-bottom: 15px;
      font-size: 1.4rem;
    }

    .card p {
      color: var(--text-muted);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* ---------- PROCESS ---------- */
    .process-step {
      margin-bottom: 30px;
      font-size: 1.05rem;
      color: var(--text-muted);
    }

    /* ---------- OBSIDIAN BENEFITS ---------- */

.obsidian-benefits {
  padding: 140px 8%;
  background: radial-gradient(circle at top, #121212, #000);
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- CARD BASE ---------- */

.benefit-card {
  position: relative;
  padding: 48px 42px;
  background: linear-gradient(
    135deg,
    rgba(199,164,93,0.12),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(199,164,93,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- SLIDE ANIMATIONS ---------- */

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ---------- APPLY ANIMATIONS ---------- */

.slide-left {
  animation-name: slideFromLeft;
  animation-delay: 0.2s;
}

.slide-up {
  animation-name: slideFromUp;
  animation-delay: 0.5s;
}

.slide-right {
  animation-name: slideFromRight;
  animation-delay: 0.8s;
}

/* ---------- TEXT ---------- */

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #f5f5f5;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfcfcf;
}

/* ---------- SUBTLE LUXURY HOVER ---------- */

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(199,164,93,0.18),
    transparent
  );
  opacity: 0;
  transition: opacity 0.8s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}


    /* ---------- FOOTER ---------- */
    footer {
      background: #000;
      padding: 60px 8%;
      border-top: 1px solid var(--border-soft);
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    footer a {
      color: var(--gold);
      text-decoration: none;
    }

    /* ---------- ANIMATIONS ---------- */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
 
 
 
 /* Footer Styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    height: 12%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.footer-section {
    margin: 10px 0;
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #A2C3A4;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-icons li {
    display: inline;
    margin: 0 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 12px;
    color: #bbb;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
