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

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #e7e7e7;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.background-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  z-index: -1;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: #00ff99;
  top: -150px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: #7c3aed;
  bottom: -200px;
  right: -100px;
}

.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.75);
  border-bottom: 1px solid #1f1f1f;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand h1 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8cffc1;
}

.brand p {
  font-size: 0.7rem;
  color: #777;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

nav a:hover {
  color: #8cffc1;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  color: #8cffc1;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  margin-bottom: 24px;
}

.hero h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 700px;
  margin: auto;
  color: #aaa;
  font-size: 1.1rem;
}

.hero-buttons,
.contact-buttons,
.gallery-link-wrapper {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 28px;
  border-radius: 18px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.primary {
  background: #8cffc1;
  color: #050505;
}

.primary:hover {
  transform: translateY(-3px);
}

.secondary {
  border: 1px solid #333;
  color: #ddd;
}

.secondary:hover {
  border-color: #8cffc1;
  color: #8cffc1;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 120px 24px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
}

.section-text {
  color: #999;
  max-width: 700px;
  margin-bottom: 42px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-text p {
  color: #aaa;
  margin-bottom: 24px;
}

.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card,
.process-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid #222;
  border-radius: 28px;
  padding: 32px;
}

.feature-card h4,
.process-card h4 {
  margin-bottom: 12px;
  color: #8cffc1;
}

.process-card span {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.15;
  margin-bottom: 18px;
}

.lightwidget-widget {
  width: 100%;
  border: 0;
  overflow: hidden;
}

.contact-section {
  text-align: center;
}

footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px 24px;
  text-align: center;
  color: #666;
}

@media (max-width: 900px) {

  .about-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 160px;
  }

  .section-header h3 {
    font-size: 2.2rem;
  }

}
